summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2024-04-24 03:10:37 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2024-04-24 03:32:02 -0400
commitb450a1cf889cf5047bbc888a6b5a44cc9543ee05 (patch)
tree1f7916027b33992018c7d44dfa0e65f6bbeb26c8
parent39d65fc6afa4559cd44246712edd5643c94911f4 (diff)
procps-ng: upgrade to v3.3.17
-rw-r--r--libre/procps-ng/PKGBUILD36
-rw-r--r--libre/procps-ng/install14
2 files changed, 24 insertions, 26 deletions
diff --git a/libre/procps-ng/PKGBUILD b/libre/procps-ng/PKGBUILD
index 4f3277812..57958c8b3 100644
--- a/libre/procps-ng/PKGBUILD
+++ b/libre/procps-ng/PKGBUILD
@@ -1,31 +1,43 @@
-# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
+# Maintainer (arch): Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Eric Bélanger <eric@archlinux.org>
+# Maintainer: Parabola Hackers <dev@lists.parabola.nu>
+
pkgname=procps-ng
-pkgver=3.3.15
+pkgver=3.3.17
pkgrel=1
+pkgrel+=.parabola1
pkgdesc='Utilities for monitoring your system and its processes'
url='https://gitlab.com/procps-ng/procps'
license=(GPL LGPL)
-arch=(x86_64 ppc64le)
-groups=(base)
-depends=(ncurses libsystemd)
+arch=(x86_64)
+arch+=(armv7h i686 ppc64le)
+depends=(glibc ncurses libncursesw.so systemd-libs)
+depends=( ${depends[*]/systemd-libs/libsystemd})
makedepends=(systemd)
conflicts=(procps sysvinit-tools)
-provides=(procps sysvinit-tools)
+provides=(procps sysvinit-tools libprocps.so)
replaces=(procps sysvinit-tools)
-install=install
-source=(https://downloads.sourceforge.net/project/$pkgname/Production/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('10bd744ffcb3de2d591d2f6acf1a54a7ba070fdcc432a855931a5057149f0465')
+options=('!emptydirs')
+source=(https://downloads.sourceforge.net/project/$pkgname/Production/${pkgname}-${pkgver}.tar.xz{,.asc})
+sha256sums=('4518b3e7aafd34ec07d0063d250fd474999b20b200218c3ae56f5d2113f141b4'
+ 'SKIP')
+b2sums=('43aa1a21d4f0725b1c02457f343cf1fc66bc1771b25c6eaf689c9775c190e90545bfac1729f027abc4d3d13de37ffac4828554b5b25e12bcf6af9540de1695f3'
+ 'SKIP')
+validpgpkeys=(
+ '5D3DF0F538B327C0AA7A77A2022166C0FF3C84E3' # Craig Small <csmall@debian.org>
+ '5D2FB320B825D93904D205193938F96BDF50FEA5' # Craig Small <csmall@debian.org>
+)
prepare() {
- cd $pkgname-$pkgver
+ cd procps-$pkgver
sed 's:<ncursesw/:<:g' -i watch.c
}
build() {
- cd $pkgname-$pkgver
+ cd procps-$pkgver
./configure \
--prefix=/usr \
--exec-prefix=/ \
@@ -42,6 +54,6 @@ build() {
}
package() {
- cd $pkgname-$pkgver
+ cd procps-$pkgver
make DESTDIR="$pkgdir" install
}
diff --git a/libre/procps-ng/install b/libre/procps-ng/install
deleted file mode 100644
index 2e6546ecc..000000000
--- a/libre/procps-ng/install
+++ /dev/null
@@ -1,14 +0,0 @@
-post_upgrade() {
- if [[ $(vercmp $2 3.3.8-3) = -1 ]]; then
- cat <<EOF
-
-==> The file /etc/sysctl.conf has been removed from this
-==> package, as all its settings are now kernel defaults.
-
-==> If you had customized it, you need to rename it as
-==> /etc/sysctl.d/99-sysctl.conf since from version 207 on
-==> systemd only applies settings from /etc/sysctl.d/* .
-
-EOF
- fi
-}