diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-02-12 19:16:05 +0100 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-02-12 19:16:05 +0100 |
commit | 5ea3f3aa8a9035d30620bca1bbbbd8427a0410b6 (patch) | |
tree | 96709ffbeb947b10fd4842312740165524355a1b /gitpython/PKGBUILD | |
parent | 129e2a56068bce1d232fea2b14ab1a706c7a3bdc (diff) |
gitpython: Current version is 0.3.1-beta2, not 0.3.1.
Diffstat (limited to 'gitpython/PKGBUILD')
-rw-r--r-- | gitpython/PKGBUILD | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gitpython/PKGBUILD b/gitpython/PKGBUILD index 1caf614..a33b0cd 100644 --- a/gitpython/PKGBUILD +++ b/gitpython/PKGBUILD @@ -1,6 +1,7 @@ # Contributor: Jon Bergli Heier <snakebite@jvnv.net> pkgname=gitpython -pkgver=0.3.1 +pkgver=0.3.1_beta2 +_pkgver=0.3.1-beta2 pkgrel=1 pkgdesc="A python library used to interact with Git repositories" arch=('any') @@ -8,11 +9,11 @@ url="http://gitorious.org/git-python" license=('BSD') depends=('python2' 'git' 'python-gitdb') conflicts=('gitpython-git') -source=("http://pypi.python.org/packages/source/G/GitPython/GitPython-${pkgver}.tar.gz") -md5sums=('98f9a4e33574065660b7257fa93d707d') +source=("http://pypi.python.org/packages/source/G/GitPython/GitPython-${_pkgver}.tar.gz") +md5sums=('2ea70952acd8df0eaf0630b2c489f315') build() { - cd "$srcdir/GitPython-$pkgver" + cd "$srcdir/GitPython-0.3.1" python2 setup.py install --root="$pkgdir/" --optimize=1 || return 1 install -D -m 644 LICENSE "$pkgdir"/usr/share/licenses/gitpython/LICENSE } |