[arch-commits] Commit in (4 files)

Felix Yan fyan at archlinux.org
Tue Aug 11 05:36:42 UTC 2015


    Date: Tuesday, August 11, 2015 @ 07:36:41
  Author: fyan
Revision: 138193

addpkg: python-update_checker 0.11-1

Added:
  python-update_checker/
  python-update_checker/repos/
  python-update_checker/trunk/
  python-update_checker/trunk/PKGBUILD

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

Added: python-update_checker/trunk/PKGBUILD
===================================================================
--- python-update_checker/trunk/PKGBUILD	                        (rev 0)
+++ python-update_checker/trunk/PKGBUILD	2015-08-11 05:36:41 UTC (rev 138193)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at gmail.com>
+
+pkgbase=python-update_checker
+pkgname=('python-update_checker' 'python2-update_checker')
+pkgver=0.11
+pkgrel=1
+pkgdesc="A python module that will check for package updates"
+arch=('any')
+license=('BSD')
+url='https://github.com/bboe/update_checker'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 'python2-requests')
+source=("https://pypi.python.org/packages/source/u/update_checker/update_checker-${pkgver}.tar.gz")
+md5sums=('1daa54bac316be6624d7ee77373144bb')
+
+prepare() {
+  cp -a update_checker-$pkgver{,-py2}
+}
+
+check() {
+  cd "$srcdir/update_checker-${pkgver}"
+  python setup.py test
+
+  cd "$srcdir/update_checker-${pkgver}-py2"
+  python2 setup.py test
+}
+
+package_python-update_checker() {
+  depends=('python-requests')
+
+  cd "${srcdir}/update_checker-${pkgver}"
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}
+
+package_python2-update_checker() {
+  depends=('python2-requests')
+
+  cd "${srcdir}/update_checker-${pkgver}-py2"
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}


Property changes on: python-update_checker/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property



More information about the arch-commits mailing list