summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2015-01-06 20:01:03 +0100
committerJon Bergli Heier <snakebite@jvnv.net>2015-01-06 20:01:03 +0100
commit01f6981ed186e8ff8b532247b9983719f0be28dd (patch)
tree04d7354e74ca799e7fbfab9ce26da2f8a1352681
parentf9814486d528ef9abd8b901daa8ae0450c9e4eef (diff)
python2-gitpython: Bumped to 0.3.2.1.
-rw-r--r--python2-gitpython/PKGBUILD15
1 files changed, 7 insertions, 8 deletions
diff --git a/python2-gitpython/PKGBUILD b/python2-gitpython/PKGBUILD
index e7d0551..affc97a 100644
--- a/python2-gitpython/PKGBUILD
+++ b/python2-gitpython/PKGBUILD
@@ -1,24 +1,23 @@
# Maintainer: Jon Bergli Heier <snakebite@jvnv.net>
pkgname=python2-gitpython
-pkgver=0.3.2_rc1
-_pkgver=0.3.2.RC1
-pkgrel=2
+pkgver=0.3.2.1
+pkgrel=1
pkgdesc="A python library used to interact with Git repositories"
arch=('any')
url="http://gitorious.org/git-python"
license=('BSD')
-depends=('python2' 'git' 'python2-gitdb>=0.5.1')
+depends=('python2' 'git' 'python2-gitdb>=0.6.0')
makedepends=('python2' 'python2-distribute')
conflicts=('gitpython-git' 'gitpython')
replaces=('gitpython')
-source=("http://pypi.python.org/packages/source/G/GitPython/GitPython-${_pkgver}.tar.gz")
-md5sums=('849082fe29adc653a3621465213cab96')
+source=("http://pypi.python.org/packages/source/G/GitPython/GitPython-${pkgver}.tar.gz")
+md5sums=('a8e8d3875d71c09993d078527d8c327e')
package() {
- cd "$srcdir/GitPython-${_pkgver}"
+ cd "$srcdir/GitPython-${pkgver}"
python2 setup.py install --root="$pkgdir/" --optimize=1 || return 1
- install -D -m 644 LICENSE "$pkgdir"/usr/share/licenses/gitpython/LICENSE
+ install -D -m 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}
# vim:set ts=2 sw=2 et: