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

Evangelos Foutras foutrelis at archlinux.org
Sun Jul 8 13:01:59 UTC 2018


    Date: Sunday, July 8, 2018 @ 13:01:59
  Author: foutrelis
Revision: 354876

archrelease: copy trunk to community-staging-any

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

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

Copied: python-pyaml/repos/community-staging-any/PKGBUILD (from rev 354875, python-pyaml/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2018-07-08 13:01:59 UTC (rev 354876)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-pyaml
+pkgname=(python-pyaml python2-pyaml)
+pkgver=17.12.1
+pkgrel=2
+pkgdesc="PyYAML-based module to produce pretty and readable YAML-serialized data"
+url="https://pypi.python.org/pypi/pyaml"
+license=('BSD')
+arch=('any')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-yaml' 'python2-yaml')
+checkdepends=('python-unidecode' 'python2-unidecode')
+source=("https://pypi.io/packages/source/p/pyaml/pyaml-$pkgver.tar.gz")
+sha512sums=('1623e56d7fd6a18199bb3774252dabe0b19df6ac57802d4916ba78aaa2aa4db1796e4245003b8cae230dd0feeae9265e28170d6353b34fd8075b4cf1c22b932f')
+
+prepare() {
+  cp -a pyaml-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pyaml-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pyaml-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pyaml-$pkgver
+  python setup.py test
+
+  cd "$srcdir"/pyaml-$pkgver-py2
+  python2 -m unittest pyaml.tests.dump
+}
+
+package_python-pyaml() {
+  depends=('python-yaml')
+  optdepends=('python-unidecode: Needed if same-id objects or recursion is used within serialized data')
+
+  cd pyaml-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}
+
+package_python2-pyaml() {
+  depends=('python2-yaml')
+  optdepends=('python2-unidecode: Needed if same-id objects or recursion is used within serialized data')
+
+  cd pyaml-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}



More information about the arch-commits mailing list