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

Felix Yan fyan at archlinux.org
Tue Aug 11 05:37:08 UTC 2015


    Date: Tuesday, August 11, 2015 @ 07:37:08
  Author: fyan
Revision: 138194

archrelease: copy trunk to community-any

Added:
  python-update_checker/repos/community-any/
  python-update_checker/repos/community-any/PKGBUILD
    (from rev 138193, python-update_checker/trunk/PKGBUILD)

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

Copied: python-update_checker/repos/community-any/PKGBUILD (from rev 138193, python-update_checker/trunk/PKGBUILD)
===================================================================
--- community-any/PKGBUILD	                        (rev 0)
+++ community-any/PKGBUILD	2015-08-11 05:37:08 UTC (rev 138194)
@@ -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"
+}



More information about the arch-commits mailing list