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

Felix Yan felixonmars at archlinux.org
Mon Sep 21 10:39:57 UTC 2020


    Date: Monday, September 21, 2020 @ 10:39:57
  Author: felixonmars
Revision: 711159

archrelease: copy trunk to community-testing-any

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

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

Copied: python-voluptuous/repos/community-testing-any/PKGBUILD (from rev 711158, python-voluptuous/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2020-09-21 10:39:57 UTC (rev 711159)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-voluptuous
+pkgver=0.12.0
+pkgrel=1
+pkgdesc="A Python data validation library"
+url="https://github.com/alecthomas/voluptuous"
+license=('BSD')
+arch=('any')
+depends=('python')
+makedepends=('python-setuptools' 'python-pypandoc')
+checkdepends=('python-nose')
+source=("https://pypi.io/packages/source/v/voluptuous/voluptuous-$pkgver.tar.gz")
+sha512sums=('7c72d965f2a2eeb2ad099a19b41e2249b9921e51985ff975ed62fe5a6d5b3f2d5c2a7d6fc2cbe3c80abbea17cfc46c39f1953db5daecc0faafb348c838f80417')
+
+prepare() {
+  # https://github.com/alecthomas/voluptuous/issues/333
+  rm -r voluptuous-$pkgver/*.egg-info
+
+  # https://github.com/alecthomas/voluptuous/pull/332
+  sed -e "s/'w'/'wb'/" -e "s/.encode('utf-8')//" -e "s/f.write(long_description)/f.write(long_description.encode('utf-8'))/" -i voluptuous-$pkgver/setup.py
+
+  # Python 3.7
+  sed -i '/raise StopIteration/d' voluptuous-$pkgver/voluptuous/schema_builder.py
+}
+
+build() {
+  cd voluptuous-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd voluptuous-$pkgver
+  python setup.py nosetests
+}
+
+package() {
+  cd voluptuous-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}



More information about the arch-commits mailing list