Felix Yan pushed to branch main at Arch Linux / Packaging / Packages /
python-debtcollector
Commits:
e192ee1a by Felix Yan at 2026-03-05T01:06:07+08:00
upgpkg: 3.0.0-6
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,18 +1,19 @@
pkgbase = python-debtcollector
pkgdesc = A collection of Python deprecation patterns and strategies
that help you collect your technical debt in a non-destructive manner.
pkgver = 3.0.0
- pkgrel = 5
+ pkgrel = 6
url = https://docs.openstack.org/developer/debtcollector
arch = any
license = Apache-2.0
checkdepends = python-stestr
+ makedepends = git
makedepends = python-build
makedepends = python-installer
makedepends = python-pbr
makedepends = python-setuptools
makedepends = python-wheel
depends = python-wrapt
- source =
https://github.com/openstack/debtcollector/archive/3.0.0/python-debtcollector-3.0.0.tar.gz
- sha512sums =
f3e189b952db59e69dce79459b2a9cf0e795503b53bac9688a442dfcdecdd920477481e26bf552f88f0983d348f2605c176acefba5341066648e066f22f249f9
+ source = git+https://github.com/openstack/debtcollector.git#tag=3.0.0
+ sha512sums =
477af894df32fc783312e057bed32db820475e490c9fae51f44c693b0d226eb7505da22f14021bbe5854b832137ec2f8766e10529061d44cd1a3b9a564fda6e4
pkgname = python-debtcollector
=====================================
PKGBUILD
=====================================
@@ -2,30 +2,30 @@
pkgname=python-debtcollector
pkgver=3.0.0
-pkgrel=5
+pkgrel=6
arch=('any')
pkgdesc='A collection of Python deprecation patterns and strategies that help
you collect your technical debt in a non-destructive manner.'
url='https://docs.openstack.org/developer/debtcollector'
license=('Apache-2.0')
depends=('python-wrapt')
-makedepends=('python-build' 'python-installer' 'python-pbr'
'python-setuptools' 'python-wheel')
+makedepends=('git' 'python-build' 'python-installer' 'python-pbr'
'python-setuptools' 'python-wheel')
checkdepends=('python-stestr')
-source=("https://github.com/openstack/debtcollector/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('f3e189b952db59e69dce79459b2a9cf0e795503b53bac9688a442dfcdecdd920477481e26bf552f88f0983d348f2605c176acefba5341066648e066f22f249f9')
+source=("git+https://github.com/openstack/debtcollector.git#tag=$pkgver")
+sha512sums=('477af894df32fc783312e057bed32db820475e490c9fae51f44c693b0d226eb7505da22f14021bbe5854b832137ec2f8766e10529061d44cd1a3b9a564fda6e4')
export PBR_VERSION=$pkgver
build() {
- cd debtcollector-$pkgver
+ cd debtcollector
python -m build --wheel --no-isolation
}
check() {
- cd debtcollector-$pkgver
+ cd debtcollector
stestr run
}
package() {
- cd debtcollector-$pkgver
+ cd debtcollector
python -m installer --destdir="$pkgdir" dist/*.whl
}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/python-debtcollector/-/commit/e192ee1a20ac9002a03bea2b2af477614e042dc4
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/python-debtcollector/-/commit/e192ee1a20ac9002a03bea2b2af477614e042dc4
You're receiving this email because of your account on gitlab.archlinux.org.