[arch-commits] Commit in python-xmlschema/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Fri Aug 14 19:52:02 UTC 2020
Date: Friday, August 14, 2020 @ 19:52:01
Author: felixonmars
Revision: 679266
archrelease: copy trunk to community-testing-any
Added:
python-xmlschema/repos/community-testing-any/
python-xmlschema/repos/community-testing-any/PKGBUILD
(from rev 679265, python-xmlschema/trunk/PKGBUILD)
----------+
PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
Copied: python-xmlschema/repos/community-testing-any/PKGBUILD (from rev 679265, python-xmlschema/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2020-08-14 19:52:01 UTC (rev 679266)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-xmlschema
+pkgver=1.2.3
+pkgrel=1
+pkgdesc="An XML Schema validator and decoder"
+url="https://github.com/sissaschool/xmlschema"
+license=('MIT')
+arch=('any')
+depends=('python-elementpath')
+makedepends=('python-pip')
+checkdepends=('python-lxml')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sissaschool/xmlschema/archive/v$pkgver.tar.gz")
+sha512sums=('2f493488c266345688991e4c087856890c0ab8b6c1884abf0d2b952b64a6be0ccff2625c6fd6a41c2cd4471888a9592815c7d2d83c1aae581ba8b51d2d122075')
+
+prepare() {
+ sed -i 's/~=/>=/' xmlschema-$pkgver/setup.py
+}
+
+build() {
+ cd xmlschema-$pkgver
+ python setup.py build
+}
+
+check() {
+ cd xmlschema-$pkgver
+ python -c "import xmlschema.codepoints; xmlschema.codepoints.save_unicode_categories()"
+ cp xmlschema/unicode_categories.json build/lib/xmlschema/
+ PYTHONPATH="$PWD/build/lib" python -m unittest
+}
+
+package() {
+ cd xmlschema-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+
+ install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}
More information about the arch-commits
mailing list