Date: Monday, October 24, 2022 @ 09:03:43
Author: alucryd
Revision: 1334528
archrelease: copy trunk to community-any
Added:
python-reactivex/repos/community-any/PKGBUILD
(from rev 1334527, python-reactivex/trunk/PKGBUILD)
Deleted:
python-reactivex/repos/community-any/PKGBUILD
----------+
PKGBUILD | 108 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 54 insertions(+), 54 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-10-24 09:03:33 UTC (rev 1334527)
+++ PKGBUILD 2022-10-24 09:03:43 UTC (rev 1334528)
@@ -1,54 +0,0 @@
-# Maintainer: Maxime Gauduin <[email protected]>
-# Contributor: Ilya Elenskiy <[email protected]>
-# Contributor: Julien Nicoulaud <[email protected]>
-
-pkgname=python-reactivex
-pkgver=4.0.4
-pkgrel=1
-pkgdesc='Reactive Extensions for Python'
-arch=(any)
-url=http://reactivex.io
-license=(APACHE)
-depends=(
- python
- python-typing_extensions
-)
-makedepends=(
- git
- python-build
- python-poetry
- python-installer
-)
-checkdepends=(
- python-coverage
- python-nose
- python-pytest
- python-pytest-asyncio
-)
-_tag=7187453c1a829c3f7ceeadae722f2d1d13f6b51e
-source=(git+https://github.com/ReactiveX/RxPY.git#tag=${_tag})
-sha256sums=(SKIP)
-
-pkgver() {
- cd RxPY
- _version=$(git describe --tags | sed 's/^v//')
- poetry version -q ${_version}
- echo "__version__ = \"${_version}\"" > reactivex/_version.py
- echo ${_version}
-}
-
-build() {
- cd RxPY
- python -m build --wheel --no-isolation
-}
-
-check() {
- cd RxPY
- python -m pytest
-}
-
-package() {
- python -m installer --destdir="${pkgdir}" RxPY/dist/*.whl
-}
-
-# vim: ts=2 sw=2 et:
Copied: python-reactivex/repos/community-any/PKGBUILD (from rev 1334527,
python-reactivex/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-10-24 09:03:43 UTC (rev 1334528)
@@ -0,0 +1,54 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Ilya Elenskiy <[email protected]>
+# Contributor: Julien Nicoulaud <[email protected]>
+
+pkgname=python-reactivex
+pkgver=4.0.4
+pkgrel=2
+pkgdesc='Reactive Extensions for Python'
+arch=(any)
+url=http://reactivex.io
+license=(APACHE)
+depends=(
+ python
+ python-typing_extensions
+)
+makedepends=(
+ git
+ python-build
+ python-poetry-core
+ python-installer
+)
+checkdepends=(
+ python-coverage
+ python-nose
+ python-pytest
+ python-pytest-asyncio
+)
+_tag=7187453c1a829c3f7ceeadae722f2d1d13f6b51e
+source=(git+https://github.com/ReactiveX/RxPY.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+ cd RxPY
+ _version=$(git describe --tags | sed 's/^v//')
+ sed "s/0.0.0/${_version}/" -i pyproject.toml
+ echo "__version__ = \"${_version}\"" > reactivex/_version.py
+ echo ${_version}
+}
+
+build() {
+ cd RxPY
+ python -m build --wheel --no-isolation
+}
+
+check() {
+ cd RxPY
+ python -m pytest
+}
+
+package() {
+ python -m installer --destdir="${pkgdir}" RxPY/dist/*.whl
+}
+
+# vim: ts=2 sw=2 et: