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 EC695158094 for ; Mon, 11 Jul 2022 06:54:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEE36E0B97; Mon, 11 Jul 2022 06:54:51 +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 C4333E0B83 for ; Mon, 11 Jul 2022 06:54:51 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D91383410C6 for ; Mon, 11 Jul 2022 06:54:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DB1E548 for ; Mon, 11 Jul 2022 06:54:47 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1657449848.fde97c7e5637424e146fba67974862ca33ad6f87.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-sound/nulloy/, media-sound/nulloy/files/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-sound/nulloy/files/add-nostrip.patch media-sound/nulloy/nulloy-0.9.3.ebuild media-sound/nulloy/nulloy-9999.ebuild X-VCS-Directories: media-sound/nulloy/ media-sound/nulloy/files/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: fde97c7e5637424e146fba67974862ca33ad6f87 X-VCS-Branch: master Date: Mon, 11 Jul 2022 06:54:47 +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: 61e477fb-ee0c-4373-97a9-8f6cece50ebc X-Archives-Hash: fdc18e9c0200099a3e53f0b2160d96a5 commit: fde97c7e5637424e146fba67974862ca33ad6f87 Author: Vitaly Zdanevich ya ru> AuthorDate: Sun Jul 10 10:44:08 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Sun Jul 10 10:44:08 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fde97c7e media-sound/nulloy: do not strip Signed-off-by: Vitaly Zdanevich ya.ru> media-sound/nulloy/files/add-nostrip.patch | 9 --------- media-sound/nulloy/nulloy-0.9.3.ebuild | 6 ++++++ media-sound/nulloy/nulloy-9999.ebuild | 12 ++++++------ 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/media-sound/nulloy/files/add-nostrip.patch b/media-sound/nulloy/files/add-nostrip.patch deleted file mode 100644 index 39b78be70..000000000 --- a/media-sound/nulloy/files/add-nostrip.patch +++ /dev/null @@ -1,9 +0,0 @@ ---- 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-0.9.3.ebuild b/media-sound/nulloy/nulloy-0.9.3.ebuild index bfce51ba0..e7e7056ae 100644 --- a/media-sound/nulloy/nulloy-0.9.3.ebuild +++ b/media-sound/nulloy/nulloy-0.9.3.ebuild @@ -58,6 +58,12 @@ src_configure() { ) QMAKE=/usr/bin/qmake5 LRELEASE=/usr/lib64/qt5/bin/lrelease ./configure "${myconfargs[@]}" || die + + # 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 + echo "CONFIG += nostrip" >> $WORKDIR/$P/.qmake.cache } src_install() { diff --git a/media-sound/nulloy/nulloy-9999.ebuild b/media-sound/nulloy/nulloy-9999.ebuild index 7408f0030..8932c9364 100644 --- a/media-sound/nulloy/nulloy-9999.ebuild +++ b/media-sound/nulloy/nulloy-9999.ebuild @@ -45,12 +45,6 @@ src_unpack() { src_prepare() { default - # 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 - if use skins ; then eapply $FILESDIR/add-dark-theme.patch cp -r $WORKDIR/night src/skins @@ -71,6 +65,12 @@ src_configure() { ) QMAKE=/usr/bin/qmake5 LRELEASE=/usr/lib64/qt5/bin/lrelease ./configure "${myconfargs[@]}" || die + + # 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 + echo "CONFIG += nostrip" >> $WORKDIR/$P/.qmake.cache } src_install() {