Date: Tuesday, October 25, 2022 @ 12:08:33
Author: alerque
Revision: 1334769
archrelease: copy trunk to community-testing-any
Added:
python-fakeredis/repos/community-testing-any/
python-fakeredis/repos/community-testing-any/PKGBUILD
(from rev 1334768, python-fakeredis/trunk/PKGBUILD)
----------+
PKGBUILD | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
Copied: python-fakeredis/repos/community-testing-any/PKGBUILD (from rev
1334768, python-fakeredis/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2022-10-25 12:08:33 UTC (rev 1334769)
@@ -0,0 +1,51 @@
+# Maintainer: Caleb Maclennan <[email protected]>
+# Contributor: Eli Schwartz <[email protected]>
+
+# Upstream tests are pretty borked, especially the PyPi sources. Skip for now.
+BUILDENV+=(!check)
+
+_pyname=fakeredis
+pkgname=python-fakeredis
+pkgver=1.10.0
+pkgrel=1
+pkgdesc='Fake implementation of redis API (redis-py) for testing purposes'
+arch=(any)
+url="https://github.com/dsoftwareinc/${_pyname}-py"
+license=(BSD MIT)
+depends=(python-importlib-metadata
+ python-redis
+ python-six
+ python-sortedcontainers)
+makedepends=(python-{build,installer,wheel}
+ python-aioredis
+ python-packaging
+ python-lupa
+ python-poetry-core)
+checkdepends=(python-pytest
+ python-pytest-asyncio
+ python-pytest-mock
+ python-hypothesis)
+optdepends=('python-aioredis: for aioredis support'
+ 'python-packaging: for aioredis support'
+ 'python-lupa: for lua scripting support')
+# _archive="$_pyname-py-$pkgver"
+# source=("$url/archive/v$pkgver/$_archive.tar.gz")
+_archive="$_pyname-$pkgver"
+source=("https://files.pythonhosted.org/packages/source/${_pyname::1}/$_pyname/$_archive.tar.gz")
+sha256sums=('2b02370118535893d832bcd3c099ef282de3f13b29ae3922432e2225794ec334')
+
+build(){
+ cd "$_archive"
+ python -m build -wn
+}
+
+check() {
+ cd "$_archive"
+ PYTHONPATH="$PWD" pytest
+}
+
+package() {
+ cd "$_archive"
+ python -m installer -d "$pkgdir" dist/*.whl
+ install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}