From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 06 Mar 2023 17:21:44 +0100 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pZDap-00BKto-TW for lore@lore.pengutronix.de; Mon, 06 Mar 2023 17:21:44 +0100 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1pZDaq-00042w-5j; Mon, 06 Mar 2023 17:21:44 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pZDaM-00041J-4D; Mon, 06 Mar 2023 17:21:14 +0100 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1pZDaL-002I6s-74; Mon, 06 Mar 2023 17:21:13 +0100 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1pZDaK-00FXvy-BP; Mon, 06 Mar 2023 17:21:12 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Mon, 6 Mar 2023 17:21:12 +0100 Message-Id: <20230306162112.3705319-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20230227173331.3592538-1-christian.melki@t2data.com> References: <20230227173331.3592538-1-christian.melki@t2data.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] procps-ng: Version bump 3.3.17 -> 4.0.3 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Christian Melki Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 269a9ad76864692df19fb21d99a55b2ba1dfc7ba. Michael [sent from post-receive hook] On Mon, 06 Mar 2023 17:21:12 +0100, Christian Melki wrote: > Approx 2 year worth of changes. > A major release, afaiu, denoting newlib compatibility. > A bunch of bugfixes and other stuff. > Changelog: https://gitlab.com/procps-ng/procps/-/releases > > * Be explicit with configure options. > * No need to build W if we're not in need of it. > * Minor whitespace fix. > * Library renamed to libproc2. This might cause issues > if anyone is depending on a specific library name and SO library versions. > > Signed-off-by: Christian Melki > Message-Id: <20230227173331.3592538-1-christian.melki@t2data.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/procps.make b/rules/procps.make > index 42fec7bfe9ea..9ed658f70176 100644 > --- a/rules/procps.make > +++ b/rules/procps.make > @@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_PROCPS) += procps > # > # Paths and names > # > -PROCPS_VERSION := 3.3.17 > -PROCPS_MD5 := d60613e88c2f442ebd462b5a75313d56 > +PROCPS_VERSION := 4.0.3 > +PROCPS_MD5 := 22b287bcd758831cbaf3356cd3054fe7 > PROCPS := procps-ng-$(PROCPS_VERSION) > PROCPS_SUFFIX := tar.xz > PROCPS_URL := $(call ptx/mirror, SF, procps-ng/Production/$(PROCPS).$(PROCPS_SUFFIX)) > @@ -46,8 +46,10 @@ PROCPS_CONF_OPT := \ > --disable-rpath \ > --disable-watch8bit \ > --disable-libselinux \ > + --disable-harden-flags \ > --$(call ptx/endis, PTXCONF_PROCPS_PIDOF)-pidof \ > --disable-kill \ > + --$(call ptx/endis, PTXCONF_PROCPS_W)-w \ > --disable-skill \ > --disable-examples \ > --disable-sigwinch \ > @@ -63,7 +65,6 @@ PROCPS_CONF_OPT := \ > --$(call ptx/wwo, PTXCONF_PROCPS_WITH_SYSTEMD)-systemd \ > --without-elogind > > - > # ---------------------------------------------------------------------------- > # Target-Install > # ---------------------------------------------------------------------------- > @@ -77,7 +78,7 @@ $(STATEDIR)/procps.targetinstall: > @$(call install_fixup, procps,AUTHOR,"Clemens Gruber ") > @$(call install_fixup, procps,DESCRIPTION,missing) > > - @$(call install_lib, procps, 0, 0, 0644, libprocps) > + @$(call install_lib, procps, 0, 0, 0644, libproc2) > > ifdef PTXCONF_PROCPS_FREE > @$(call install_copy, procps, 0, 0, 0755, -, /usr/bin/free)