adopted python-setuptools_git

This commit is contained in:
Yaron de Leeuw 2013-10-20 11:22:30 +03:00
commit cd8be25eab
3 changed files with 37 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = python-setuptools_git
pkgdesc = Setuptools revision control system plugin for Git
pkgver = 1.0
pkgrel = 1
url = http://pypi.python.org/pypi/setuptools-git
arch = any
license = BSD
depends = python
depends = python-setuptools
depends = git
source = http://pypi.python.org/packages/source/s/setuptools-git/setuptools-git-1.0.tar.gz
md5sums = de63b541a10c2b83caa478c687458b16
pkgname = python-setuptools_git

0
.gitignore vendored Normal file
View file

22
PKGBUILD Normal file
View file

@ -0,0 +1,22 @@
# Maintained at : https://github.com/jarondl/aur-pkgbuilds-jarondl
# Maintainer: Yaron de Leeuw <jdlmail at gmail >
# Contributor: Bruno Carlin <self at aerdhyl dot eu>
pkgname=python-setuptools_git
pkgver=1.0
pkgrel=1
pkgdesc="Setuptools revision control system plugin for Git"
arch=(any)
url="http://pypi.python.org/pypi/setuptools-git"
license=('BSD')
depends=('python' 'python-setuptools' 'git')
source=("http://pypi.python.org/packages/source/s/setuptools-git/setuptools-git-$pkgver.tar.gz")
md5sums=('de63b541a10c2b83caa478c687458b16')
package() {
cd $srcdir/setuptools-git-$pkgver
python setup.py install --root=$pkgdir/ --optimize=1
install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}