diff options
author | David Demelier <markand@malikania.fr> | 2021-07-09 12:31:05 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2021-07-10 05:58:06 -0300 |
commit | 94ae73b4ff60c563ce0550134c82470094b84d73 (patch) | |
tree | 34dea4e2861e8bbafa96402f93dafc4b7c21efd0 | |
parent | aad1358008961d8b6abec35816c597ab6021dd98 (diff) | |
download | aports-94ae73b4ff60c563ce0550134c82470094b84d73.tar.gz aports-94ae73b4ff60c563ce0550134c82470094b84d73.tar.bz2 aports-94ae73b4ff60c563ce0550134c82470094b84d73.tar.xz |
testing/py3-ghp-import: new aport
https://github.com/c-w/ghp-import
copy your docs directly to the gh-pages branch
-rw-r--r-- | testing/py3-ghp-import/APKBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/py3-ghp-import/APKBUILD b/testing/py3-ghp-import/APKBUILD new file mode 100644 index 0000000000..a2352a38f9 --- /dev/null +++ b/testing/py3-ghp-import/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: David Demelier <markand@malikania.fr> +# Maintainer: David Demelier <markand@malikania.fr> +pkgname=py3-ghp-import +pkgver=2.0.1 +pkgrel=0 +pkgdesc="copy your docs directly to the gh-pages branch" +url="https://github.com/c-w/ghp-import" +arch="noarch" +license="Apache-2.0" +depends="python3 py3-dateutil" +makedepends="py3-setuptools" +source="https://files.pythonhosted.org/packages/source/g/ghp-import/ghp-import-$pkgver.tar.gz" +builddir="$srcdir/ghp-import-$pkgver" +options="!check" # No tests. + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums=" +8e53b1a516a8d9780159d57b3973ebe02bbc4f60788470ec823c99608c2b026f5c43a12796506adf039420f06964a11d9e7e318cf9ea10df167faddd8b6f9707 ghp-import-2.0.1.tar.gz +" |