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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A874E138359 for ; Tue, 1 Sep 2020 10:31:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8690FE09F6; Tue, 1 Sep 2020 10:31:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7226CE09F3 for ; Tue, 1 Sep 2020 10:31:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C471D340E8A for ; Tue, 1 Sep 2020 10:31:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F7BB33E for ; Tue, 1 Sep 2020 10:31:25 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1598956211.9ffd0f7060fccb62a83c9c7665cf358daaf54a2d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/partio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/partio/partio-1.1.0_p20170829.ebuild X-VCS-Directories: media-libs/partio/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9ffd0f7060fccb62a83c9c7665cf358daaf54a2d X-VCS-Branch: master Date: Tue, 1 Sep 2020 10:31:25 +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: 894c8f69-c4ef-4b5c-b1eb-a3da09ba983a X-Archives-Hash: 699267d7cf8ab42203185746ec762e1e commit: 9ffd0f7060fccb62a83c9c7665cf358daaf54a2d Author: Adrian Grigo yahoo com au> AuthorDate: Fri Aug 28 02:03:30 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Sep 1 10:30:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ffd0f70 media-libs/partio: Call cmake_src_prepare at end of src_prepare partio 1.1.0 uses sed to remove the tests from CMakeLists.txt, which should be completed before calling cmake_src_prepare. Signed-off-by: Adrian Grigo yahoo.com.au> Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Michał Górny gentoo.org> media-libs/partio/partio-1.1.0_p20170829.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/partio/partio-1.1.0_p20170829.ebuild b/media-libs/partio/partio-1.1.0_p20170829.ebuild index df16e2b84cf..02803eb335b 100644 --- a/media-libs/partio/partio-1.1.0_p20170829.ebuild +++ b/media-libs/partio/partio-1.1.0_p20170829.ebuild @@ -41,9 +41,9 @@ BDEPEND=" PATCHES=( "${FILESDIR}/${PN}-1.1.0-Rename-partconv.patch" ) src_prepare() { - cmake_src_prepare - sed -e '/ADD_SUBDIRECTORY (src\/tests)/d' -i CMakeLists.txt || die + + cmake_src_prepare } src_configure() {