Gentoo Archives: gentoo-commits

From: Sergey Popov <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/sqlcipher/
Date: Thu, 01 Dec 2022 09:16:36
Message-Id: 1669886151.eaa5e009f7e463021803fc9d5f09b6e210938678.pinkbyte@gentoo
1 commit: eaa5e009f7e463021803fc9d5f09b6e210938678
2 Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 1 09:15:44 2022 +0000
4 Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 1 09:15:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaa5e009
7
8 dev-db/sqlcipher: fix automagic dependency on sys-libs/zlib
9
10 Closes: https://bugs.gentoo.org/861302
11 Reported-by: Matt Turner <mattst88 <AT> gentoo.org>
12 Signed-off-by: Sergey Popov <pinkbyte <AT> gentoo.org>
13
14 dev-db/sqlcipher/sqlcipher-4.5.1.ebuild | 3 ++-
15 1 file changed, 2 insertions(+), 1 deletion(-)
16
17 diff --git a/dev-db/sqlcipher/sqlcipher-4.5.1.ebuild b/dev-db/sqlcipher/sqlcipher-4.5.1.ebuild
18 index 3e42f15b41c7..9c9ca41bb64d 100644
19 --- a/dev-db/sqlcipher/sqlcipher-4.5.1.ebuild
20 +++ b/dev-db/sqlcipher/sqlcipher-4.5.1.ebuild
21 @@ -17,8 +17,9 @@ IUSE="debug libedit readline static-libs tcl test"
22
23 # Tcl is always needed by buildsystem
24 RDEPEND="
25 - libedit? ( dev-libs/libedit[${MULTILIB_USEDEP}] )
26 dev-libs/openssl:0=[${MULTILIB_USEDEP}]
27 + sys-libs/zlib:=[${MULTILIB_USEDEP}]
28 + libedit? ( dev-libs/libedit[${MULTILIB_USEDEP}] )
29 readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] )
30 tcl? ( dev-lang/tcl:=[${MULTILIB_USEDEP}] )
31 "