diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2019-04-01 20:14:22 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2019-04-01 21:05:08 -0400 |
commit | 7954b0741996a9997e753041fb2b065fe3ecbc6b (patch) | |
tree | e677b632583dcbe474bf80c88a2435473ca4ec6a /libre/python2-memcached1.54/PKGBUILD | |
parent | c46b33f57bc0d686b1a0d5822da0caa8ad378d05 (diff) | |
download | abslibre-7954b0741996a9997e753041fb2b065fe3ecbc6b.tar.gz abslibre-7954b0741996a9997e753041fb2b065fe3ecbc6b.tar.bz2 abslibre-7954b0741996a9997e753041fb2b065fe3ecbc6b.zip |
Import old versions of parabolaweb dependencies from Arch to [libre]
package version next revision
-----------------------------------------------------------------------------------------------------------------------------------------
community/python-markdown 2.6.11-1 → 3.0-1 git-svn-id: file:///srv/repos/svn-community/svn@349084 9fca08f4-af9d-4005-b8df-a31f2cc04f65
community/python-psycopg2 2.6.2-2 → 2.7-1 git-svn-id: file:///srv/repos/svn-community/svn@201380 9fca08f4-af9d-4005-b8df-a31f2cc04f65
community/python2-memcached 1.54-2 → 1.57-1 git-svn-id: file:///srv/repos/svn-community/svn@133225 9fca08f4-af9d-4005-b8df-a31f2cc04f65
packages/django 1.8.7 -1 → 1.9-1 git-svn-id: file:///srv/repos/svn-packages/svn@252064 eb2447ed-0c53-47e4-bac8-5bc4a241df78
packages/python-markupsafe 0.24-4 → 1.0-1 git-svn-id: file:///srv/repos/svn-packages/svn@284569 eb2447ed-0c53-47e4-bac8-5bc4a241df78
Diffstat (limited to 'libre/python2-memcached1.54/PKGBUILD')
-rw-r--r-- | libre/python2-memcached1.54/PKGBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/libre/python2-memcached1.54/PKGBUILD b/libre/python2-memcached1.54/PKGBUILD new file mode 100644 index 000000000..1c349d9c8 --- /dev/null +++ b/libre/python2-memcached1.54/PKGBUILD @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Angel Velasquez <angvp@archlinux.org> +# Contributor: Geoffroy Carrier <geoffroy.carrier@aur.archlinux.org> +# Contributor: Nathan Jones <nathanj@insightbb.com> + +pkgname=python2-memcached +pkgdesc='Python interface to memcached' +pkgver=1.54 +pkgrel=2 +url='https://github.com/linsomniac/python-memcached' +arch=('any') +license=('PSF') +depends=('python2-six') +makedepends=('python2-setuptools' 'git' 'python2-six') +source=("git://github.com/linsomniac/python-memcached#tag=release-$pkgver") +md5sums=('SKIP') + +prepare() { + cd 'python-memcached' + + sed -i 's:/env python:/python2:' memcache.py +} + +package() { + cd 'python-memcached' + + python2 setup.py install --root=$pkgdir --optimize=1 +} + +check() { + cd 'python-memcached' + + python2 setup.py check +} + +# getver: -u 2 github.com/linsomniac/python-memcached/blob/master/ChangeLog +# vim:set ts=2 sw=2 et: |