summaryrefslogtreecommitdiff
path: root/community/python-pymongo
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-11-29 02:32:15 -0800
committerroot <root@rshg054.dnsready.net>2012-11-29 02:32:15 -0800
commitfd13fc6dba397df448ce6ecf87e806fdc3a8f3cd (patch)
tree5635460ffbb1eefba5dd2d0af61c5c7eb08e9dbd /community/python-pymongo
parent5c5e1e3a998a54db424b8261fac042ab41745d99 (diff)
Thu Nov 29 02:28:50 PST 2012
Diffstat (limited to 'community/python-pymongo')
-rw-r--r--community/python-pymongo/PKGBUILD11
1 files changed, 4 insertions, 7 deletions
diff --git a/community/python-pymongo/PKGBUILD b/community/python-pymongo/PKGBUILD
index f17a05109..22f6685cd 100644
--- a/community/python-pymongo/PKGBUILD
+++ b/community/python-pymongo/PKGBUILD
@@ -1,37 +1,34 @@
-# $Id: PKGBUILD 78449 2012-10-18 18:07:43Z arodseth $
+# $Id: PKGBUILD 80655 2012-11-28 19:20:11Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Thomas S Hatch <thatch45@gmail.com>
# Contributor: Jelle van der Waa <jelle@vdwaa.nl>
pkgbase=python-pymongo
pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=2.3
-pkgrel=3
+pkgver=2.4
+pkgrel=1
pkgdesc='Python driver for MongoDB'
arch=('x86_64' 'i686')
license=('APACHE')
url='http://pypi.python.org/pypi/pymongo/'
makedepends=('python-distribute' 'python2-distribute')
source=("http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz")
-sha256sums=('8e43fdd7ea8e2aa965791af1b6e24186248023c6fde70092d9631b1d9150b1dc')
+sha256sums=('11d6a2934188eea6a6b6c55f3a0b1ac610175e6de92b0e5632bb8d90acb3d48d')
build() {
cd $srcdir
-
cp -a pymongo-$pkgver pymongo2-$pkgver
}
package_python2-pymongo() {
depends=('python2')
cd $srcdir/pymongo2-$pkgver
-
python2 setup.py install --root=$pkgdir --optimize=1
}
package_python-pymongo() {
depends=('python')
cd $srcdir/pymongo-$pkgver
-
python setup.py install --root=$pkgdir --optimize=1
}