From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9BCA313829C for ; Mon, 30 May 2016 20:37:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1536A1427A; Mon, 30 May 2016 20:37:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B380E1427A for ; Mon, 30 May 2016 20:37:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B40C4340C01 for ; Mon, 30 May 2016 20:37:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1D4D95D for ; Mon, 30 May 2016 20:37:29 +0000 (UTC) From: "Sergey Popov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Popov" Message-ID: <1464640644.ef28c6338ead2ab85cdce9a0de238e15cb564288.pinkbyte@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/sqlcipher/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/sqlcipher/sqlcipher-3.3.0.ebuild X-VCS-Directories: dev-db/sqlcipher/ X-VCS-Committer: pinkbyte X-VCS-Committer-Name: Sergey Popov X-VCS-Revision: ef28c6338ead2ab85cdce9a0de238e15cb564288 X-VCS-Branch: master Date: Mon, 30 May 2016 20:37:29 +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-Archives-Salt: 0d924ddd-9206-43ff-90cb-46fb040e89b4 X-Archives-Hash: fd217b9936b720383c78538ba8faa0a8 commit: ef28c6338ead2ab85cdce9a0de238e15cb564288 Author: Sergey Popov gentoo org> AuthorDate: Mon May 30 20:36:30 2016 +0000 Commit: Sergey Popov gentoo org> CommitDate: Mon May 30 20:37:24 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef28c633 dev-db/sqlcipher: fix building with FEATURES="test" Testsuite requires, that sqlcipher is built with TCL Gentoo-Bug: 582584 Reported-by: Killian De Volder scarlet.be> Package-Manager: portage-2.3.0_rc1 dev-db/sqlcipher/sqlcipher-3.3.0.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-db/sqlcipher/sqlcipher-3.3.0.ebuild b/dev-db/sqlcipher/sqlcipher-3.3.0.ebuild index 8c2ff31..61dfb51 100644 --- a/dev-db/sqlcipher/sqlcipher-3.3.0.ebuild +++ b/dev-db/sqlcipher/sqlcipher-3.3.0.ebuild @@ -15,7 +15,7 @@ LICENSE="BSD" SLOT="0" KEYWORDS="amd64 x86" -IUSE="readline static-libs tcl" +IUSE="readline static-libs tcl test" # Tcl is always needed by buildsystem RDEPEND="dev-libs/openssl:0[${MULTILIB_USEDEP}] @@ -24,6 +24,9 @@ RDEPEND="dev-libs/openssl:0[${MULTILIB_USEDEP}] DEPEND="${RDEPEND} dev-lang/tcl" +# Testsuite requires compilation with TCL, bug #582584 +REQUIRED_USE="test? ( tcl )" + src_prepare() { append-cflags -DSQLITE_HAS_CODEC