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 0BF641382C5 for ; Sun, 2 May 2021 20:15:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62DD5E0884; Sun, 2 May 2021 20:15:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 4B2C1E0884 for ; Sun, 2 May 2021 20:15:14 +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 7573C335C5D for ; Sun, 2 May 2021 20:15:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0E1CCC for ; Sun, 2 May 2021 20:15:11 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1619986412.3da063722f18a0b744637740847504370c55381d.zlogene@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.4.2.ebuild dev-db/sqlcipher/sqlcipher-4.0.1.ebuild X-VCS-Directories: dev-db/sqlcipher/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 3da063722f18a0b744637740847504370c55381d X-VCS-Branch: master Date: Sun, 2 May 2021 20:15: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: 3e19a8f5-4a03-4a79-a726-a48e8cd8b24e X-Archives-Hash: 206611b7aaeb952a97d09d82e605a831 commit: 3da063722f18a0b744637740847504370c55381d Author: Mikle Kolyada gentoo org> AuthorDate: Sun May 2 20:13:32 2021 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun May 2 20:13:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3da06372 dev-db/sqlcipher: remove libressl support Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Mikle Kolyada gentoo.org> dev-db/sqlcipher/sqlcipher-3.4.2.ebuild | 8 ++------ dev-db/sqlcipher/sqlcipher-4.0.1.ebuild | 5 ++--- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/dev-db/sqlcipher/sqlcipher-3.4.2.ebuild b/dev-db/sqlcipher/sqlcipher-3.4.2.ebuild index 1f5bdc48135..d67124b09e3 100644 --- a/dev-db/sqlcipher/sqlcipher-3.4.2.ebuild +++ b/dev-db/sqlcipher/sqlcipher-3.4.2.ebuild @@ -13,14 +13,13 @@ LICENSE="BSD" SLOT="0" KEYWORDS="amd64 x86" -IUSE="libedit readline libressl static-libs tcl test" +IUSE="libedit readline static-libs tcl test" RESTRICT="!test? ( test )" # Tcl is always needed by buildsystem RDEPEND=" libedit? ( dev-libs/libedit[${MULTILIB_USEDEP}] ) - !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] ) - libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] ) + dev-libs/openssl:0=[${MULTILIB_USEDEP}] readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] ) tcl? ( dev-lang/tcl:=[${MULTILIB_USEDEP}] ) " @@ -37,9 +36,6 @@ REQUIRED_USE=" DOCS=( README.md ) src_prepare() { - # bug #678502 - eapply "${FILESDIR}/${P}-libressl-2.8.patch" - append-cflags -DSQLITE_HAS_CODEC default eautoreconf diff --git a/dev-db/sqlcipher/sqlcipher-4.0.1.ebuild b/dev-db/sqlcipher/sqlcipher-4.0.1.ebuild index e82a2ba8a15..9751b1c8848 100644 --- a/dev-db/sqlcipher/sqlcipher-4.0.1.ebuild +++ b/dev-db/sqlcipher/sqlcipher-4.0.1.ebuild @@ -13,13 +13,12 @@ LICENSE="BSD" SLOT="0" KEYWORDS="amd64 x86" -IUSE="debug libedit readline libressl static-libs tcl test" +IUSE="debug libedit readline static-libs tcl test" # Tcl is always needed by buildsystem RDEPEND=" libedit? ( dev-libs/libedit[${MULTILIB_USEDEP}] ) - !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] ) - libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] ) + dev-libs/openssl:0=[${MULTILIB_USEDEP}] readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] ) tcl? ( dev-lang/tcl:=[${MULTILIB_USEDEP}] ) "