diff options
author | Achilleas Pipinellis | 2021-06-27 22:24:03 +0200 |
---|---|---|
committer | Achilleas Pipinellis | 2021-06-27 22:24:03 +0200 |
commit | bd1c406bfeac8ef82733edbbb3536fe9de474088 (patch) | |
tree | 31aa5b6dc7f6a518c0524889423d3177e9a6a330 | |
parent | 4869c8ad4d0bdac43f9c7f149263f0a6c96ccc90 (diff) | |
download | aur-bd1c406bfeac8ef82733edbbb3536fe9de474088.tar.gz |
Update to 2.0.1
-rw-r--r-- | .SRCINFO | 14 | ||||
-rw-r--r-- | .gitignore | 7 | ||||
-rw-r--r-- | PKGBUILD | 18 |
3 files changed, 18 insertions, 21 deletions
@@ -1,16 +1,12 @@ pkgbase = python2-ghp-import pkgdesc = Copy your docs directly to the gh-pages branch. - pkgver = 0.4.1 + pkgver = 2.0.1 pkgrel = 1 url = http://github.com/davisp/ghp-import arch = any - license = custom - makedepends = python2-distribute - depends = python2 - conflicts = ghp-import - replaces = ghp-import - source = http://pypi.python.org/packages/source/g/ghp-import/ghp-import-0.4.1.tar.gz - md5sums = 99e018372990c03ab355aa62c34965c5 + license = APACHE + makedepends = python2-setuptools + source = https://pypi.python.org/packages/source/g/ghp-import/ghp-import-2.0.1.tar.gz + md5sums = 7a1ad8d268c39c2ade28124651d81821 pkgname = python2-ghp-import - diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..4e57a2f24a2e --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +pkg/ +src/ +*.gz +*.xz +*.tgz +*.zst +*.sig @@ -1,26 +1,20 @@ -# Maintainer: Axilleas Pipinellis <axilleas@archlinux.info> +# Maintainer: Achilleas Pipinellis <axilleas archlinux gr> # Contributor: Julien Nicoulaud <julien.nicoulaud@gmail.com> pkgname=python2-ghp-import _pkgname=ghp-import -pkgver=0.4.1 +pkgver=2.0.1 pkgrel=1 pkgdesc="Copy your docs directly to the gh-pages branch." arch=(any) url="http://github.com/davisp/ghp-import" -license=(custom) -depends=("python2") -replaces=("ghp-import") -conflicts=("ghp-import") -makedepends=("python2-distribute") -source=("http://pypi.python.org/packages/source/g/${_pkgname}/${_pkgname}-${pkgver}.tar.gz") +license=(APACHE) +makedepends=("python2-setuptools") +source=("https://pypi.python.org/packages/source/g/${_pkgname}/${_pkgname}-${pkgver}.tar.gz") package() { cd "${srcdir}/${_pkgname}-${pkgver}" python2 setup.py install --root="$pkgdir/" --optimize=1 - - install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } -md5sums=('99e018372990c03ab355aa62c34965c5') +md5sums=('7a1ad8d268c39c2ade28124651d81821') |