Autogenerated commit at 2024-01-25 11:09:48.149419
This commit is contained in:
parent
056093b1a7
commit
b37a1c69f7
@ -1,6 +1,6 @@
|
||||
pkgbase = ahriman
|
||||
pkgdesc = ArcH linux ReposItory MANager
|
||||
pkgver = 2.12.2
|
||||
pkgver = 2.13.3
|
||||
pkgrel = 1
|
||||
url = https://github.com/arcan1s/ahriman
|
||||
install = ahriman.install
|
||||
@ -25,7 +25,6 @@ pkgbase = ahriman
|
||||
optdepends = python-aiohttp: web server
|
||||
optdepends = python-aiohttp-apispec>=3.0.0: web server
|
||||
optdepends = python-aiohttp-cors: web server
|
||||
optdepends = python-aiohttp-debugtoolbar: web server with enabled debug panel
|
||||
optdepends = python-aiohttp-jinja2: web server
|
||||
optdepends = python-aiohttp-security: web server with authorization
|
||||
optdepends = python-aiohttp-session: web server with authorization
|
||||
@ -38,10 +37,10 @@ pkgbase = ahriman
|
||||
optdepends = subversion: -svn packages support
|
||||
backup = etc/ahriman.ini
|
||||
backup = etc/ahriman.ini.d/logging.ini
|
||||
source = https://github.com/arcan1s/ahriman/releases/download/2.12.2/ahriman-2.12.2-src.tar.xz
|
||||
source = https://github.com/arcan1s/ahriman/releases/download/2.13.3/ahriman-2.13.3.tar.gz
|
||||
source = ahriman.sysusers
|
||||
source = ahriman.tmpfiles
|
||||
sha512sums = 7f42dac64436a7b83b777ae6d420e1d72fdf3c27de40a1da199ea437e6b6c9290699a5e0628bee4768b8e37509d842980d5223789e5c6866be722e76dd4e0aed
|
||||
sha512sums = 2a0c1ae5e8dc417b9a233fec5a26d34b840ade14830713e474862382159e721addf0c75cbf64b416a974aa8ba28c86b22ad4f7127880415be3912e1b125b7aaf
|
||||
sha512sums = b1dd772f8802be99ccba3add5f1e6f78e5e79d0967342668dd12e472651a6b91c342f11fba330caaca421cc3d6c7e2011e09a6bd131f8ba14bbc4a6206cce539
|
||||
sha512sums = ac22af25fc08f5bf1b9acbb77bbb6b2bb7af12d78ff1ae99463c16f36f1dd5ebae3af1413e353634aed5275af0eefee41257eded7987e67ae6a9411999d5a2ba
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Maintainer: Evgeniy Alekseev
|
||||
|
||||
pkgname='ahriman'
|
||||
pkgver=2.12.2
|
||||
pkgver=2.13.3
|
||||
pkgrel=1
|
||||
pkgdesc="ArcH linux ReposItory MANager"
|
||||
arch=('any')
|
||||
@ -16,7 +16,6 @@ optdepends=('breezy: -bzr packages support'
|
||||
'python-aiohttp: web server'
|
||||
'python-aiohttp-apispec>=3.0.0: web server'
|
||||
'python-aiohttp-cors: web server'
|
||||
'python-aiohttp-debugtoolbar: web server with enabled debug panel'
|
||||
'python-aiohttp-jinja2: web server'
|
||||
'python-aiohttp-security: web server with authorization'
|
||||
'python-aiohttp-session: web server with authorization'
|
||||
@ -27,7 +26,7 @@ optdepends=('breezy: -bzr packages support'
|
||||
'python-systemd: journal support'
|
||||
'rsync: sync by using rsync'
|
||||
'subversion: -svn packages support')
|
||||
source=("https://github.com/arcan1s/ahriman/releases/download/$pkgver/$pkgname-$pkgver-src.tar.xz"
|
||||
source=("https://github.com/arcan1s/ahriman/releases/download/$pkgver/$pkgname-$pkgver.tar.gz"
|
||||
'ahriman.sysusers'
|
||||
'ahriman.tmpfiles')
|
||||
install="$pkgname.install"
|
||||
@ -35,13 +34,13 @@ backup=('etc/ahriman.ini'
|
||||
'etc/ahriman.ini.d/logging.ini')
|
||||
|
||||
build() {
|
||||
cd "$pkgname"
|
||||
cd "$pkgname-$pkgver"
|
||||
|
||||
python -m build --wheel --no-isolation
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname"
|
||||
cd "$pkgname-$pkgver"
|
||||
|
||||
python -m installer --destdir="$pkgdir" "dist/$pkgname-$pkgver-py3-none-any.whl"
|
||||
|
||||
@ -56,6 +55,6 @@ package() {
|
||||
install -Dm644 "$srcdir/$pkgname.tmpfiles" "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
|
||||
}
|
||||
|
||||
sha512sums=('7f42dac64436a7b83b777ae6d420e1d72fdf3c27de40a1da199ea437e6b6c9290699a5e0628bee4768b8e37509d842980d5223789e5c6866be722e76dd4e0aed'
|
||||
sha512sums=('2a0c1ae5e8dc417b9a233fec5a26d34b840ade14830713e474862382159e721addf0c75cbf64b416a974aa8ba28c86b22ad4f7127880415be3912e1b125b7aaf'
|
||||
'b1dd772f8802be99ccba3add5f1e6f78e5e79d0967342668dd12e472651a6b91c342f11fba330caaca421cc3d6c7e2011e09a6bd131f8ba14bbc4a6206cce539'
|
||||
'ac22af25fc08f5bf1b9acbb77bbb6b2bb7af12d78ff1ae99463c16f36f1dd5ebae3af1413e353634aed5275af0eefee41257eded7987e67ae6a9411999d5a2ba')
|
||||
|
Loading…
Reference in New Issue
Block a user