Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/redis/
Date: Tue, 01 Jun 2021 15:18:49
Message-Id: 1622560716.b5783e19f210558382f8fdb2825d2c49ebcd726d.sam@gentoo
1 commit: b5783e19f210558382f8fdb2825d2c49ebcd726d
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 1 14:22:50 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 1 15:18:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5783e19
7
8 dev-db/redis: add 6.0.14
9
10 Bug: https://bugs.gentoo.org/793719
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-db/redis/Manifest | 1 +
14 dev-db/redis/redis-6.0.14.ebuild | 187 +++++++++++++++++++++++++++++++++++++++
15 2 files changed, 188 insertions(+)
16
17 diff --git a/dev-db/redis/Manifest b/dev-db/redis/Manifest
18 index 21d25556dc4..5b662206e49 100644
19 --- a/dev-db/redis/Manifest
20 +++ b/dev-db/redis/Manifest
21 @@ -1,5 +1,6 @@
22 DIST redis-5.0.12.tar.gz 1995069 BLAKE2B 03bb5956fb1206ecfa7f621b22b3101d1ebad62c40ce52157fb802ecfa5c32ca493ff03a1cf909a1b0f1acdac83b3a939ab2042fbf092fea983cabe35d00f4c3 SHA512 f0ab161762006926064ba2176ea63bb2fa416fa386b44ca55a8edad9169627fcd1c4bd9c699fec585aefc68506deb0796f6a89844c21e74d2bdb19ca1638bbe7
23 DIST redis-6.0.12.tar.gz 2276349 BLAKE2B ab49b0278420c65fc995a90e850130971ccaf3df34a08a5cc10a8c211239eba8449b87fe67684189c71816cf259a70a23a77935ec61e8baa787daa61cb994201 SHA512 9dd8e3bed51e1356470e1bf08892f771744c0c9418ff874c16ea932ad1f471a908ffd8479efe1f32531d7f63cd7af5224273ce50f2fe7aa26c47716e0e78330b
24 DIST redis-6.0.13.tar.gz 2276777 BLAKE2B 735ebc7068b26e7e424e5ce701bb80cfbdf09f65734cbdd5760b75d78141ff542d1a91f2f58f7ef97ea4a1e9e225e96189736384e1dd0c8195e4ca651da75492 SHA512 5053cd60df354c8a00e5864179c6354db6b0243d56717d5dc44954405908ad8b3b09ba9f069312825705dd8abc83d533dd7a5a60485a30e8f4adf166fa058549
25 +DIST redis-6.0.14.tar.gz 2277029 BLAKE2B 1eeeae5243ca380e354dfe5c8ad5b869669dc94b9570c8151033f89a23025bf027267eea00549f411e019b3c79ffa5d2e29eacff660e9f4b614953b023824c04 SHA512 a1de2131420bc11f831ff48607be2cf4a7775702fcc4fc777e09ebdc36277f1b468b22a1d35758338c0b44f9b3ae7b119139a79eb2419d40acbbf49d8c4a7e77
26 DIST redis-6.2.1.tar.gz 2438367 BLAKE2B 8717630771eafaf8a15dd371d46475f81f15bbcdc9a4fabd8f270ab6e09fbfb3ee2a1cddddb6c7778922d3552bcf5ee475eec7ba0623147ec36a5c5422cb0de0 SHA512 7c339cc360fc3125bb67c5748bb4fe940977faa937e3a86294829bde472479a811df8ea0ce4961d8128ec8d4ffba5d5a943c2957589c8da0cfc3f109f82e4af6
27 DIST redis-6.2.3.tar.gz 2456050 BLAKE2B f41096c790a373bdfbe2b9af0be867fdf4c9cdcf5b76e92c50786de917d9e52bd65e65bd43127fd5ad040bc3fed50fda9caa145cd261f79bcfa16ddf369315e9 SHA512 0a020aaa5664ed419a30e85d3b5c79fe69353067b755421c702f89ca923f1ba7794b4792f4a44049e38936f221363153c9ffcfb6fa232731b224d20c2982ac68
28
29 diff --git a/dev-db/redis/redis-6.0.14.ebuild b/dev-db/redis/redis-6.0.14.ebuild
30 new file mode 100644
31 index 00000000000..8b23babaf71
32 --- /dev/null
33 +++ b/dev-db/redis/redis-6.0.14.ebuild
34 @@ -0,0 +1,187 @@
35 +# Copyright 1999-2021 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +# Redis does NOT build with Lua 5.2 or newer at this time:
41 +# - 5.3 and 5.4 give:
42 +# lua_bit.c:83:2: error: #error "Unknown number type, check LUA_NUMBER_* in luaconf.h"
43 +# - 5.2 fails with:
44 +# scripting.c:(.text+0x1f9b): undefined reference to `lua_open'
45 +# because lua_open became lua_newstate in 5.2
46 +LUA_COMPAT=( lua5-1 luajit )
47 +
48 +inherit autotools flag-o-matic lua-single systemd toolchain-funcs tmpfiles
49 +
50 +DESCRIPTION="A persistent caching system, key-value and data structures database"
51 +HOMEPAGE="https://redis.io"
52 +SRC_URI="https://download.redis.io/releases/${P}.tar.gz"
53 +
54 +LICENSE="BSD"
55 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
56 +IUSE="+jemalloc ssl systemd tcmalloc test"
57 +RESTRICT="!test? ( test )"
58 +SLOT="0"
59 +
60 +COMMON_DEPEND="
61 + ${LUA_DEPS}
62 + jemalloc? ( >=dev-libs/jemalloc-5.1:= )
63 + ssl? ( dev-libs/openssl:0= )
64 + systemd? ( sys-apps/systemd:= )
65 + tcmalloc? ( dev-util/google-perftools )
66 +"
67 +
68 +RDEPEND="
69 + ${COMMON_DEPEND}
70 + acct-group/redis
71 + acct-user/redis
72 +"
73 +
74 +BDEPEND="
75 + ${COMMON_DEPEND}
76 + virtual/pkgconfig
77 +"
78 +
79 +# Tcl is only needed in the CHOST test env
80 +DEPEND="
81 + ${COMMON_DEPEND}
82 + test? (
83 + dev-lang/tcl:0=
84 + ssl? ( dev-tcltk/tls )
85 + )"
86 +
87 +REQUIRED_USE="?? ( jemalloc tcmalloc )
88 + ${LUA_REQUIRED_USE}"
89 +
90 +PATCHES=(
91 + "${FILESDIR}"/${PN}-3.2.3-config.patch
92 + "${FILESDIR}"/${PN}-5.0-shared.patch
93 + "${FILESDIR}"/${PN}-6.0.12-sharedlua.patch
94 + "${FILESDIR}"/${PN}-5.0.8-ppc-atomic.patch
95 + "${FILESDIR}"/${PN}-sentinel-5.0-config.patch
96 +)
97 +
98 +src_prepare() {
99 + default
100 +
101 + # unstable on jemalloc
102 + > tests/unit/memefficiency.tcl || die
103 +
104 + # Copy lua modules into build dir
105 + cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die
106 + cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die
107 + # Append cflag for lua_cjson
108 + # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61
109 + append-cflags "-DENABLE_CJSON_GLOBAL"
110 +
111 + # now we will rewrite present Makefiles
112 + local makefiles="" MKF
113 + for MKF in $(find -name 'Makefile' | cut -b 3-); do
114 + mv "${MKF}" "${MKF}.in"
115 + sed -i -e 's:$(CC):@CC@:g' \
116 + -e 's:$(CFLAGS):@AM_CFLAGS@:g' \
117 + -e 's: $(DEBUG)::g' \
118 + -e 's:$(OBJARCH)::g' \
119 + -e 's:ARCH:TARCH:g' \
120 + -e '/^CCOPT=/s:$: $(LDFLAGS):g' \
121 + "${MKF}.in" \
122 + || die "Sed failed for ${MKF}"
123 + makefiles+=" ${MKF}"
124 + done
125 + # autodetection of compiler and settings; generates the modified Makefiles
126 + cp "${FILESDIR}"/configure.ac-3.2 configure.ac || die
127 +
128 + # Use the correct pkgconfig name for Lua.
129 + # The upstream configure script handles luajit specially, and is not
130 + # effected by these changes.
131 + sed -i \
132 + -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \
133 + -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \
134 + -e "/PKG_CHECK_MODULES.*\<LUA\>/s,lua5.1,${ELUA},g" \
135 + configure.ac || die "Sed failed for configure.ac"
136 + eautoreconf
137 +}
138 +
139 +src_configure() {
140 + econf $(use_with lua_single_target_luajit luajit)
141 +
142 + # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164
143 + # also, don't define ANSI/c99 for lua twice
144 + sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/Makefile || die
145 +}
146 +
147 +src_compile() {
148 + local myconf=""
149 +
150 + if use jemalloc; then
151 + myconf+="MALLOC=jemalloc"
152 + elif use tcmalloc; then
153 + myconf+="MALLOC=tcmalloc"
154 + else
155 + myconf+="MALLOC=libc"
156 + fi
157 +
158 + if use ssl; then
159 + myconf+=" BUILD_TLS=yes"
160 + fi
161 +
162 + export USE_SYSTEMD=$(usex systemd)
163 +
164 + tc-export AR CC RANLIB
165 + emake V=1 ${myconf} AR="${AR}" CC="${CC}" RANLIB="${RANLIB}"
166 +}
167 +
168 +src_test() {
169 + # Known to fail with FEATURES=usersandbox
170 + if has usersandbox ${FEATURES}; then
171 + ewarn "You are emerging ${P} with 'usersandbox' enabled." \
172 + "Expect some test failures or emerge with 'FEATURES=-usersandbox'!"
173 + fi
174 +
175 + if use ssl; then
176 + ./utils/gen-test-certs.sh
177 + ./runtest --tls
178 + else
179 + ./runtest
180 + fi
181 +}
182 +
183 +src_install() {
184 + insinto /etc/redis
185 + doins redis.conf sentinel.conf
186 + use prefix || fowners -R redis:redis /etc/redis /etc/redis/{redis,sentinel}.conf
187 + fperms 0750 /etc/redis
188 + fperms 0644 /etc/redis/{redis,sentinel}.conf
189 +
190 + newconfd "${FILESDIR}/redis.confd-r2" redis
191 + newinitd "${FILESDIR}/redis.initd-6" redis
192 +
193 + systemd_newunit "${FILESDIR}/redis.service-4" redis.service
194 + newtmpfiles "${FILESDIR}/redis.tmpfiles-2" redis.conf
195 +
196 + newconfd "${FILESDIR}/redis-sentinel.confd-r1" redis-sentinel
197 + newinitd "${FILESDIR}/redis-sentinel.initd-r1" redis-sentinel
198 +
199 + insinto /etc/logrotate.d/
200 + newins "${FILESDIR}/${PN}.logrotate" ${PN}
201 +
202 + dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README.md
203 +
204 + dobin src/redis-cli
205 + dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-rdb
206 + fperms 0750 /usr/sbin/redis-benchmark
207 + dosym redis-server /usr/sbin/redis-sentinel
208 +
209 + if use prefix; then
210 + diropts -m0750
211 + else
212 + diropts -m0750 -o redis -g redis
213 + fi
214 + keepdir /var/{log,lib}/redis
215 +}
216 +
217 +pkg_postinst() {
218 + ewarn "The default redis configuration file location changed to:"
219 + ewarn " /etc/redis/{redis,sentinel}.conf"
220 + ewarn "Please apply your changes to the new configuration files."
221 +}