[arch-commits] Commit in python-pyaml/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Tue Mar 10 10:19:04 UTC 2020
Date: Tuesday, March 10, 2020 @ 10:19:03
Author: felixonmars
Revision: 593490
archrelease: copy trunk to community-testing-any
Added:
python-pyaml/repos/community-testing-any/
python-pyaml/repos/community-testing-any/PKGBUILD
(from rev 593489, python-pyaml/trunk/PKGBUILD)
----------+
PKGBUILD | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
Copied: python-pyaml/repos/community-testing-any/PKGBUILD (from rev 593489, python-pyaml/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2020-03-10 10:19:03 UTC (rev 593490)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-pyaml
+pkgname=(python-pyaml python2-pyaml)
+pkgver=20.3.1
+pkgrel=1
+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=('36a25418cf4df8d6dedc4631c4289117651ac89553b496fdeed36723d006f92cf1c594a3a32877972cbae2b49df87806b53188e85b306bb7888298b712daa444')
+
+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