Compare commits

...

10 Commits

Author SHA1 Message Date
3496d4d452 Feat: add build workflow
All checks were successful
Build package / build-package (push) Successful in 24s
2025-07-26 17:26:27 +08:00
Mike Javorski
b488275314 Update to latest version 5.23 2025-06-14 19:09:09 -07:00
Mike Javorski
cbddde6934 Update to latest version 5.22 and fix namcap warning 2025-04-18 18:51:23 -07:00
Mike Javorski
1042e1dd9c Update to latest version 5.20 (with other updates)
- switch to using salsa for (hopefully) more reliable source retrieval
- remove dependency on "which" and include now-unique which.debianutils
2024-09-18 11:37:12 -07:00
Mike Javorski
93d8866971 Rel 2: Restore versioned build path behavior (upstream is inconsistent) 2022-06-07 11:06:40 -07:00
Mike Javorski
0989cb724d Drop old .sig files 2022-06-07 10:32:16 -07:00
Mike Javorski
6c0f0b6061 Update to latest version 5.7 2022-06-07 10:26:00 -07:00
Mike Javorski
49621e8b01 New maintainer and update to latest version. Cheers sanerb! 2020-11-20 17:21:56 -08:00
brent s
79890da0ee version bump and change of source URL 2020-01-04 05:09:25 -05:00
brent s
1aa2dc44f0 version bump 2019-10-09 23:56:45 -04:00
6 changed files with 31 additions and 25 deletions

View File

@@ -1,18 +1,14 @@
pkgbase = debianutils pkgbase = debianutils
pkgdesc = Miscellaneous utilities specific to Debian pkgdesc = Miscellaneous utilities specific to Debian
pkgver = 4.8.6.3 pkgver = 5.23
pkgrel = 1 pkgrel = 1
url = http://packages.qa.debian.org/d/debianutils.html url = https://tracker.debian.org/pkg/debianutils
arch = i686 arch = i686
arch = x86_64 arch = x86_64
license = GPL license = GPL
makedepends = po4a
depends = run-parts depends = run-parts
depends = which source = https://salsa.debian.org/debian/debianutils/-/archive/debian/5.23/debianutils-debian-5.23.tar.bz2
source = http://http.debian.net/debian/pool/main/d/debianutils/debianutils_4.8.6.3.tar.xz sha512sums = d435f5280748362a546505418d41943c8c51d8ed359e96ebb851eec1c64c7375e9e14d361ab8f4ba81373f2654bb561556fae5eb440c7140398b7908500a6f74
source = debianutils_4.8.6.3.tar.xz.sig
validpgpkeys = 748231EBCBD808A14F5E85D28C004C2F93481F6B
sha512sums = c38d1d351de69f270924f05755501d90cb7245c8a3154f91ea8e38978052ffe2ec016d4400c55e2f7d31358cfe134a40c5843a33836900d7e69cce9ee8ace98e
sha512sums = SKIP
pkgname = debianutils pkgname = debianutils

Binary file not shown.

BIN
.git.sig

Binary file not shown.

View File

@@ -0,0 +1,13 @@
name: Build package
on: [push]
jobs:
build-package:
runs-on: pkgbuilder
env:
steps:
- name: Build and push package
uses: https://gitea.konchin.com/action/archbuild@main
with:
minio-accesskey: ${{ secrets.MINIO_ACCESSKEY }}
minio-secretkey: ${{ secrets.MINIO_SECRETKEY }}

View File

@@ -1,33 +1,30 @@
# Maintainer: brent s. <bts[at]square-r00t[dot]net> # Maintainer: Mike Javorski <mike dot javorski at gmail dot com>
# Bug reports can be filed at https://bugs.square-r00t.net/index.php?project=3 # Contributor: brent s. <bts[at]square-r00t[dot]net>
# News updates for packages can be followed at https://devblog.square-r00t.net
validpgpkeys=('748231EBCBD808A14F5E85D28C004C2F93481F6B')
# Contributor: Jochen Schalanda <jochen+aur (at) schalanda.name> # Contributor: Jochen Schalanda <jochen+aur (at) schalanda.name>
pkgname=debianutils pkgname=debianutils
pkgver=4.8.6.3 pkgver=5.23
pkgrel=1 pkgrel=1
pkgdesc="Miscellaneous utilities specific to Debian" pkgdesc="Miscellaneous utilities specific to Debian"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
url="http://packages.qa.debian.org/d/debianutils.html" url="https://tracker.debian.org/pkg/debianutils"
license=('GPL') license=('GPL')
depends=('run-parts' 'which') makedepends=('po4a')
source=("http://http.debian.net/debian/pool/main/d/${pkgname}/${pkgname}_${pkgver}.tar.xz" depends=('run-parts')
"${pkgname}_${pkgver}.tar.xz.sig") source=("https://salsa.debian.org/debian/$pkgname/-/archive/debian/$pkgver/$pkgname-debian-$pkgver.tar.bz2")
sha512sums=('c38d1d351de69f270924f05755501d90cb7245c8a3154f91ea8e38978052ffe2ec016d4400c55e2f7d31358cfe134a40c5843a33836900d7e69cce9ee8ace98e' sha512sums=('d435f5280748362a546505418d41943c8c51d8ed359e96ebb851eec1c64c7375e9e14d361ab8f4ba81373f2654bb561556fae5eb440c7140398b7908500a6f74')
'SKIP')
build() { build() {
cd "${srcdir}/${pkgname}-${pkgver}" cd "${srcdir}/${pkgname}-debian-${pkgver}"
autoreconf -fi
./configure --prefix=/usr --sbindir=/usr/bin ./configure --prefix=/usr --sbindir=/usr/bin
make make
} }
package() { package() {
cd "${srcdir}/${pkgname}-${pkgver}" cd "${srcdir}/${pkgname}-debian-${pkgver}"
make DESTDIR="$pkgdir" install make DESTDIR="$pkgdir" install
msg 'Remove files of "which" and "run-parts" package...' echo 'Remove files of "run-parts" package...'
cd cd -
find "${pkgdir}" -name which* -delete
find "${pkgdir}" -name run-parts* -delete find "${pkgdir}" -name run-parts* -delete
} }

Binary file not shown.