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: Tue, 05 Apr 2022 10:22:38
Message-Id: 1649154150.26bd91a1e3d0683022ba0d11aa50c5d2ae4e49ce.pinkbyte@gentoo
1 commit: 26bd91a1e3d0683022ba0d11aa50c5d2ae4e49ce
2 Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 5 10:17:17 2022 +0000
4 Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 5 10:22:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26bd91a1
7
8 dev-db/sqlcipher: drop old
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Sergey Popov <pinkbyte <AT> gentoo.org>
12
13 dev-db/sqlcipher/Manifest | 1 -
14 dev-db/sqlcipher/sqlcipher-3.4.2.ebuild | 62 ---------------------------------
15 2 files changed, 63 deletions(-)
16
17 diff --git a/dev-db/sqlcipher/Manifest b/dev-db/sqlcipher/Manifest
18 index 35e3d49592a9..727487be2c83 100644
19 --- a/dev-db/sqlcipher/Manifest
20 +++ b/dev-db/sqlcipher/Manifest
21 @@ -1,2 +1 @@
22 -DIST sqlcipher-3.4.2.tar.gz 14743960 BLAKE2B 88ee265b02bb9a42734c2ef93070c8fd8e13d546d7cc85e7fbfd6e6046ccbf2626d75e14b19cbba379c99784c7311d0100de06235b99b4908c60c99890d8d7a2 SHA512 c620bf2b175e404afd60ebe76b5476f5a447ff5fcdfa31bebc3f4bd7f1ebfcd507ee423cd582c9b3d6431d8b57320171492da2586e1a739adb4f440e7443dc03
23 DIST sqlcipher-4.0.1.tar.gz 17006324 BLAKE2B 44e8eb4e1230c3625b4fe1b4af608cd8edc25f3c6adf7e11450c8f9ddb7970fea92ff0823f3a1e631d1b0acfbab6cf078c80e4645c535d66de57f1d73b55ff47 SHA512 0fb48326860a10e9849b2f56fae0c310deae124c7203b54d51f92d346782be795d505c29eafbdfb7206f5e7be54c0f7228fe50c45bd9d2b23cca976b263264fc
24
25 diff --git a/dev-db/sqlcipher/sqlcipher-3.4.2.ebuild b/dev-db/sqlcipher/sqlcipher-3.4.2.ebuild
26 deleted file mode 100644
27 index d67124b09e38..000000000000
28 --- a/dev-db/sqlcipher/sqlcipher-3.4.2.ebuild
29 +++ /dev/null
30 @@ -1,62 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools flag-o-matic multilib-minimal
37 -
38 -DESCRIPTION="Full Database Encryption for SQLite"
39 -HOMEPAGE="https://www.zetetic.net/sqlcipher/"
40 -SRC_URI="https://github.com/sqlcipher/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="BSD"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -
46 -IUSE="libedit readline static-libs tcl test"
47 -RESTRICT="!test? ( test )"
48 -
49 -# Tcl is always needed by buildsystem
50 -RDEPEND="
51 - libedit? ( dev-libs/libedit[${MULTILIB_USEDEP}] )
52 - dev-libs/openssl:0=[${MULTILIB_USEDEP}]
53 - readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] )
54 - tcl? ( dev-lang/tcl:=[${MULTILIB_USEDEP}] )
55 -"
56 -DEPEND="${RDEPEND}
57 - dev-lang/tcl:*"
58 -
59 -# Libedit and readline support are mutually exclusive
60 -# Testsuite requires compilation with TCL, bug #582584
61 -REQUIRED_USE="
62 - libedit? ( !readline )
63 - test? ( tcl )
64 -"
65 -
66 -DOCS=( README.md )
67 -
68 -src_prepare() {
69 - append-cflags -DSQLITE_HAS_CODEC
70 - default
71 - eautoreconf
72 -}
73 -
74 -multilib_src_configure() {
75 - ECONF_SOURCE="${S}" \
76 - econf \
77 - --enable-fts3 \
78 - --enable-fts4 \
79 - --enable-fts5 \
80 - --enable-json1 \
81 - --enable-tempstore \
82 - $(use_enable libedit editline) \
83 - $(use_enable readline) \
84 - $(use_enable static-libs static) \
85 - $(use_enable tcl)
86 -}
87 -
88 -multilib_src_install_all() {
89 - find "${ED}" -name '*.la' -delete || die
90 -
91 - einstalldocs
92 -}