Procps 4.0.5 => 4.0.6 (#15044)

This commit is contained in:
Ed Reel
2026-03-17 04:18:35 -05:00
committed by GitHub
parent 40cf41753d
commit d9fa35013e
6 changed files with 16 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
# Total size: 3162189
# Total size: 3094184
/usr/local/bin/free
/usr/local/bin/hugetop
/usr/local/bin/kill
@@ -28,7 +28,7 @@
/usr/local/lib/libproc2.la
/usr/local/lib/libproc2.so
/usr/local/lib/libproc2.so.1
/usr/local/lib/libproc2.so.1.0.0
/usr/local/lib/libproc2.so.1.0.1
/usr/local/lib/pkgconfig/libproc2.pc
/usr/local/sbin/sysctl
/usr/local/share/doc/procps-ng/FAQ
@@ -52,7 +52,6 @@
/usr/local/share/man/man1/pgrep.1.zst
/usr/local/share/man/man1/pidof.1.zst
/usr/local/share/man/man1/pidwait.1.zst
/usr/local/share/man/man1/pkill.1.zst
/usr/local/share/man/man1/pmap.1.zst
/usr/local/share/man/man1/ps.1.zst
/usr/local/share/man/man1/pwdx.1.zst

View File

@@ -1,4 +1,4 @@
# Total size: 3261289
# Total size: 3336156
/usr/local/bin/free
/usr/local/bin/hugetop
/usr/local/bin/kill
@@ -27,7 +27,7 @@
/usr/local/lib/libproc2.la
/usr/local/lib/libproc2.so
/usr/local/lib/libproc2.so.1
/usr/local/lib/libproc2.so.1.0.0
/usr/local/lib/libproc2.so.1.0.1
/usr/local/lib/pkgconfig/libproc2.pc
/usr/local/sbin/sysctl
/usr/local/share/doc/procps-ng/FAQ
@@ -50,7 +50,6 @@
/usr/local/share/man/man1/kill.1.zst
/usr/local/share/man/man1/pgrep.1.zst
/usr/local/share/man/man1/pidof.1.zst
/usr/local/share/man/man1/pkill.1.zst
/usr/local/share/man/man1/pmap.1.zst
/usr/local/share/man/man1/ps.1.zst
/usr/local/share/man/man1/pwdx.1.zst

View File

@@ -1,4 +1,4 @@
# Total size: 3462489
# Total size: 3545228
/usr/local/bin/free
/usr/local/bin/hugetop
/usr/local/bin/kill
@@ -28,7 +28,7 @@
/usr/local/lib64/libproc2.la
/usr/local/lib64/libproc2.so
/usr/local/lib64/libproc2.so.1
/usr/local/lib64/libproc2.so.1.0.0
/usr/local/lib64/libproc2.so.1.0.1
/usr/local/lib64/pkgconfig/libproc2.pc
/usr/local/sbin/sysctl
/usr/local/share/doc/procps-ng/FAQ
@@ -52,7 +52,6 @@
/usr/local/share/man/man1/pgrep.1.zst
/usr/local/share/man/man1/pidof.1.zst
/usr/local/share/man/man1/pidwait.1.zst
/usr/local/share/man/man1/pkill.1.zst
/usr/local/share/man/man1/pmap.1.zst
/usr/local/share/man/man1/ps.1.zst
/usr/local/share/man/man1/pwdx.1.zst

View File

@@ -3,7 +3,7 @@ require 'buildsystems/autotools'
class Procps < Autotools
description 'procps is a set of command line and full-screen utilities that provide information out of the pseudo-filesystem most commonly located at /proc.'
homepage 'https://gitlab.com/procps-ng/procps'
version '4.0.5'
version '4.0.6'
license 'GPL-2'
compatibility 'all'
source_url 'https://gitlab.com/procps-ng/procps.git'
@@ -11,12 +11,15 @@ class Procps < Autotools
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'a31ef07767fde20684c0c5c23c9d47d6e7b646906bb3fa5db2f61794f4297625',
armv7l: 'a31ef07767fde20684c0c5c23c9d47d6e7b646906bb3fa5db2f61794f4297625',
i686: '71bd241f9913074041d15480c6aba8f91f8af7bbc27b8815d8cdbf022c82b31f',
x86_64: 'f4919b4b88cf3d83a361304b74c5202754d7588b440c9bf8cb6579868c0c82ef'
aarch64: 'c3cb80317d20af10c73e660789f61b5ff183338d1ef05ef52a4895e92566b459',
armv7l: 'c3cb80317d20af10c73e660789f61b5ff183338d1ef05ef52a4895e92566b459',
i686: 'cf8e4fdcf65a83aaf4464233bc23139b354c9f40324b8f58f7b8ff09ddee94ef',
x86_64: '3193c16555554d63bffe63957b6add1ab3f689bb8d5eb57f22533068fceb5605'
})
depends_on 'glibc' # R
depends_on 'ncurses' => :executable_only
conflicts_ok # Conflicts with uutils_coreutils.
autotools_configure_options ('--disable-pidwait' if ARCH == 'i686').to_s

2
tests/package/p/procps Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/bash
for b in $(crew files procps | grep /usr/local/bin); do $b --version; $b --help | head -5; done