diff options
-rw-r--r-- | gitpython/PKGBUILD | 21 | ||||
-rw-r--r-- | python-async/PKGBUILD | 17 | ||||
-rw-r--r-- | python-gitdb/PKGBUILD | 18 |
3 files changed, 56 insertions, 0 deletions
diff --git a/gitpython/PKGBUILD b/gitpython/PKGBUILD new file mode 100644 index 0000000..a4b9d56 --- /dev/null +++ b/gitpython/PKGBUILD @@ -0,0 +1,21 @@ +# Contributor: Jon Bergli Heier <snakebite@jvnv.net> +pkgname=gitpython +pkgver=0.3.0_beta2 +_pkgver=0.3.0-beta2 +pkgrel=1 +pkgdesc="A python library used to interact with Git repositories" +arch=(i686 x86_64) +url="http://gitorious.org/git-python" +license=('BSD') +depends=('git' 'python-gitdb') +makedepends=('git') +conflicts=('gitpython-git') +source=("http://pypi.python.org/packages/source/G/GitPython/GitPython-${_pkgver}.tar.gz") +md5sums=('88acb9fa2d61e4ca25664619fca0eda3') + +build() { + 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 +} +# vim:set ts=2 sw=2 et: diff --git a/python-async/PKGBUILD b/python-async/PKGBUILD new file mode 100644 index 0000000..a529c60 --- /dev/null +++ b/python-async/PKGBUILD @@ -0,0 +1,17 @@ +# Contributor: Jon Bergli Heier <snakebite@jvnv.net> +pkgname=python-async +pkgver=0.6.1 +pkgrel=1 +pkgdesc="IO of git-style object databases" +arch=(i686 x86_64) +url="http://pypi.python.org/pypi/async" +license=('BSD') +source=("http://pypi.python.org/packages/source/a/async/async-${pkgver}.tar.gz") + +md5sums=('c1804db06acea51444c216efe629c055') + +build() { + cd "$srcdir/async-$pkgver" + python2 setup.py install --root="$pkgdir/" || return 1 +} +# vim:set ts=2 sw=2 et: diff --git a/python-gitdb/PKGBUILD b/python-gitdb/PKGBUILD new file mode 100644 index 0000000..ff537fa --- /dev/null +++ b/python-gitdb/PKGBUILD @@ -0,0 +1,18 @@ +# Contributor: Jon Bergli Heier <snakebite@jvnv.net> +pkgname=python-gitdb +pkgver=0.5.1 +pkgrel=1 +pkgdesc="IO of git-style object databases" +arch=(i686 x86_64) +url="http://pypi.python.org/pypi/gitdb" +license=('BSD') +depends=('python-async') +source=("http://pypi.python.org/packages/source/g/gitdb/gitdb-${pkgver}.tar.gz") + +md5sums=('235ae42aa3caf8d1427fd167ce267bdd') + +build() { + cd "$srcdir/gitdb-$pkgver" + python2 setup.py install --root="$pkgdir/" || return 1 +} +# vim:set ts=2 sw=2 et: |