Skip to content

Commit

Permalink
feat: update procps to 2:4.0.4-4
Browse files Browse the repository at this point in the history
  • Loading branch information
deepin-community-bot[bot] authored and UTsweetyfish committed Feb 23, 2024
1 parent 2baef21 commit 81b697e
Show file tree
Hide file tree
Showing 187 changed files with 53,162 additions and 37,012 deletions.
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion .tarball-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.3
4.0.4
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.3
4.0.4
13 changes: 8 additions & 5 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

CYGWINFLAGS =
CYGWINFLAGS = $(LTLIBINTL)
if CYGWIN
CYGWINFLAGS += -lintl
usrbin_exec_PROGRAMS =
endif

Expand Down Expand Up @@ -136,7 +135,7 @@ bin_PROGRAMS += src/kill
endif
dist_man_MANS += man/kill.1
src_kill_SOURCES = src/kill.c local/strutils.c local/fileutils.c local/signals.c
src_kill_LDADD =
src_kill_LDADD = $(LTLIBINTL)
else
EXTRA_DIST += man/kill.1
endif
Expand Down Expand Up @@ -174,9 +173,11 @@ bin_PROGRAMS += \
dist_man_MANS += \
man/slabtop.1
src_slabtop_SOURCES = src/slabtop.c local/strutils.c local/fileutils.c
src_slabtop_CFLAGS = @NCURSES_CFLAGS@
src_slabtop_LDADD = $(LDADD) @NCURSES_LIBS@
endif
src_watch_SOURCES = src/watch.c local/strutils.c local/fileutils.c
src_watch_CFLAGS = @NCURSES_CFLAGS@
src_watch_LDADD = @NCURSES_LIBS@ $(CYGWINFLAGS)
src_top_top_SOURCES = \
src/top/top.h \
Expand All @@ -189,6 +190,7 @@ if CYGWIN
src_top_top_SOURCES += local/strverscmp.c
endif

src_top_top_CFLAGS = @NCURSES_CFLAGS@
src_top_top_LDADD = $(LDADD) @NCURSES_LIBS@ $(DL_LIB)
endif

Expand Down Expand Up @@ -227,7 +229,7 @@ src_sysctl_SOURCES = \
src/sysctl.c \
local/fileutils.c \
local/procio.c
src_sysctl_LDADD=
src_sysctl_LDADD= $(LTLIBINTL)
endif
src_tload_SOURCES = src/tload.c local/strutils.c local/fileutils.c
src_uptime_SOURCES = src/uptime.c local/fileutils.c
Expand All @@ -236,7 +238,7 @@ src_vmstat_SOURCES = src/vmstat.c local/strutils.c local/fileutils.c

# See http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
LIBproc2_CURRENT=0
LIBproc2_REVISION=1
LIBproc2_REVISION=2
LIBproc2_AGE=0

library_libproc2_la_LIBADD = $(LIB_KPARTS)
Expand Down Expand Up @@ -314,6 +316,7 @@ src_ps_pscommand_SOURCES = \
src/ps/output.c \
src/ps/parser.c \
src/ps/select.c \
src/ps/signames.c \
src/ps/sortformat.c \
src/ps/stacktrace.c \
local/fileutils.c \
Expand Down
399 changes: 304 additions & 95 deletions Makefile.in

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
procps-ng-4.0.4
---------------
* library (API & ABI unchanged)
increment revision: 0:2:0
tolerates all potential 'cpuinfo' formats issue #272
restore the proper main thread tics valuations issue #280
Remove myself from proc count merge #193
Refactor the escape code Debian #1035649
* free: -L one line output issue #156
* pgrep: Use only --signal option for signal Debian #1031765
* pgrep: suppress >15 warning if using regex Debian #1037450
* pidof: Add -t option to show threads merge #190
* pmap: Reset totals between processes issue #298
* ps: fixed missing or corrupted fields with -m option Debian #1036631, issue #279
* ps: Fix buffer overflow in -C option CVE-2023-4016 Debian #1042887, issue #297
* ps: Add --signames to show signal names in masks merge #98
* sysctl: -N show names merge #198, RH #2222056
* tests: dont compare floats with == issue #271
* tests: skips tests if maps missing merge #197, Gentoo #583036
* top: bad command line arguments yield EXIT_FAILURE issue #273
* top: avoids keystroke induced '%Cpu' distortions
* top: includes VM (guest) tics in 'system' overhead issue #274
* top: includes VM (guest) tics with '!' toggle merge #179
* top: lessen summary cpu distortions on first display merge #180
* top: better backspace handling wtth line edits issue #278
* vmstat: Print guest time in non-wide mode
* w: Fix musl UT_HOSTSIZE issue
* watch: Add color support at compile time issue #296

procps-ng-4.0.3
---------------
* library
Expand Down
2 changes: 0 additions & 2 deletions aclocal.m4
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ AC_MSG_CHECKING([for $2])
_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
_PKG_CONFIG([$1][_LIBS], [libs], [$2])
_PKG_CONFIG([$1][_VERSION], [modversion], [$2])
m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
and $1[]_LIBS to avoid the need to call pkg-config.
Expand Down Expand Up @@ -209,7 +208,6 @@ To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
else
$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
$1[]_VERSION=$pkg_cv_[]$1[]_VERSION
AC_MSG_RESULT([yes])
$3
fi[]dnl
Expand Down
16 changes: 16 additions & 0 deletions config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
*/
#undef HAVE_DCGETTEXT

/* Define to 1 if you have the declaration of `__UT_HOSTSIZE', and to 0 if you
don't. */
#undef HAVE_DECL___UT_HOSTSIZE

/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H

Expand Down Expand Up @@ -133,12 +137,18 @@
/* Define to 1 if you have the `rpmatch' function. */
#undef HAVE_RPMATCH

/* Define to 1 if you have the `sd_session_get_leader' function. */
#undef HAVE_SD_SESSION_GET_LEADER

/* Define to 1 if you have the `select' function. */
#undef HAVE_SELECT

/* Define to 1 if you have the `setlocale' function. */
#undef HAVE_SETLOCALE

/* Define to 1 if you have the `sigabbrev_np' function. */
#undef HAVE_SIGABBREV_NP

/* Define to 1 if `si_int' is a member of `siginfo_t'. */
#undef HAVE_SIGINFO_T_SI_INT

Expand Down Expand Up @@ -242,6 +252,9 @@
/* Define to 1 if you have the <utmp.h> header file. */
#undef HAVE_UTMP_H

/* Define if __UT_HOSTSIZE in utmpx.h */
#undef HAVE_UT_HOSTSIZE_IN_UTMPX

/* Define to 1 if you have the <values.h> header file. */
#undef HAVE_VALUES_H

Expand Down Expand Up @@ -415,6 +428,9 @@
/* Version number of package */
#undef VERSION

/* Enable color watch by default */
#undef WITH_COLORWATCH

/* enable elogind support */
#undef WITH_ELOGIND

Expand Down
Loading

0 comments on commit 81b697e

Please sign in to comment.