summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gitpython/PKGBUILD12
1 files changed, 6 insertions, 6 deletions
diff --git a/gitpython/PKGBUILD b/gitpython/PKGBUILD
index 867c15e..0a454e1 100644
--- a/gitpython/PKGBUILD
+++ b/gitpython/PKGBUILD
@@ -1,21 +1,21 @@
# Maintainer: Jon Bergli Heier <snakebite@jvnv.net>
pkgname=gitpython
-pkgver=0.3.1_beta2
-_pkgver=0.3.1-beta2
+pkgver=0.3.2_rc1
+_pkgver=0.3.2.RC1
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' 'python-gitdb')
-makedepends=('python2-distribute')
+depends=('python2' 'git' 'python-gitdb>=0.5.1')
+makedepends=('python2' 'python2-distribute')
conflicts=('gitpython-git')
source=("http://pypi.python.org/packages/source/G/GitPython/GitPython-${_pkgver}.tar.gz")
-md5sums=('2ea70952acd8df0eaf0630b2c489f315')
+md5sums=('849082fe29adc653a3621465213cab96')
build() {
- cd "$srcdir/GitPython-0.3.1"
+ 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
}