From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1117319-garchives=archives.gentoo.org@lists.gentoo.org> 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 34F7B138334 for <garchives@archives.gentoo.org>; Thu, 17 Oct 2019 04:52:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1BB3CE0887; Thu, 17 Oct 2019 04:52:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 03A7DE0887 for <gentoo-commits@lists.gentoo.org>; Thu, 17 Oct 2019 04:52:34 +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 D1C6634BE92 for <gentoo-commits@lists.gentoo.org>; Thu, 17 Oct 2019 04:52:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6380F2A5 for <gentoo-commits@lists.gentoo.org>; Thu, 17 Oct 2019 04:52:31 +0000 (UTC) From: "Joonas Niilola" <juippis@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" <juippis@gentoo.org> Message-ID: <1571287877.e6e0ba127e18777ee4241e8ff3e5e1d5a977d639.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/sqlitebrowser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild X-VCS-Directories: dev-db/sqlitebrowser/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: e6e0ba127e18777ee4241e8ff3e5e1d5a977d639 X-VCS-Branch: master Date: Thu, 17 Oct 2019 04:52:31 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c150f09e-acfd-4f16-a550-696a0e0c06d9 X-Archives-Hash: 7770b0ce3a87fe981aaf87741c467cd0 commit: e6e0ba127e18777ee4241e8ff3e5e1d5a977d639 Author: Rodrigo Saboya <saboya <AT> gmail <DOT> com> AuthorDate: Wed Oct 16 17:40:39 2019 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Thu Oct 17 04:51:17 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6e0ba12 dev-db/sqlitebrowser: Handling test dependency correctly Changed in: https://github.com/sqlitebrowser/sqlitebrowser/pull/1419/files Closes: https://bugs.gentoo.org/683666 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Rodrigo Saboya <saboya <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/13064 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild b/dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild index c763fd949dc..937429c32f8 100644 --- a/dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild +++ b/dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild @@ -48,7 +48,8 @@ src_prepare() { sed -e "/^project/ s/\".*\"/sqlitebrowser/" -i CMakeLists.txt || die if ! use test; then - sed -e "/qt5_use_modules/ s/ Test//" -i CMakeLists.txt || die + sed -e "/find_package/ s/ Test//" -i CMakeLists.txt || die + sed -e "/set/ s/ Qt5::Test//" -i CMakeLists.txt || die fi }