From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 03506159C9C for ; Sun, 11 Aug 2024 21:14:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19D29E29FD; Sun, 11 Aug 2024 21:14:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B2AC6E29FD for ; Sun, 11 Aug 2024 21:14:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C0162343153 for ; Sun, 11 Aug 2024 21:14:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C3A251E0D for ; Sun, 11 Aug 2024 21:14:44 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1723410861.9447f32d8725376b2d3f3865717e7302bc50d3cd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/atop/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/atop/files/atop-2.10.0-respect-PKG_CONFIG.patch sys-process/atop/files/atop-2.10.0-respect-opt.patch X-VCS-Directories: sys-process/atop/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9447f32d8725376b2d3f3865717e7302bc50d3cd X-VCS-Branch: master Date: Sun, 11 Aug 2024 21:14:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c19b0944-d892-48bd-aea0-684b0bfcb63c X-Archives-Hash: 5a45cc7029146643d8fb5b90d633dfd3 commit: 9447f32d8725376b2d3f3865717e7302bc50d3cd Author: Sam James gentoo org> AuthorDate: Sun Aug 11 21:01:27 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Aug 11 21:14:21 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9447f32d sys-process/atop: tweak PKG_CONFIG patch This matches the upstream version more closely. Signed-off-by: Sam James gentoo.org> sys-process/atop/files/atop-2.10.0-respect-PKG_CONFIG.patch | 4 ++-- sys-process/atop/files/atop-2.10.0-respect-opt.patch | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-process/atop/files/atop-2.10.0-respect-PKG_CONFIG.patch b/sys-process/atop/files/atop-2.10.0-respect-PKG_CONFIG.patch index 483506043490..edfa88c7a889 100644 --- a/sys-process/atop/files/atop-2.10.0-respect-PKG_CONFIG.patch +++ b/sys-process/atop/files/atop-2.10.0-respect-PKG_CONFIG.patch @@ -7,8 +7,8 @@ -CFLAGS += -O2 -I. -Wall $(shell pkg-config --cflags glib-2.0) -Wno-stringop-truncation -Wmissing-prototypes -Wmissing-declarations -Wformat-security # -DNOPERFEVENT # -DHTTPSTATS -LDFLAGS += $(shell pkg-config --libs glib-2.0) +PKG_CONFIG ?= pkg-config -+CFLAGS += -O2 -I. -Wall $(shell ${PKG_CONFIG} --cflags glib-2.0) -Wno-stringop-truncation -Wmissing-prototypes -Wmissing-declarations -Wformat-security # -DNOPERFEVENT # -DHTTPSTATS -+LDFLAGS += $(shell ${PKG_CONFIG} --libs glib-2.0) ++CFLAGS += -O2 -I. -Wall $(shell $(PKG_CONFIG) --cflags glib-2.0) -Wno-stringop-truncation -Wmissing-prototypes -Wmissing-declarations -Wformat-security # -DNOPERFEVENT # -DHTTPSTATS ++LDFLAGS += $(shell $(PKG_CONFIG) --libs glib-2.0) OBJMOD0 = version.o OBJMOD1 = various.o deviate.o procdbase.o OBJMOD2 = acctproc.o photoproc.o photosyst.o rawlog.o ifprop.o parseable.o diff --git a/sys-process/atop/files/atop-2.10.0-respect-opt.patch b/sys-process/atop/files/atop-2.10.0-respect-opt.patch index 5a55e6f2f835..2acb4ec53f51 100644 --- a/sys-process/atop/files/atop-2.10.0-respect-opt.patch +++ b/sys-process/atop/files/atop-2.10.0-respect-opt.patch @@ -5,8 +5,8 @@ Don't force -O2. PMPATHD = /usr/lib/systemd/system-sleep PKG_CONFIG ?= pkg-config --CFLAGS += -O2 -I. -Wall $(shell ${PKG_CONFIG} --cflags glib-2.0) -Wno-stringop-truncation -Wmissing-prototypes -Wmissing-declarations -Wformat-security # -DNOPERFEVENT # -DHTTPSTATS -+CFLAGS += -I. -Wall $(shell ${PKG_CONFIG} --cflags glib-2.0) -Wno-stringop-truncation -Wmissing-prototypes -Wmissing-declarations -Wformat-security # -DNOPERFEVENT # -DHTTPSTATS +-CFLAGS += -O2 -I. -Wall $(shell $(PKG_CONFIG) --cflags glib-2.0) -Wno-stringop-truncation -Wmissing-prototypes -Wmissing-declarations -Wformat-security # -DNOPERFEVENT # -DHTTPSTATS ++CFLAGS += -I. -Wall $(shell $(PKG_CONFIG) --cflags glib-2.0) -Wno-stringop-truncation -Wmissing-prototypes -Wmissing-declarations -Wformat-security # -DNOPERFEVENT # -DHTTPSTATS LDFLAGS += $(shell ${PKG_CONFIG} --libs glib-2.0) OBJMOD0 = version.o OBJMOD1 = various.o deviate.o procdbase.o