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

Felix Yan felixonmars at archlinux.org
Fri Feb 21 15:29:33 UTC 2020


    Date: Friday, February 21, 2020 @ 15:29:33
  Author: felixonmars
Revision: 577649

archrelease: copy trunk to community-testing-any

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

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

Copied: python-xmlschema/repos/community-testing-any/PKGBUILD (from rev 577648, python-xmlschema/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2020-02-21 15:29:33 UTC (rev 577649)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-xmlschema
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="An XML Schema validator and decoder"
+url="https://github.com/sissaschool/xmlschema"
+license=('MIT')
+arch=('any')
+depends=('python-elementpath')
+makedepends=('python-setuptools')
+checkdepends=('python-lxml')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sissaschool/xmlschema/archive/v$pkgver.tar.gz")
+sha512sums=('9922eb073f3f9e52bb024ef6f2f25ee361e8b236a23f89c426ab650bcfbc9f5acbd3c57044c726f78086043d14ce435f1b48932c0dc2e2abfa780fd4f8921a7f')
+
+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