Compare commits

..
2 Commits
Author SHA1 Message Date
wyj 712bf65121 new blfs: dev-python/trove-classifiers-2025.8.6.13 2025-12-27 03:41:58 -05:00
wyj ba0b1e204e new bblfs: dev-python/calver-2025.04.01 2025-12-27 03:41:36 -05:00
2 changed files with 48 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
pkgname=calver
pkgver=2025.04.01
pkgdesc="Setuptools extension for CalVer package versions"
homepage="https://github.com/di/calver"
license=('Apache-2.0')
arch=('any')
sources=("${pkgname}-${pkgver}.tar.gz")
#urls=("https://files.pythonhosted.org/packages/source/${pkgname:0:1}/${pkgname}/${sources[0]}")
urls=("https://github.com/di/calver/archive/refs/tags/${pkgver}.tar.gz")
md5sums=("305e056178a135ae7912c9e1ab848acc")
src_prepare() {
tar -xf ${distdir}/${sources[0]} --strip-components=1
}
src_build() {
python -m build --wheel --no-isolation
}
# check need pytest
src_install() {
python -m installer --destdir="$pkgdir" dist/*.whl
}
@@ -0,0 +1,24 @@
pkgname=trove-classifiers
pkgver=2025.8.6.13
pkgdesc="Canonical source for classifiers on PyPI (pypi.org)"
homepage="https://github.com/pypa/trove-classifiers"
license=('Apache-2.0')
arch=('any')
sources=("${pkgname/-/_}-${pkgver}.tar.gz")
urls=("https://files.pythonhosted.org/packages/source/${pkgname:0:1}/${pkgname}/${sources[0]}")
md5sums=("939166b6e238cdafdbe63becd398e906")
src_prepare() {
tar -xf ${distdir}/${sources[0]} --strip-components=1
#sed -i '/calver/s/^/#/;$iversion="${pkgver}"' setup.py
}
src_build() {
python -m build --wheel --no-isolation
}
# check need pytest, but trove-classifiers is needed by pytest
src_install() {
python -m installer --destdir="$pkgdir" dist/*.whl
}