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 13A94158094 for ; Sat, 9 Jul 2022 22:13:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25AD8E0B72; Sat, 9 Jul 2022 22:13:14 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ECA8DE0B72 for ; Sat, 9 Jul 2022 22:13:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 86428340F3C for ; Sat, 9 Jul 2022 22:13:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 087113C7 for ; Sat, 9 Jul 2022 22:13:11 +0000 (UTC) From: "Vitaly Zdanevich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vitaly Zdanevich" Message-ID: <1657404773.ceafffcacd1fe1fe14c1e4b1ad52662f97a96eaf.zdanevich.vitaly@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-sound/nulloy/files/, media-sound/nulloy/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-sound/nulloy/files/add-dark-theme.patch media-sound/nulloy/files/add-nostrip.patch media-sound/nulloy/files/nulloy.patch media-sound/nulloy/nulloy-9999.ebuild X-VCS-Directories: media-sound/nulloy/files/ media-sound/nulloy/ X-VCS-Committer: zdanevich.vitaly X-VCS-Committer-Name: Vitaly Zdanevich X-VCS-Revision: ceafffcacd1fe1fe14c1e4b1ad52662f97a96eaf X-VCS-Branch: dev Date: Sat, 9 Jul 2022 22:13:11 +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: 88fa72df-0471-4ca5-9c5a-792f25a99d19 X-Archives-Hash: e9e6d51e3e4f319600430ac2b5cbe406 commit: ceafffcacd1fe1fe14c1e4b1ad52662f97a96eaf Author: Vitaly Zdanevich ya ru> AuthorDate: Sat Jul 9 22:10:49 2022 +0000 Commit: Vitaly Zdanevich ya ru> CommitDate: Sat Jul 9 22:12:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ceafffca media-sound/nulloy: do not strip by default Signed-off-by: Vitaly Zdanevich ya.ru> .../nulloy/files/{nulloy.patch => add-dark-theme.patch} | 0 media-sound/nulloy/files/add-nostrip.patch | 10 ++++++++++ media-sound/nulloy/nulloy-9999.ebuild | 8 +++++++- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/media-sound/nulloy/files/nulloy.patch b/media-sound/nulloy/files/add-dark-theme.patch similarity index 100% rename from media-sound/nulloy/files/nulloy.patch rename to media-sound/nulloy/files/add-dark-theme.patch diff --git a/media-sound/nulloy/files/add-nostrip.patch b/media-sound/nulloy/files/add-nostrip.patch new file mode 100644 index 000000000..0078b64ce --- /dev/null +++ b/media-sound/nulloy/files/add-nostrip.patch @@ -0,0 +1,10 @@ +index 795269f..5d59711 100644 +--- a/nulloy.pro ++++ b/nulloy.pro +@@ -1,5 +1,5 @@ + TEMPLATE = subdirs +-CONFIG += ordered ++CONFIG += ordered nostrip + + isEmpty(N_CONFIG_SUCCESS) { + unix:error("Please run './configure'") diff --git a/media-sound/nulloy/nulloy-9999.ebuild b/media-sound/nulloy/nulloy-9999.ebuild index fb893764d..583be7996 100644 --- a/media-sound/nulloy/nulloy-9999.ebuild +++ b/media-sound/nulloy/nulloy-9999.ebuild @@ -46,7 +46,13 @@ src_prepare() { if use skins ; then default - eapply "${FILESDIR}"/nulloy.patch + # Because stripping should not be done by the build tools, + # because Portage does it when the install phase is run to be able + # to support the `splitdebug` and `installsources` FEATURES. + # See related issue https://bugs.gentoo.org/856292 + eapply "${FILESDIR}"/add-nostrip.patch + + eapply "${FILESDIR}"/add-dark-theme.patch cp -r $WORKDIR/night src/skins fi }