[arch-commits] Commit in python-praw/repos (2 files)

Felix Yan felixonmars at archlinux.org
Mon Dec 26 22:09:25 UTC 2016


    Date: Monday, December 26, 2016 @ 22:09:23
  Author: felixonmars
Revision: 202868

archrelease: copy trunk to community-staging-any

Added:
  python-praw/repos/community-staging-any/
  python-praw/repos/community-staging-any/PKGBUILD
    (from rev 202867, python-praw/trunk/PKGBUILD)

----------+
 PKGBUILD |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

Copied: python-praw/repos/community-staging-any/PKGBUILD (from rev 202867, python-praw/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2016-12-26 22:09:23 UTC (rev 202868)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-praw
+pkgname=('python-praw' 'python2-praw')
+pkgver=4.1.0
+pkgrel=2
+pkgdesc="Python Reddit API Wrapper that allows for simple access to reddit's API"
+arch=('any')
+license=('GPL')
+url="http://praw.readthedocs.org"
+makedepends=('python-setuptools' 'python2-setuptools' 'python-decorator' 'python2-decorator'
+             'python-requests' 'python2-requests' 'python-six' 'python2-six'
+             'python-update_checker' 'python2-update_checker' 'git')
+checkdepends=('python-mock' 'python2-mock')
+# Version conflict, disabled for now
+# 'python-betamax-matchers' 'python2-betamax-matchers' 'python-betamax-serializers' 'python2-betamax-serializers')
+source=("git+https://github.com/praw-dev/praw.git#tag=v$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  sed -e 's/mock ==1.0.1/mock/' \
+      -e 's/update_checker ==0.11/update_checker >=0.11/' \
+      -i praw/setup.py
+  cp -a praw{,-py2}
+}
+
+check() {
+  cd "$srcdir"/praw
+  python setup.py test
+
+  cd "$srcdir"/praw-py2
+  python2 setup.py test
+}
+
+package_python-praw() {
+  depends=('python-decorator' 'python-requests' 'python-six' 'python-update_checker')
+
+  cd praw
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-praw() {
+  depends=('python2-decorator' 'python2-requests' 'python2-six' 'python2-update_checker')
+
+  cd praw-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}



More information about the arch-commits mailing list