Date: Thursday, April 6, 2023 @ 16:52:46
Author: felixonmars
Revision: 1439771
archrelease: copy trunk to community-staging-any
Added:
python-phpserialize/repos/community-staging-any/
python-phpserialize/repos/community-staging-any/PKGBUILD
(from rev 1439763, python-phpserialize/trunk/PKGBUILD)
----------+
PKGBUILD | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
Copied: python-phpserialize/repos/community-staging-any/PKGBUILD (from rev
1439763, python-phpserialize/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-06 16:52:46 UTC (rev 1439771)
@@ -0,0 +1,50 @@
+# Maintainer: David Runge <[email protected]>
+
+_name=phpserialize
+pkgname=python-phpserialize
+pkgver=1.3
+pkgrel=11
+pkgdesc="A port of the serialize and unserialize functions of php to python"
+arch=(any)
+url="https://github.com/mitsuhiko/phpserialize"
+license=(BSD)
+depends=(python)
+makedepends=(python-build python-installer python-setuptools python-wheel)
+# tests not included in pypi source:
+# https://github.com/mitsuhiko/phpserialize/issues/21
+# LICENSE not in any source tarball:
+# https://github.com/mitsuhiko/phpserialize/issues/22
+#source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
+source=(
+
$pkgname-$pkgver.tar.gz::https://github.com/mitsuhiko/$_name/archive/$pkgver.tar.gz
+
https://raw.githubusercontent.com/mitsuhiko/phpserialize/46a7e5d443757dedaaff4f6b1b8ae5e020210e0e/LICENSE
+)
+sha512sums=('d96e3aa87d2f03fef6c7cee234e90b373989a9c8e3a07a8e2147a2e7487d3448ea0ef646263e517d6b307bf66f9ba1a4e8def04f919767532cede802cc7db144'
+
'95be97fbe3b8d03ba27aee2d9f5e29ff2923425970103f8b15f13e36beb744e8bc1f9361e89b05d2e9677368b5ab95c5ad84722e3523b3b8574e2d94b69f2d3e')
+b2sums=('63a5e88c93ae5c75c476deb8ceb37fd3e250c86e745a587eca0ae2ff4484f923f0f50f31002176d3ce8c38585d827212b9c45a4b701a9f5ffe1782ee336bb2fa'
+
'0c39d868b4457af6108d6a2572d88e06114ef2fabd60d4f87493eae4b8f76aad4ba66676845ad9eb8154c5a14e498fddaa83037200ab4288e385410ab8be759c')
+
+prepare() {
+ cd $_name-$pkgver
+ # disabling broken test: https://github.com/mitsuhiko/phpserialize/issues/17
+ sed -e 's/test_tuple_roundtrips/disabled_test_tuple_roundtrips/' \
+ -e 's/test_dumps_dict/disabled_test_dumps_dict/' \
+ -i tests.py
+}
+
+build() {
+ cd $_name-$pkgver
+ python -m build --wheel --no-isolation
+}
+
+check() {
+ cd $_name-$pkgver
+ python tests.py
+}
+
+package() {
+ cd $_name-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+ install -vDm 644 ../LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
+ install -vDm 644 README -t "$pkgdir/usr/share/doc/$pkgname/"
+}