aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSertonix <sertonix@posteo.net>2024-03-27 17:19:48 +0100
committerNatanael Copa <ncopa@alpinelinux.org>2024-03-29 11:10:24 +0000
commit3f2db107bb6e8cd7426f16ba65f95c351f190ec4 (patch)
treec780b86a202eea569c2275bcf9b14ce54054a9d5
parentc36660eaf13623a4a5eb327ec1ea8442e79b072c (diff)
*/*: remove digit+letter+digit version formatHEADmaster
-rw-r--r--community/librasterlite2/APKBUILD4
-rw-r--r--community/opensmtpd/APKBUILD5
-rw-r--r--community/owfs/APKBUILD6
-rw-r--r--community/py3-django-oscar-promotions/APKBUILD6
-rw-r--r--community/stig/APKBUILD7
-rw-r--r--community/tcptraceroute/APKBUILD4
-rw-r--r--main/aspell-ru/APKBUILD4
-rw-r--r--testing/libhomfly/APKBUILD6
-rw-r--r--testing/libvmime/APKBUILD9
-rw-r--r--testing/ovos-audio/APKBUILD7
-rw-r--r--testing/ovos-core/APKBUILD7
-rw-r--r--testing/ovos-gui/APKBUILD7
-rw-r--r--testing/ovos-phal/APKBUILD8
-rw-r--r--testing/ovos-skill-hello-world/APKBUILD8
-rw-r--r--testing/php82-pecl-runkit7/APKBUILD8
-rw-r--r--testing/py3-django-compress-staticfiles/APKBUILD6
-rw-r--r--testing/py3-landlock/APKBUILD4
-rw-r--r--testing/py3-lingua-franca/APKBUILD8
-rw-r--r--testing/py3-ovos-backend-client/APKBUILD6
-rw-r--r--testing/py3-ovos-classifiers/APKBUILD8
-rw-r--r--testing/py3-ovos-ocp-audio-plugin/APKBUILD8
-rw-r--r--testing/py3-ovos-ocp-m3u-plugin/APKBUILD8
-rw-r--r--testing/py3-ovos-stt-plugin-server/APKBUILD8
-rw-r--r--testing/py3-ovos-tts-plugin-mimic3-server/APKBUILD8
-rw-r--r--testing/py3-ovos-workshop/APKBUILD8
-rw-r--r--testing/py3-ward/APKBUILD8
-rw-r--r--testing/tachyon/APKBUILD7
27 files changed, 96 insertions, 87 deletions
diff --git a/community/librasterlite2/APKBUILD b/community/librasterlite2/APKBUILD
index f0ac186c5ae..96d39864513 100644
--- a/community/librasterlite2/APKBUILD
+++ b/community/librasterlite2/APKBUILD
@@ -1,8 +1,8 @@
# Contributor: Holger Jaekel <holger.jaekel@gmx.de>
# Maintainer: Holger Jaekel <holger.jaekel@gmx.de>
pkgname=librasterlite2
-pkgver=1.1.0b1
-_pkgver="${pkgver//b1/-beta1}"
+pkgver=1.1.0_beta1
+_pkgver="${pkgver//_/-}"
pkgrel=7
pkgdesc="Library for storing and retrieving huge raster coverages using a SpatiaLite DBMS"
url="https://www.gaia-gis.it/fossil/librasterlite2/index"
diff --git a/community/opensmtpd/APKBUILD b/community/opensmtpd/APKBUILD
index 2e710fb889f..984e50f202b 100644
--- a/community/opensmtpd/APKBUILD
+++ b/community/opensmtpd/APKBUILD
@@ -7,7 +7,7 @@
# 6.6.2p1-r0:
# - CVE-2020-7247
pkgname=opensmtpd
-pkgver=7.4.0p1
+pkgver=7.4.0_p1
pkgrel=1
pkgdesc="Secure, reliable, lean, and easy-to configure SMTP server"
url="https://www.opensmtpd.org/"
@@ -28,7 +28,7 @@ makedepends="
"
install="$pkgname.pre-install"
subpackages="$pkgname-dbg $pkgname-pam $pkgname-openrc $pkgname-doc"
-source="https://www.opensmtpd.org/archives/opensmtpd-$pkgver.tar.gz
+source="https://www.opensmtpd.org/archives/opensmtpd-${pkgver//_/}.tar.gz
smtpd.conf.patch
smtpd.initd
smtpd.confd
@@ -37,6 +37,7 @@ source="https://www.opensmtpd.org/archives/opensmtpd-$pkgver.tar.gz
configure-mantype.patch
"
options="suid !check"
+builddir=$srcdir/opensmtpd-${pkgver//_/}
prepare() {
default_prepare
diff --git a/community/owfs/APKBUILD b/community/owfs/APKBUILD
index 3b44ca266df..598f0c100cd 100644
--- a/community/owfs/APKBUILD
+++ b/community/owfs/APKBUILD
@@ -1,7 +1,8 @@
# Contributor: Michael Lyngbol <michael@lyngbol.dk>
# Maintainer: Michael Lyngbol <michael@lyngbol.dk>
pkgname=owfs
-pkgver=3.2p4
+pkgver=3.2_p4
+_pkgver=${pkgver//_/}
pkgrel=0
pkgdesc="OWFS — the one-wire filesystem"
url="https://github.com/owfs/owfs-doc/wiki"
@@ -9,8 +10,9 @@ arch="all"
license="GPL-2.0-only"
makedepends="fuse-dev linux-headers"
subpackages="$pkgname-dev $pkgname-doc"
-source="https://github.com/owfs/owfs/releases/download/v$pkgver/owfs-$pkgver.tar.gz"
+source="https://github.com/owfs/owfs/releases/download/v$_pkgver/owfs-$_pkgver.tar.gz"
options="!check" # no testsuite
+builddir=$srcdir/owfs-$_pkgver
build() {
./configure \
diff --git a/community/py3-django-oscar-promotions/APKBUILD b/community/py3-django-oscar-promotions/APKBUILD
index 81969402a4e..384d50ca003 100644
--- a/community/py3-django-oscar-promotions/APKBUILD
+++ b/community/py3-django-oscar-promotions/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kaarle Ritvanen <kunkku@alpinelinux.org>
# Maintainer: Kaarle Ritvanen <kunkku@alpinelinux.org>
pkgname=py3-django-oscar-promotions
-pkgver=1.0.0b1
+pkgver=1.0.0_beta1
pkgrel=5
pkgdesc="Promotions for Django Oscar"
url="http://oscarcommerce.com/"
@@ -10,10 +10,10 @@ license="BSD-3-Clause"
depends="py3-django-oscar"
makedepends="py3-setuptools"
subpackages="$pkgname-pyc"
-source="https://files.pythonhosted.org/packages/source/d/django-oscar-promotions/django-oscar-promotions-$pkgver.tar.gz
+source="https://files.pythonhosted.org/packages/source/d/django-oscar-promotions/django-oscar-promotions-${pkgver//_beta/b}.tar.gz
django-4.patch
"
-builddir="$srcdir/django-oscar-promotions-$pkgver"
+builddir="$srcdir/django-oscar-promotions-${pkgver//_beta/b}"
build() {
python3 setup.py build
diff --git a/community/stig/APKBUILD b/community/stig/APKBUILD
index ebae03e0084..18617faf213 100644
--- a/community/stig/APKBUILD
+++ b/community/stig/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Anjandev Momi <anjan@momi.ca>
# Maintainer: Anjandev Momi <anjan@momi.ca>
pkgname=stig
-pkgver=0.12.5a0
+pkgver=0.12.5_alpha0
pkgrel=0
pkgdesc="TUI and CLI client for the BitTorrent client Transmission"
url="https://github.com/rndusr/stig"
@@ -10,8 +10,9 @@ license="GPL-3.0-or-later"
depends="python3 py3-urwid py3-urwidtrees py3-aiohttp py3-async-timeout py3-xdg py3-blinker py3-natsort py3-setproctitle"
makedepends="py3-setuptools"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/rndusr/stig/archive/refs/tags/v$pkgver.tar.gz"
+source="$pkgname-$pkgver.tar.gz::https://github.com/rndusr/stig/archive/refs/tags/v${pkgver//_alpha/a}.tar.gz"
options="!check" # py3-asynctest library is not compatible with Python 3.8 and above. See https://github.com/rndusr/stig/issues/206
+builddir=$srcdir/stig-${pkgver//_alpha/a}
build() {
python3 setup.py build
@@ -22,5 +23,5 @@ package() {
}
sha512sums="
-f4e0a978664cea8ed5d645c1fe3cb01c07105262b1531b9ee89c3d0f2351c284479881eb3e89f7b940f319bcc28965dae1ea5cc64875d245b9810042b82be397 stig-0.12.5a0.tar.gz
+f4e0a978664cea8ed5d645c1fe3cb01c07105262b1531b9ee89c3d0f2351c284479881eb3e89f7b940f319bcc28965dae1ea5cc64875d245b9810042b82be397 stig-0.12.5_alpha0.tar.gz
"
diff --git a/community/tcptraceroute/APKBUILD b/community/tcptraceroute/APKBUILD
index 458b8776901..11c519bfb60 100644
--- a/community/tcptraceroute/APKBUILD
+++ b/community/tcptraceroute/APKBUILD
@@ -1,7 +1,7 @@
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=tcptraceroute
-pkgver=1.5b7
-_ver=${pkgver/b/beta}
+pkgver=1.5_beta7
+_ver=${pkgver//_/}
pkgrel=4
pkgdesc="Display route path using TCP probes"
url="https://github.com/mct/tcptraceroute"
diff --git a/main/aspell-ru/APKBUILD b/main/aspell-ru/APKBUILD
index ab15085bef1..90dd70cf860 100644
--- a/main/aspell-ru/APKBUILD
+++ b/main/aspell-ru/APKBUILD
@@ -1,10 +1,10 @@
# Contributor: Valery Kartel <valery.kartel@gmail.com>
# Maintainer: Valery Kartel <valery.kartel@gmail.com>
pkgname=aspell-ru
-pkgver=0.99f7
+pkgver=0.99_p7
pkgrel=2
_lang=${pkgname##*-}
-_name=${pkgname%%-*}6-$_lang-$pkgver-1
+_name=${pkgname%%-*}6-$_lang-${pkgver//_p/f}-1
pkgdesc="Russian dictionary for aspell"
url="http://aspell.net/"
arch="noarch"
diff --git a/testing/libhomfly/APKBUILD b/testing/libhomfly/APKBUILD
index f0479919bf3..a8ca960e50e 100644
--- a/testing/libhomfly/APKBUILD
+++ b/testing/libhomfly/APKBUILD
@@ -1,7 +1,8 @@
# Contributor: Grigory Kirillov <txgk@bk.ru>
# Maintainer:
pkgname=libhomfly
-pkgver=1.02r6
+pkgver=1.02_p6
+_pkgver=${pkgver//_p/r}
pkgrel=1
pkgdesc="Library to compute the homfly polynomial of a link"
url="https://github.com/miguelmarco/libhomfly"
@@ -9,7 +10,8 @@ arch="all"
license="Unlicense"
makedepends="gc-dev"
subpackages="$pkgname-dev"
-source="https://github.com/miguelmarco/libhomfly/releases/download/$pkgver/libhomfly-$pkgver.tar.gz"
+source="https://github.com/miguelmarco/libhomfly/releases/download/$_pkgver/libhomfly-$_pkgver.tar.gz"
+builddir=$srcdir/libhomfly-$_pkgver
build() {
export CFLAGS="${CFLAGS/-Os/-O3}" # gotta go fast
diff --git a/testing/libvmime/APKBUILD b/testing/libvmime/APKBUILD
index eb9f78fa822..80ecd5cca6f 100644
--- a/testing/libvmime/APKBUILD
+++ b/testing/libvmime/APKBUILD
@@ -1,6 +1,7 @@
# Maintainer: Noel Kuntze <noel.kuntze@thermi.consulting>
pkgname=libvmime
-pkgver=0.9.2k4
+pkgver=0.9.2_p4
+_pkgver=${pkgver//_p/k}
pkgrel=10
pkgdesc="Library for working with RFC 5322, MIME messages and IMAP/POP/SMTP"
# ftbfs
@@ -22,12 +23,12 @@ makedepends="
"
checkdepends="icu-data-full"
subpackages="$pkgname-dbg $pkgname-dev"
-source="libvmime-$pkgver.tar.gz::https://github.com/Kopano-dev/vmime/archive/v$pkgver.tar.gz
+source="libvmime-$pkgver.tar.gz::https://github.com/Kopano-dev/vmime/archive/v$_pkgver.tar.gz
fix-icu-70-1.patch
gsasl-2.2.0.patch::https://github.com/kisli/vmime/commit/c750e899b8b3a76379167148468e164b7e52f6e2.patch
"
-builddir="$srcdir/vmime-$pkgver"
+builddir="$srcdir/vmime-$_pkgver"
# can't build in other directory because cmake config is broken here.
# library will not exist at package time.
@@ -50,7 +51,7 @@ package() {
}
sha512sums="
-90ebce51151944fe9cf09a8385b4ffe4db199c87e79579f66d70221f45a4bf4b048f3115077cff83536119af40ebe89eddacc301b54b7fb017438f44bd0f273c libvmime-0.9.2k4.tar.gz
+90ebce51151944fe9cf09a8385b4ffe4db199c87e79579f66d70221f45a4bf4b048f3115077cff83536119af40ebe89eddacc301b54b7fb017438f44bd0f273c libvmime-0.9.2_p4.tar.gz
65c0c1ec56a9a56167bb8b18e01feee4ea65fa958f5e2f233aa13d0472a803574d8b2751b2e6011edcd1db119f91c66e2401fd4916eecbb3af04dc2e527c125c fix-icu-70-1.patch
6a07daff1b3830a913df722ed736465e8bbe022ee18b3ba1b704d58d3db16d8bbaeba5daa2e0705792b69aa2ced96b7d3c21a5e43a87b6585eaa318db069054e gsasl-2.2.0.patch
"
diff --git a/testing/ovos-audio/APKBUILD b/testing/ovos-audio/APKBUILD
index 595900e3037..752fef2d415 100644
--- a/testing/ovos-audio/APKBUILD
+++ b/testing/ovos-audio/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=ovos-audio
-pkgver=0.0.2a13
+pkgver=0.0.2_alpha13
pkgrel=0
pkgdesc="ovos-core metapackage for audio daemon "
url="https://github.com/OpenVoiceOS/ovos-audio"
@@ -28,7 +28,8 @@ checkdepends="
py3-pytest
"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-audio/archive/refs/tags/V$pkgver.tar.gz"
+source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-audio/archive/refs/tags/V${pkgver//_alpha/a}.tar.gz"
+builddir=$srcdir/ovos-audio-${pkgver//_alpha/a}
build() {
gpep517 build-wheel \
@@ -48,5 +49,5 @@ package() {
}
sha512sums="
-ff87bc8506843825a2766932f0b83a4ba72754e175d94175c01fb772193ef9372130807e7d5d931f5ba3ef406b522a094d4a965f5a05926ccda8d308f36d4d69 ovos-audio-0.0.2a13.tar.gz
+ff87bc8506843825a2766932f0b83a4ba72754e175d94175c01fb772193ef9372130807e7d5d931f5ba3ef406b522a094d4a965f5a05926ccda8d308f36d4d69 ovos-audio-0.0.2_alpha13.tar.gz
"
diff --git a/testing/ovos-core/APKBUILD b/testing/ovos-core/APKBUILD
index 03e38ad5476..17099f11a3a 100644
--- a/testing/ovos-core/APKBUILD
+++ b/testing/ovos-core/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=ovos-core
-pkgver=0.0.8a24
+pkgver=0.0.8_alpha24
pkgrel=0
pkgdesc="OVOS Core, the OVOS Artificial Intelligence platform"
url="https://github.com/OpenVoiceOS/ovos-core/"
@@ -31,10 +31,11 @@ makedepends="
"
checkdepends="py3-pytest"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-core/archive/refs/tags/V$pkgver.tar.gz
+source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-core/archive/refs/tags/V${pkgver//_alpha/a}.tar.gz
profile.sh
ovos.conf
"
+builddir=$srcdir/ovos-core-${pkgver//_alpha/a}
# Net is required for tests
# Some tests are broken still, will be enabled later
options="!check"
@@ -62,7 +63,7 @@ package() {
install -Dm644 "$srcdir"/profile.sh "$pkgdir"/etc/profile.d/ovos.sh
}
sha512sums="
-c0e7bbad76b5de655ed4d14ce4b84d4a7061f34de3aebc2335f8b14b08eae5ef4090e05ca81444249d3818ff2e1caa9bb9289753fbb17b663e9cd094a7a0458e ovos-core-0.0.8a24.tar.gz
+c0e7bbad76b5de655ed4d14ce4b84d4a7061f34de3aebc2335f8b14b08eae5ef4090e05ca81444249d3818ff2e1caa9bb9289753fbb17b663e9cd094a7a0458e ovos-core-0.0.8_alpha24.tar.gz
c3d1a605a0b574c8e2c4031f592bdbf023f5ed9b2e1ba0cea38cf79278331f245dbe4e220e7f81de73fe612ffd722253805058dae04ba89c3d01c361b329e4ef profile.sh
889b668be450db9c27d7d9f3b00bbcd9a2882f8a4c129cdc5c94ab21490e85acddfd914496447f5f011713c2ecd5b1cafbf13a5948677d9ff82eb5e478faf47a ovos.conf
"
diff --git a/testing/ovos-gui/APKBUILD b/testing/ovos-gui/APKBUILD
index af4a01d8906..0f36e8a709c 100644
--- a/testing/ovos-gui/APKBUILD
+++ b/testing/ovos-gui/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=ovos-gui
-pkgver=0.0.3a5
+pkgver=0.0.3_alpha5
pkgrel=0
pkgdesc="ovos-core metapackage for gui daemon"
url="https://github.com/OpenVoiceOS/ovos-gui"
@@ -21,7 +21,8 @@ makedepends="
"
checkdepends="py3-pytest"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-gui/archive/refs/tags/V$pkgver.tar.gz"
+source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-gui/archive/refs/tags/V${pkgver//_alpha/a}.tar.gz"
+builddir=$srcdir/ovos-gui-${pkgver//_alpha/a}
build() {
gpep517 build-wheel \
@@ -41,5 +42,5 @@ package() {
}
sha512sums="
-1cb8ceba3ad53dfde671b492a76bd3b3d24560a598fccc80d8254dde35e7d8b2b9446cdd56b1e8042c72695841af83a5bd7b3ee121a387f0a89213719b431ebb ovos-gui-0.0.3a5.tar.gz
+1cb8ceba3ad53dfde671b492a76bd3b3d24560a598fccc80d8254dde35e7d8b2b9446cdd56b1e8042c72695841af83a5bd7b3ee121a387f0a89213719b431ebb ovos-gui-0.0.3_alpha5.tar.gz
"
diff --git a/testing/ovos-phal/APKBUILD b/testing/ovos-phal/APKBUILD
index f95c07f4dca..383446c3442 100644
--- a/testing/ovos-phal/APKBUILD
+++ b/testing/ovos-phal/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=ovos-phal
-pkgver=0.0.5a6
+pkgver=0.0.5_alpha6
pkgrel=0
pkgdesc="Plugin based Hardware Abstraction Layer for OVOS"
url="https://github.com/OpenVoiceOS/ovos-PHAL"
@@ -29,8 +29,8 @@ checkdepends="
py3-pytest
"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-PHAL/archive/refs/tags/V$pkgver.tar.gz"
-builddir="$srcdir/ovos-PHAL-$pkgver"
+source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-PHAL/archive/refs/tags/V${pkgver//_alpha/a}.tar.gz"
+builddir="$srcdir/ovos-PHAL-${pkgver//_alpha/a}"
build() {
gpep517 build-wheel \
@@ -50,5 +50,5 @@ package() {
}
sha512sums="
-860d0e763a9caa87defd985eaa4663c1d194e41a6dbb22dbcfe42e3bb40245832caa25ce07915b5469e35ce2aaa09ffb8f52a392fedec55b946ee47f6a1eefa3 ovos-phal-0.0.5a6.tar.gz
+860d0e763a9caa87defd985eaa4663c1d194e41a6dbb22dbcfe42e3bb40245832caa25ce07915b5469e35ce2aaa09ffb8f52a392fedec55b946ee47f6a1eefa3 ovos-phal-0.0.5_alpha6.tar.gz
"
diff --git a/testing/ovos-skill-hello-world/APKBUILD b/testing/ovos-skill-hello-world/APKBUILD
index a54827aaa1a..100f0d415cd 100644
--- a/testing/ovos-skill-hello-world/APKBUILD
+++ b/testing/ovos-skill-hello-world/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=ovos-skill-hello-world
-pkgver=0.0.4a3
+pkgver=0.0.4_alpha3
pkgrel=0
pkgdesc="Introductory Skill so that Skill Authors can see how an OVOS Skill is put together"
url="https://github.com/OpenVoiceOS/skill-ovos-hello-world"
@@ -19,9 +19,9 @@ makedepends="
"
checkdepends="py3-pytest"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/skill-ovos-hello-world/archive/refs/tags/V$pkgver.tar.gz"
+source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/skill-ovos-hello-world/archive/refs/tags/V${pkgver//_alpha/a}.tar.gz"
options="!check" # No tests
-builddir="$srcdir/skill-ovos-hello-world-$pkgver"
+builddir="$srcdir/skill-ovos-hello-world-${pkgver//_alpha/a}"
build() {
gpep517 build-wheel \
@@ -35,5 +35,5 @@ package() {
}
sha512sums="
-af103a0c9d09f8e178d4da234eca133023b4ff813e4f8203c9eac9dce974684bf9c42c25d640027b8d01f6adf23a1921c9a1ba8233b1c3e8e2d887235fd3f85b ovos-skill-hello-world-0.0.4a3.tar.gz
+af103a0c9d09f8e178d4da234eca133023b4ff813e4f8203c9eac9dce974684bf9c42c25d640027b8d01f6adf23a1921c9a1ba8233b1c3e8e2d887235fd3f85b ovos-skill-hello-world-0.0.4_alpha3.tar.gz
"
diff --git a/testing/php82-pecl-runkit7/APKBUILD b/testing/php82-pecl-runkit7/APKBUILD
index 17fce9e8598..26608f9ed5c 100644
--- a/testing/php82-pecl-runkit7/APKBUILD
+++ b/testing/php82-pecl-runkit7/APKBUILD
@@ -1,7 +1,7 @@
# Maintainer: Andy Postnikov <apostnikov@gmail.com>
pkgname=php82-pecl-runkit7
_extname=runkit7
-pkgver=4.0.0a6
+pkgver=4.0.0_alpha6
pkgrel=1
pkgdesc="PHP 8.2 extension for replace, rename, and remove user defined functions, methods, and constants - PECL"
url="https://pecl.php.net/package/runkit7"
@@ -11,8 +11,8 @@ _phpv=82
_php=php$_phpv
depends="$_php-common"
makedepends="$_php-dev"
-source="php-pecl-$_extname-$pkgver.tgz::https://pecl.php.net/get/$_extname-$pkgver.tgz"
-builddir="$srcdir/$_extname-$pkgver"
+source="php-pecl-$_extname-$pkgver.tgz::https://pecl.php.net/get/$_extname-${pkgver//_alpha/a}.tgz"
+builddir="$srcdir/$_extname-${pkgver//_alpha/a}"
build() {
phpize$_phpv
@@ -33,5 +33,5 @@ package() {
}
sha512sums="
-fd54b395ab07806035d18ba4efa4337304c345d8800063755c94b0b776b254b41ed7932ca0a9e366fe8f0a8e4e184355ed2e1b3452fbe3c45e6fa28750aa956e php-pecl-runkit7-4.0.0a6.tgz
+fd54b395ab07806035d18ba4efa4337304c345d8800063755c94b0b776b254b41ed7932ca0a9e366fe8f0a8e4e184355ed2e1b3452fbe3c45e6fa28750aa956e php-pecl-runkit7-4.0.0_alpha6.tgz
"
diff --git a/testing/py3-django-compress-staticfiles/APKBUILD b/testing/py3-django-compress-staticfiles/APKBUILD
index dd52168c944..51a36b05632 100644
--- a/testing/py3-django-compress-staticfiles/APKBUILD
+++ b/testing/py3-django-compress-staticfiles/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Alex Denes <caskd@redxen.eu>
_pkgname=django-compress-staticfiles
pkgname="py3-$_pkgname"
-pkgver=1.0.1b0
+pkgver=1.0.1_beta0
pkgrel=3
pkgdesc="Django static files storage backend inheriting from ManifestFilesMixin and StaticFilesStorage"
url="https://github.com/armandtvz/django-compress-staticfiles"
@@ -16,8 +16,8 @@ depends="
makedepends="py3-setuptools_scm"
checkdepends="py3-django-utils-six"
subpackages="$pkgname-pyc"
-source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
-builddir="$srcdir/$_pkgname-$pkgver"
+source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-${pkgver//_beta/b}.tar.gz"
+builddir="$srcdir/$_pkgname-${pkgver//_beta/b}"
options="!check" # requires py3-django-utils-six
build() {
diff --git a/testing/py3-landlock/APKBUILD b/testing/py3-landlock/APKBUILD
index 66c65c72140..559263f42c5 100644
--- a/testing/py3-landlock/APKBUILD
+++ b/testing/py3-landlock/APKBUILD
@@ -1,7 +1,7 @@
# Maintainer:
pkgname=py3-landlock
-pkgver=1.0.0d4
-_pkgver="${pkgver//d/.dev}"
+pkgver=1.0.0_pre4
+_pkgver="${pkgver//_pre/.dev}"
pkgrel=1
pkgdesc="Python interface to the Landlock Linux Security Module"
url="https://github.com/Edward-Knight/landlock"
diff --git a/testing/py3-lingua-franca/APKBUILD b/testing/py3-lingua-franca/APKBUILD
index 76c52e3ab20..33254c4b55d 100644
--- a/testing/py3-lingua-franca/APKBUILD
+++ b/testing/py3-lingua-franca/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-lingua-franca
-pkgver=0.4.8a3
+pkgver=0.4.8_alpha3
pkgrel=0
pkgdesc="Mycroft's multilingual text parsing and formatting library"
url="https://github.com/OpenVoiceOS/ovos-lingua-franca"
@@ -21,8 +21,8 @@ makedepends="
"
checkdepends="py3-pytest"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-lingua-franca/archive/refs/tags/V$pkgver.tar.gz"
-builddir="$srcdir/ovos-lingua-franca-$pkgver"
+source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-lingua-franca/archive/refs/tags/V${pkgver//_alpha/a}.tar.gz"
+builddir="$srcdir/ovos-lingua-franca-${pkgver//_alpha/a}"
build() {
gpep517 build-wheel \
@@ -42,5 +42,5 @@ package() {
}
sha512sums="
-fce6e1aa17215110cc18c8d8a620aab63549492813dfdbe263ba7bc60748108476af7fb28d9b65dfcea46e009c469bb1410ffe752651649966fc3d4909d15d46 py3-lingua-franca-0.4.8a3.tar.gz
+fce6e1aa17215110cc18c8d8a620aab63549492813dfdbe263ba7bc60748108476af7fb28d9b65dfcea46e009c469bb1410ffe752651649966fc3d4909d15d46 py3-lingua-franca-0.4.8_alpha3.tar.gz
"
diff --git a/testing/py3-ovos-backend-client/APKBUILD b/testing/py3-ovos-backend-client/APKBUILD
index f861d869042..c89ffb42aba 100644
--- a/testing/py3-ovos-backend-client/APKBUILD
+++ b/testing/py3-ovos-backend-client/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-ovos-backend-client
-pkgver=0.1.0a13
+pkgver=0.1.0_alpha13
pkgrel=0
pkgdesc="Unofficial python api for interaction with https://api.mycroft.ai"
url="https://github.com/OpenVoiceOS/ovos-backend-client"
@@ -23,8 +23,8 @@ makedepends="
"
checkdepends="py3-pytest"
subpackages="$pkgname-pyc"
-source="https://github.com/OpenVoiceOS/ovos-backend-client/archive/V$pkgver/ovos-backend-client-$pkgver.tar.gz"
-builddir="$srcdir/ovos-backend-client-$pkgver"
+source="https://github.com/OpenVoiceOS/ovos-backend-client/archive/V${pkgver//_alpha/a}/ovos-backend-client-${pkgver//_alpha/a}.tar.gz"
+builddir="$srcdir/ovos-backend-client-${pkgver//_alpha/a}"
build() {
gpep517 build-wheel \
diff --git a/testing/py3-ovos-classifiers/APKBUILD b/testing/py3-ovos-classifiers/APKBUILD
index e1ac1c84be6..a0dee40e9e2 100644
--- a/testing/py3-ovos-classifiers/APKBUILD
+++ b/testing/py3-ovos-classifiers/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-ovos-classifiers
-pkgver=0.0.0a37
+pkgver=0.0.0_alpha37
pkgrel=0
pkgdesc="Open during construction"
url="https://github.com/OpenVoiceOS/ovos-classifiers"
@@ -23,8 +23,8 @@ checkdepends="
py3-pytest
"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-classifiers/archive/refs/tags/V$pkgver.tar.gz"
-builddir="$srcdir/ovos-classifiers-$pkgver"
+source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-classifiers/archive/refs/tags/V${pkgver//_alpha/a}.tar.gz"
+builddir="$srcdir/ovos-classifiers-${pkgver//_alpha/a}"
build() {
gpep517 build-wheel \
@@ -46,5 +46,5 @@ package() {
}
sha512sums="
-f81a49f0711cb1f033300beefea7c211b147e095b8a0d00b18b4ea54a6e7cf2dcc586414a3b3e737189f058d72218f354e5e618f7af2e0539ab5f4fdf4fe84b5 py3-ovos-classifiers-0.0.0a37.tar.gz
+f81a49f0711cb1f033300beefea7c211b147e095b8a0d00b18b4ea54a6e7cf2dcc586414a3b3e737189f058d72218f354e5e618f7af2e0539ab5f4fdf4fe84b5 py3-ovos-classifiers-0.0.0_alpha37.tar.gz
"
diff --git a/testing/py3-ovos-ocp-audio-plugin/APKBUILD b/testing/py3-ovos-ocp-audio-plugin/APKBUILD
index 854077d7c70..7633cb5e2a7 100644
--- a/testing/py3-ovos-ocp-audio-plugin/APKBUILD
+++ b/testing/py3-ovos-ocp-audio-plugin/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-ovos-ocp-audio-plugin
-pkgver=0.0.6a2
+pkgver=0.0.6_alpha2
pkgrel=1
pkgdesc="A full-fledged voice media player packaged as a Mycroft audio plugin"
url="https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin"
@@ -26,10 +26,10 @@ makedepends="
"
checkdepends="py3-pytest"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/archive/refs/tags/V$pkgver.tar.gz"
+source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/archive/refs/tags/V${pkgver//_alpha/a}.tar.gz"
# Hangs on collecting tests
options="!check"
-builddir="$srcdir/ovos-ocp-audio-plugin-$pkgver"
+builddir="$srcdir/ovos-ocp-audio-plugin-${pkgver//_alpha/a}"
build() {
gpep517 build-wheel \
@@ -57,5 +57,5 @@ package() {
}
sha512sums="
-90eb290c4c16cd471e12fc3431ea5229e4a0db909b782cc855cca223e47a3ba44ca90e0a86cc03f3b978803b3b3546bb370bdb9667ab91b5e3e5bc82f6b11998 py3-ovos-ocp-audio-plugin-0.0.6a2.tar.gz
+90eb290c4c16cd471e12fc3431ea5229e4a0db909b782cc855cca223e47a3ba44ca90e0a86cc03f3b978803b3b3546bb370bdb9667ab91b5e3e5bc82f6b11998 py3-ovos-ocp-audio-plugin-0.0.6_alpha2.tar.gz
"
diff --git a/testing/py3-ovos-ocp-m3u-plugin/APKBUILD b/testing/py3-ovos-ocp-m3u-plugin/APKBUILD
index b8f17a72f91..0f57b4267a3 100644
--- a/testing/py3-ovos-ocp-m3u-plugin/APKBUILD
+++ b/testing/py3-ovos-ocp-m3u-plugin/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-ovos-ocp-m3u-plugin
-pkgver=0.0.2a1
+pkgver=0.0.2_alpha1
pkgrel=0
pkgdesc="ovos-core m3u plugin"
url="https://github.com/OpenVoiceOS/ovos-ocp-m3u-plugin"
@@ -14,9 +14,9 @@ makedepends="
py3-wheel
"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-ocp-m3u-plugin/archive/refs/tags/V$pkgver.tar.gz"
+source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-ocp-m3u-plugin/archive/refs/tags/V${pkgver//_alpha/a}.tar.gz"
options="!check" # No tests
-builddir="$srcdir/ovos-ocp-m3u-plugin-$pkgver"
+builddir="$srcdir/ovos-ocp-m3u-plugin-${pkgver//_alpha/a}"
build() {
gpep517 build-wheel \
@@ -30,5 +30,5 @@ package() {
}
sha512sums="
-abb92e3cf319a22eb803d8789277b317d65492419993ab6e2486abbd91587404b8d5230c4125dd0554730644a3e5be1be49de127b7fc57b3ca8cd9833ea274fa py3-ovos-ocp-m3u-plugin-0.0.2a1.tar.gz
+abb92e3cf319a22eb803d8789277b317d65492419993ab6e2486abbd91587404b8d5230c4125dd0554730644a3e5be1be49de127b7fc57b3ca8cd9833ea274fa py3-ovos-ocp-m3u-plugin-0.0.2_alpha1.tar.gz
"
diff --git a/testing/py3-ovos-stt-plugin-server/APKBUILD b/testing/py3-ovos-stt-plugin-server/APKBUILD
index 24370f70a8a..eb5855453a2 100644
--- a/testing/py3-ovos-stt-plugin-server/APKBUILD
+++ b/testing/py3-ovos-stt-plugin-server/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-ovos-stt-plugin-server
-pkgver=0.0.4a4
+pkgver=0.0.4_alpha4
pkgrel=0
pkgdesc="OpenVoiceOS companion plugin for OpenVoiceOS STT Server"
url="https://github.com/OpenVoiceOS/ovos-stt-plugin-server"
@@ -14,9 +14,9 @@ makedepends="
py3-wheel
"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-stt-plugin-server/archive/refs/tags/V$pkgver.tar.gz"
+source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-stt-plugin-server/archive/refs/tags/V${pkgver//_alpha/a}.tar.gz"
options="!check" # No tests
-builddir="$srcdir/ovos-stt-plugin-server-$pkgver"
+builddir="$srcdir/ovos-stt-plugin-server-${pkgver//_alpha/a}"
build() {
gpep517 build-wheel \
@@ -30,5 +30,5 @@ package() {
}
sha512sums="
-92794b6dc46f651dea89f67379609f6e1f793e13c6aa08ac50318b3c6d40f8a17a4d1c0eb584c71811aef5bacb9d7449c25043faf9d03cd27b1afdfd280eb8b2 py3-ovos-stt-plugin-server-0.0.4a4.tar.gz
+92794b6dc46f651dea89f67379609f6e1f793e13c6aa08ac50318b3c6d40f8a17a4d1c0eb584c71811aef5bacb9d7449c25043faf9d03cd27b1afdfd280eb8b2 py3-ovos-stt-plugin-server-0.0.4_alpha4.tar.gz
"
diff --git a/testing/py3-ovos-tts-plugin-mimic3-server/APKBUILD b/testing/py3-ovos-tts-plugin-mimic3-server/APKBUILD
index b57568510d0..14e4ab30c85 100644
--- a/testing/py3-ovos-tts-plugin-mimic3-server/APKBUILD
+++ b/testing/py3-ovos-tts-plugin-mimic3-server/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-ovos-tts-plugin-mimic3-server
-pkgver=0.0.2a4
+pkgver=0.0.2_alpha4
pkgrel=0
pkgdesc="OVOS Server TTS plugin for Mimic3"
url="https://github.com/OpenVoiceOS/ovos-tts-plugin-mimic3-server"
@@ -18,9 +18,9 @@ makedepends="
py3-wheel
"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-tts-plugin-mimic3-server/archive/refs/tags/V$pkgver.tar.gz"
+source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-tts-plugin-mimic3-server/archive/refs/tags/V${pkgver//_alpha/a}.tar.gz"
options="!check" # No tests
-builddir="$srcdir/ovos-tts-plugin-mimic3-server-$pkgver"
+builddir="$srcdir/ovos-tts-plugin-mimic3-server-${pkgver//_alpha/a}"
build() {
gpep517 build-wheel \
@@ -34,5 +34,5 @@ package() {
}
sha512sums="
-d6f3b3606f438c1b9b438e1b252bf2e61de751cf8d39192554c2cbfa6d77672d718e54746d2d04265045a084cb0a7718623e78cae07cd0b93492e1c80aaac3c7 py3-ovos-tts-plugin-mimic3-server-0.0.2a4.tar.gz
+d6f3b3606f438c1b9b438e1b252bf2e61de751cf8d39192554c2cbfa6d77672d718e54746d2d04265045a084cb0a7718623e78cae07cd0b93492e1c80aaac3c7 py3-ovos-tts-plugin-mimic3-server-0.0.2_alpha4.tar.gz
"
diff --git a/testing/py3-ovos-workshop/APKBUILD b/testing/py3-ovos-workshop/APKBUILD
index 670f8e8a5f7..061a5887f9a 100644
--- a/testing/py3-ovos-workshop/APKBUILD
+++ b/testing/py3-ovos-workshop/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-ovos-workshop
-pkgver=0.0.13a17
+pkgver=0.0.13_alpha17
pkgrel=0
pkgdesc="Frameworks, templates and patches for the mycroft universe "
url="https://github.com/OpenVoiceOS/OVOS-workshop"
@@ -27,9 +27,9 @@ checkdepends="
py3-pytest
"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-workshop/archive/refs/tags/$pkgver.tar.gz"
+source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVoiceOS/ovos-workshop/archive/refs/tags/${pkgver//_alpha/a}.tar.gz"
options="!check" # OVOS-utils
-builddir="$srcdir/OVOS-workshop-$pkgver"
+builddir="$srcdir/OVOS-workshop-${pkgver//_alpha/a}"
build() {
gpep517 build-wheel \
@@ -49,5 +49,5 @@ package() {
}
sha512sums="
-692c65a6d4b7d7a110949bbd5d76f3403d7c17179faabce922d4af4126e9fc0494a2bb80de397351089f31dc9ec66949ceee0276ef30abf9385d2e8dd6882ad1 py3-ovos-workshop-0.0.13a17.tar.gz
+692c65a6d4b7d7a110949bbd5d76f3403d7c17179faabce922d4af4126e9fc0494a2bb80de397351089f31dc9ec66949ceee0276ef30abf9385d2e8dd6882ad1 py3-ovos-workshop-0.0.13_alpha17.tar.gz
"
diff --git a/testing/py3-ward/APKBUILD b/testing/py3-ward/APKBUILD
index 153f1f0fd72..7f0c41740cb 100644
--- a/testing/py3-ward/APKBUILD
+++ b/testing/py3-ward/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-ward
-pkgver=0.67.0b0
+pkgver=0.67.0_beta0
pkgrel=1
pkgdesc="Modern test framework for Python"
url="https://ward.readthedocs.io/"
@@ -27,9 +27,9 @@ checkdepends="
py3-pytest
"
subpackages="$pkgname-pyc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/darrenburns/ward/archive/refs/tags/release/$pkgver.tar.gz"
+source="$pkgname-$pkgver.tar.gz::https://github.com/darrenburns/ward/archive/refs/tags/release/${pkgver//_beta/b}.tar.gz"
options="!check" # Pytest fails to find fixture "description"
-builddir="$srcdir/ward-release-$pkgver"
+builddir="$srcdir/ward-release-${pkgver//_beta/b}"
build() {
gpep517 build-wheel \
@@ -49,5 +49,5 @@ package() {
}
sha512sums="
-c94106da8123ec5a2aa32fc68c09ab14179c0226245c467755736b9c069d287326398ef95ba609c57468e5fb5d61dedbfcc6a18db351e556cd0914f6b8d5e5f6 py3-ward-0.67.0b0.tar.gz
+c94106da8123ec5a2aa32fc68c09ab14179c0226245c467755736b9c069d287326398ef95ba609c57468e5fb5d61dedbfcc6a18db351e556cd0914f6b8d5e5f6 py3-ward-0.67.0_beta0.tar.gz
"
diff --git a/testing/tachyon/APKBUILD b/testing/tachyon/APKBUILD
index fcf119a8c1a..88782ab5e58 100644
--- a/testing/tachyon/APKBUILD
+++ b/testing/tachyon/APKBUILD
@@ -1,17 +1,16 @@
# Contributor: Grigory Kirillov <txgk@bk.ru>
# Maintainer:
pkgname=tachyon
-pkgver=0.99b6
-_pkgver=0.99~b6
+pkgver=0.99_beta6
pkgrel=1
pkgdesc="Multithreaded ray tracing software"
url="https://web.archive.org/web/20220728040107/http://jedi.ks.uiuc.edu/~johns/raytracer"
arch="all"
license="BSD-3-Clause"
makedepends="jpeg-dev libpng-dev"
-source="https://archive.org/download/tachyon_${pkgver}dsx.orig.tar.xz/tachyon_${_pkgver}%2Bdsx.orig.tar.xz"
+source="https://archive.org/download/tachyon_${pkgver//_beta/b}dsx.orig.tar.xz/tachyon_${pkgver//_beta/~b}%2Bdsx.orig.tar.xz"
subpackages="$pkgname-scenes:_scenes"
-builddir="$srcdir/$pkgname-${_pkgver}+dsx.orig/unix"
+builddir="$srcdir/$pkgname-${pkgver//_beta/~b}+dsx.orig/unix"
case "$CARCH" in
armhf|armv7|x86) _target=linux-thr;;