Date: Wednesday, December 14, 2022 @ 13:36:01
Author: alucryd
Revision: 1359026
archrelease: copy trunk to community-any
Added:
python-voluptuous-serialize/repos/community-any/PKGBUILD
(from rev 1359025, python-voluptuous-serialize/trunk/PKGBUILD)
Deleted:
python-voluptuous-serialize/repos/community-any/PKGBUILD
----------+
PKGBUILD | 85 +++++++++++++++++++++++++++++--------------------------------
1 file changed, 41 insertions(+), 44 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-12-14 13:35:51 UTC (rev 1359025)
+++ PKGBUILD 2022-12-14 13:36:01 UTC (rev 1359026)
@@ -1,44 +0,0 @@
-# Maintainer: Jameson Pugh <[email protected]>
-
-pkgname=python-voluptuous-serialize
-pkgver=2.5.0
-pkgrel=2
-pkgdesc='Convert voluptuous schemas to JSON'
-arch=(any)
-url=https://github.com/balloob/voluptuous-serialize
-license=(APACHE)
-depends=(python-voluptuous)
-makedepends=(
- git
- python-setuptools
-)
-checkdepends=(python-pytest)
-_tag=bea77030a4a8b782eb19d0391fb15842ff6cbd40
-source=(git+https://github.com/balloob/voluptuous-serialize.git#tag=${_tag})
-sha256sums=(SKIP)
-
-pkgver() {
- cd voluptuous-serialize
-
- git describe --tags
-}
-
-build() {
- cd voluptuous-serialize
-
- python setup.py build
-}
-
-check() {
- cd voluptuous-serialize
-
- python setup.py test
-}
-
-package() {
- cd voluptuous-serialize
-
- python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}
-
-# vim: ts=2 sw=2 et:
Copied: python-voluptuous-serialize/repos/community-any/PKGBUILD (from rev
1359025, python-voluptuous-serialize/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-12-14 13:36:01 UTC (rev 1359026)
@@ -0,0 +1,41 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Jameson Pugh <[email protected]>
+
+pkgname=python-voluptuous-serialize
+pkgver=2.5.0
+pkgrel=3
+pkgdesc='Convert voluptuous schemas to JSON'
+arch=(any)
+url=https://github.com/balloob/voluptuous-serialize
+license=(APACHE)
+depends=(python-voluptuous)
+makedepends=(
+ git
+ python-setuptools
+)
+checkdepends=(python-pytest)
+_tag=bea77030a4a8b782eb19d0391fb15842ff6cbd40
+source=(git+https://github.com/balloob/voluptuous-serialize.git#tag=${_tag})
+b2sums=(SKIP)
+
+pkgver() {
+ cd voluptuous-serialize
+ git describe --tags
+}
+
+build() {
+ cd voluptuous-serialize
+ python setup.py build
+}
+
+check() {
+ cd voluptuous-serialize
+ PYTHONPATH=$PWD/build/lib pytest
+}
+
+package() {
+ cd voluptuous-serialize
+ python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+# vim: ts=2 sw=2 et: