Date: Friday, May 12, 2023 @ 03:12:34
Author: grawlinson
Revision: 1460053
archrelease: copy trunk to community-any
Added:
python-poetry-dynamic-versioning/repos/community-any/PKGBUILD
(from rev 1460052, python-poetry-dynamic-versioning/trunk/PKGBUILD)
Deleted:
python-poetry-dynamic-versioning/repos/community-any/PKGBUILD
----------+
PKGBUILD | 115 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 57 insertions(+), 58 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-05-12 03:11:57 UTC (rev 1460052)
+++ PKGBUILD 2023-05-12 03:12:34 UTC (rev 1460053)
@@ -1,58 +0,0 @@
-# Maintainer: George Rawlinson <[email protected]>
-
-pkgname=python-poetry-dynamic-versioning
-pkgver=0.21.3
-pkgrel=2
-pkgdesc='Plugin for Poetry to enable dynamic versioning based on VCS tags'
-arch=('any')
-url='https://github.com/mtkennerly/poetry-dynamic-versioning'
-license=('MIT')
-depends=(
- 'python'
- 'python-dunamai'
- 'python-tomlkit'
- 'python-jinja'
- 'python-poetry'
-)
-makedepends=(
- 'git'
- 'python-build'
- 'python-installer'
- 'python-poetry-core'
-)
-checkdepends=(
- 'python-pytest'
- 'python-pytest-cov'
-)
-optdepends=('python-poetry: plugin integration')
-_commit='95d1b57181f458603b4d6b862f34111a86fd470c'
-source=("$pkgname::git+$url#commit=$_commit")
-b2sums=('SKIP')
-
-pkgver() {
- cd "$pkgname"
-
- git describe --tags | sed 's/^v//'
-}
-
-build() {
- cd "$pkgname"
-
- python -m build --wheel --no-isolation
-}
-
-check() {
- cd "$pkgname"
-
- # integration tests are sketchy
- pytest -v tests/test_unit.py
-}
-
-package() {
- cd "$pkgname"
-
- python -m installer --destdir="$pkgdir" dist/*.whl
-
- # license
- install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-}
Copied: python-poetry-dynamic-versioning/repos/community-any/PKGBUILD (from rev
1460052, python-poetry-dynamic-versioning/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-05-12 03:12:34 UTC (rev 1460053)
@@ -0,0 +1,57 @@
+# Maintainer: George Rawlinson <[email protected]>
+
+pkgname=python-poetry-dynamic-versioning
+pkgver=0.21.4
+pkgrel=1
+pkgdesc='Plugin for Poetry to enable dynamic versioning based on VCS tags'
+arch=('any')
+url='https://github.com/mtkennerly/poetry-dynamic-versioning'
+license=('MIT')
+depends=(
+ 'python'
+ 'python-dunamai'
+ 'python-tomlkit'
+ 'python-jinja'
+ 'python-poetry'
+)
+makedepends=(
+ 'git'
+ 'python-build'
+ 'python-installer'
+ 'python-poetry-core'
+)
+checkdepends=(
+ 'python-pytest'
+ 'python-pytest-cov'
+)
+_commit='dcfcbb7519d790c7934cc3e204bab7f9de187b02'
+source=("$pkgname::git+$url#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+ cd "$pkgname"
+
+ git describe --tags | sed 's/^v//'
+}
+
+build() {
+ cd "$pkgname"
+
+ python -m build --wheel --no-isolation
+}
+
+check() {
+ cd "$pkgname"
+
+ # integration tests are sketchy
+ pytest -v tests/test_unit.py
+}
+
+package() {
+ cd "$pkgname"
+
+ python -m installer --destdir="$pkgdir" dist/*.whl
+
+ # license
+ install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}