From 5874bcb660b0caa88f00d5e17fb1007888b39337 Mon Sep 17 00:00:00 2001 From: Michael Hanson Date: Wed, 15 Dec 2010 02:53:56 +0000 Subject: python-async: initial include as dep of python-gitdb --- abs/core/python_modules/python-async/PKGBUILD | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 abs/core/python_modules/python-async/PKGBUILD diff --git a/abs/core/python_modules/python-async/PKGBUILD b/abs/core/python_modules/python-async/PKGBUILD new file mode 100644 index 0000000..5a49159 --- /dev/null +++ b/abs/core/python_modules/python-async/PKGBUILD @@ -0,0 +1,18 @@ +# Contributor: Jon Bergli Heier +pkgname=python-async +pkgver=0.6.1 +pkgrel=1 +pkgdesc="Async aims to make writing asyncronous processing easier." +arch=('i686' 'x86_64') +url="http://pypi.python.org/pypi/async" +license=('BSD') +depends=('python2') +source=("http://pypi.python.org/packages/source/a/async/async-${pkgver}.tar.gz") + +build() { + cd "$srcdir/async-$pkgver" + python2 setup.py install --root="$pkgdir/" || return 1 +} +# vim:set ts=2 sw=2 et: + +md5sums=('6f0e2ced1fe85f8410b9bde11be08587') -- cgit v0.12 From 24821c96db3c88e013c18cd72288f41150236b6d Mon Sep 17 00:00:00 2001 From: Michael Hanson Date: Wed, 15 Dec 2010 02:54:36 +0000 Subject: python-gitdb: inital include as dep of git-pythpn --- abs/core/python_modules/python-gitdb/PKGBUILD | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 abs/core/python_modules/python-gitdb/PKGBUILD diff --git a/abs/core/python_modules/python-gitdb/PKGBUILD b/abs/core/python_modules/python-gitdb/PKGBUILD new file mode 100644 index 0000000..a7a6f71 --- /dev/null +++ b/abs/core/python_modules/python-gitdb/PKGBUILD @@ -0,0 +1,19 @@ +# Contributor: Jon Bergli Heier +pkgname=python-gitdb +pkgver=0.5.2 +pkgrel=1 +pkgdesc="IO of git-style object databases" +arch=('i686' 'x86_64') +url="http://pypi.python.org/pypi/gitdb" +license=('BSD') +depends=('python2' 'python-async') +source=("http://pypi.python.org/packages/source/g/gitdb/gitdb-${pkgver}.tar.gz") + +md5sums=('98655385607aed62101318051f7c9364') + +build() { + cd "$srcdir/gitdb-$pkgver" + python2 setup.py install --root="$pkgdir/" || return 1 +} +# vim:set ts=2 sw=2 et: + -- cgit v0.12 From c7ee05a4a17710f0fe63eba48ada8daab4713240 Mon Sep 17 00:00:00 2001 From: Michael Hanson Date: Wed, 15 Dec 2010 02:55:00 +0000 Subject: git-python: initial include for python version of mp --- abs/core/python_modules/git-python/PKGBUILD | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 abs/core/python_modules/git-python/PKGBUILD diff --git a/abs/core/python_modules/git-python/PKGBUILD b/abs/core/python_modules/git-python/PKGBUILD new file mode 100644 index 0000000..5b4d975 --- /dev/null +++ b/abs/core/python_modules/git-python/PKGBUILD @@ -0,0 +1,20 @@ +# Contributor: Jon Bergli Heier +pkgname=gitpython +pkgver=0.3.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' 'python-gitdb') +conflicts=('gitpython-git') +source=("http://pypi.python.org/packages/source/G/GitPython/GitPython-${pkgver}.tar.gz") +md5sums=('98f9a4e33574065660b7257fa93d707d') + +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: + -- cgit v0.12