summaryrefslogtreecommitdiffstats
path: root/abs
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2017-07-16 15:51:56 (GMT)
committerBritney Fransen <brfransen@gmail.com>2017-07-16 15:51:56 (GMT)
commit423afd57c17d078b48e62a2744f29e7c9f171a44 (patch)
tree1e6623f486e4bcd2ff1ac8897e37df32d122f6b5 /abs
parent3bf92243e3e5c4a91d46ff6e59abc62299376193 (diff)
downloadlinhes_pkgbuild-423afd57c17d078b48e62a2744f29e7c9f171a44.zip
linhes_pkgbuild-423afd57c17d078b48e62a2744f29e7c9f171a44.tar.gz
linhes_pkgbuild-423afd57c17d078b48e62a2744f29e7c9f171a44.tar.bz2
python2-ordereddict: initial inclusion. dep of flexget
Diffstat (limited to 'abs')
-rw-r--r--abs/core/python_modules/python2-ordereddict/PKGBUILD19
1 files changed, 19 insertions, 0 deletions
diff --git a/abs/core/python_modules/python2-ordereddict/PKGBUILD b/abs/core/python_modules/python2-ordereddict/PKGBUILD
new file mode 100644
index 0000000..60493cd
--- /dev/null
+++ b/abs/core/python_modules/python2-ordereddict/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
+# Contributor: Cedric Girard <girard.cedric@gmail.com>
+# Contributor: Julien Nicoulaud <julien.nicoulaud@gmail.com>
+pkgname=python2-ordereddict
+pkgver=1.1
+pkgrel=1
+pkgdesc="A drop-in substitute for Python 2.7's collections.OrderedDict that works in Python 2.4-2.6."
+arch=(any)
+url="http://pypi.python.org/pypi/ordereddict"
+license=(APACHE)
+depends=(python2)
+makedepends=(python2-distribute)
+source=("http://pypi.python.org/packages/source/o/ordereddict/ordereddict-${pkgver}.tar.gz")
+md5sums=('a0ed854ee442051b249bfad0f638bbec')
+
+package() {
+ cd "${srcdir}/ordereddict-${pkgver}"
+ python2 setup.py install --root="$pkgdir/" --optimize=1
+}