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

Felix Yan felixonmars at archlinux.org
Thu Jul 6 02:06:53 UTC 2017


    Date: Thursday, July 6, 2017 @ 02:06:52
  Author: felixonmars
Revision: 242451

archrelease: copy trunk to community-testing-any

Added:
  python-pygal/repos/community-testing-any/
  python-pygal/repos/community-testing-any/PKGBUILD
    (from rev 242450, python-pygal/trunk/PKGBUILD)

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

Copied: python-pygal/repos/community-testing-any/PKGBUILD (from rev 242450, python-pygal/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2017-07-06 02:06:52 UTC (rev 242451)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Chris Warrick <aur at chriswarrick.com>
+
+pkgbase=python-pygal
+pkgname=('python-pygal' 'python2-pygal')
+epoch=1
+pkgver=2.4.0
+pkgrel=1
+pkgdesc='A Python SVG graph plotting library'
+arch=('any')
+url='http://pygal.org/'
+license=('LGPL3')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest' 'python-lxml' 'python2-lxml'
+              'python-pyquery' 'python2-pyquery' 'python-cairosvg' 'python-flask' 'python2-flask')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/Kozea/pygal/archive/$pkgver.tar.gz")
+md5sums=('5c688d30f8e75dced194bfa612f45589')
+
+prepare() {
+  cp -a pygal-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pygal-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pygal-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pygal-$pkgver
+  LC_CTYPE=en_US.UTF-8 py.test pygal/
+
+  cd "$srcdir"/pygal-$pkgver-py2
+  py.test2 pygal/
+}
+
+package_python-pygal() {
+  depends=('python-setuptools')
+  optdepends=('python-lxml: for XML output through lxml instead of xml.etree'
+              'python-cairosvg: for PNG output')
+
+  cd pygal-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pygal() {
+  depends=('python2-setuptools')
+  optdepends=('python2-lxml: for XML output through lxml instead of xml.etree')
+
+  cd pygal-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/pygal_gen{,2}.py
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list