Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/redis/files/, dev-db/redis/
Date: Tue, 26 May 2020 20:37:53
Message-Id: 1590525462.cd593a699d495cc0be13e01a4248d30ffbd35542.whissi@gentoo
1 commit: cd593a699d495cc0be13e01a4248d30ffbd35542
2 Author: Tomáš Mózes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Sat May 23 13:16:18 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue May 26 20:37:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd593a69
7
8 dev-db/redis: bump to 6.0.3
9
10 Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/15924
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 dev-db/redis/Manifest | 1 +
15 dev-db/redis/files/redis-6.0.3-sharedlua.patch | 60 ++++++++++
16 dev-db/redis/redis-6.0.3.ebuild | 160 +++++++++++++++++++++++++
17 3 files changed, 221 insertions(+)
18
19 diff --git a/dev-db/redis/Manifest b/dev-db/redis/Manifest
20 index a145d723191..5b28e06831b 100644
21 --- a/dev-db/redis/Manifest
22 +++ b/dev-db/redis/Manifest
23 @@ -4,3 +4,4 @@ DIST redis-5.0.5.tar.gz 1975750 BLAKE2B 3a0463685ae30f9d38e96d7324ae624474f02311
24 DIST redis-5.0.7.tar.gz 1984203 BLAKE2B a4e65784ae5d673833d1a6df73800d95ca4d8db7ec045c166027d0c372291e2f5fa2ccc4fe8d4a081b7a967c154fcf03d4b097c5d7b05755a52b465e441ad7ee SHA512 75c1d4bcca3e28d80f6b6942f0153ff33538d706339c69bddd2646c36f88b901c77dde09fba5629ba90ace00077e45d37b0a822a863f9f737ef9a79eb7093d9d
25 DIST redis-5.0.8.tar.gz 1985757 BLAKE2B e46af2133e066ccb91a8eb2c2fbfefe3747e1cfa71efa78dd50830e1bc1d83261f78ed6ff75b789b238709d9f72d5d401be2f2dd698bd19c41c091d10e0baf47 SHA512 106a74ab910267472fb418fdeb4f39e29efe9d73ed5af78b7847c91eaabd473dd729a63078e72d8e87c842169502946e9a0a97c42dea415db82732864c7c46dc
26 DIST redis-5.0.9.tar.gz 1986574 BLAKE2B 7802d0556d11c9be8577b9bb3f4dbad8c2419b38659001421f96040e8a64a4a304e9dc1f06d82802ce1c92515d166cfd37c2f347df4c4cda0c2c4c2bb10d27c5 SHA512 d2c7bc1f769bc5d179bfe6e71954962813b50597eafc752a9b1edf2fd87e84707b7daf0910db56dd0e89cb3bdb3e551da7f111ae4899f505bac5f77f99744c13
27 +DIST redis-6.0.3.tar.gz 2210882 BLAKE2B 9a83f6373469dcebb95bb0cbf10ffd56d9cb7eddc68e099d871bd41961929a7a56745566ef3969ddee23e1ddb0f5519da0a1245bb639abbec3c9b45b7c494386 SHA512 88978285db62cb8aa6e27fcd2075bbdb13f2606eaa702491047080bd6396d79d59336f0310d049d88a57e8e7b7096d716f9408b41cc658788a3902627770a807
28
29 diff --git a/dev-db/redis/files/redis-6.0.3-sharedlua.patch b/dev-db/redis/files/redis-6.0.3-sharedlua.patch
30 new file mode 100644
31 index 00000000000..20df7983d7a
32 --- /dev/null
33 +++ b/dev-db/redis/files/redis-6.0.3-sharedlua.patch
34 @@ -0,0 +1,60 @@
35 +diff --git a/deps/lua/src/lua_cjson.c b/deps/lua/src/lua_cjson.c
36 +index c26c0d7..fa50c41 100644
37 +--- a/deps/lua/src/lua_cjson.c
38 ++++ b/deps/lua/src/lua_cjson.c
39 +@@ -46,7 +46,7 @@
40 + #include "strbuf.h"
41 + #include "fpconv.h"
42 +
43 +-#include "../../../src/solarisfixes.h"
44 ++#include "solarisfixes.h"
45 +
46 + #ifndef CJSON_MODNAME
47 + #define CJSON_MODNAME "cjson"
48 +diff --git a/src/Makefile b/src/Makefile
49 +index b8c05c3..e5a7cc2 100644
50 +--- a/src/Makefile
51 ++++ b/src/Makefile
52 +@@ -16,7 +16,7 @@ release_hdr := $(shell sh -c './mkreleasehdr.sh')
53 + uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
54 + uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
55 + OPTIMIZATION?=-O2
56 +-DEPENDENCY_TARGETS=hiredis linenoise lua
57 ++DEPENDENCY_TARGETS=hiredis linenoise
58 + NODEPS:=clean distclean
59 +
60 + # Default settings
61 +@@ -76,6 +76,7 @@ endif
62 + FINAL_CFLAGS=$(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS)
63 + FINAL_LDFLAGS=$(LDFLAGS) $(REDIS_LDFLAGS) $(DEBUG)
64 + FINAL_LIBS=-lm
65 ++FINAL_LIBS+=@LUA_LIBS@
66 + DEBUG=-g -ggdb
67 +
68 + # Linux ARM needs -latomic at linking time
69 +@@ -149,7 +150,7 @@ endif
70 + endif
71 + endif
72 + # Include paths to dependencies
73 +-FINAL_CFLAGS+= -I../deps/hiredis -I../deps/linenoise -I../deps/lua/src
74 ++FINAL_CFLAGS+= -I../deps/hiredis -I../deps/linenoise @LUA_CFLAGS@
75 +
76 + # Determine systemd support and/or build preference (defaulting to auto-detection)
77 + BUILD_WITH_SYSTEMD=no
78 +@@ -217,6 +218,7 @@ endif
79 + REDIS_SERVER_NAME=redis-server
80 + REDIS_SENTINEL_NAME=redis-sentinel
81 + REDIS_SERVER_OBJ=adlist.o quicklist.o ae.o anet.o dict.o server.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crcspeed.o crc64.o bitops.o sentinel.o notify.o setproctitle.o blocked.o hyperloglog.o latency.o sparkline.o redis-check-rdb.o redis-check-aof.o geo.o lazyfree.o module.o evict.o expire.o geohash.o geohash_helper.o childinfo.o defrag.o siphash.o rax.o t_stream.o listpack.o localtime.o lolwut.o lolwut5.o lolwut6.o acl.o gopher.o tracking.o connection.o tls.o sha256.o timeout.o setcpuaffinity.o
82 ++REDIS_SERVER_OBJ+=fpconv.o strbuf.o lua_bit.o lua_cjson.o lua_cmsgpack.o lua_struct.o
83 + REDIS_CLI_NAME=redis-cli
84 + REDIS_CLI_OBJ=anet.o adlist.o dict.o redis-cli.o zmalloc.o release.o ae.o crcspeed.o crc64.o siphash.o crc16.o
85 + REDIS_BENCHMARK_NAME=redis-benchmark
86 +@@ -268,7 +270,7 @@ endif
87 +
88 + # redis-server
89 + $(REDIS_SERVER_NAME): $(REDIS_SERVER_OBJ)
90 +- $(REDIS_LD) -o $@ $^ ../deps/hiredis/libhiredis.a ../deps/lua/src/liblua.a $(FINAL_LIBS)
91 ++ $(REDIS_LD) -o $@ $^ ../deps/hiredis/libhiredis.a $(FINAL_LIBS)
92 +
93 + # redis-sentinel
94 + $(REDIS_SENTINEL_NAME): $(REDIS_SERVER_NAME)
95
96 diff --git a/dev-db/redis/redis-6.0.3.ebuild b/dev-db/redis/redis-6.0.3.ebuild
97 new file mode 100644
98 index 00000000000..5e62c2dd9e4
99 --- /dev/null
100 +++ b/dev-db/redis/redis-6.0.3.ebuild
101 @@ -0,0 +1,160 @@
102 +# Copyright 1999-2020 Gentoo Authors
103 +# Distributed under the terms of the GNU General Public License v2
104 +
105 +EAPI=7
106 +
107 +inherit autotools flag-o-matic systemd toolchain-funcs
108 +
109 +DESCRIPTION="A persistent caching system, key-value and data structures database"
110 +HOMEPAGE="https://redis.io"
111 +SRC_URI="http://download.redis.io/releases/${P}.tar.gz"
112 +
113 +LICENSE="BSD"
114 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
115 +IUSE="+jemalloc luajit tcmalloc test"
116 +RESTRICT="!test? ( test )"
117 +SLOT="0"
118 +
119 +# Redis does NOT build with Lua 5.2 or newer at this time.
120 +# This should link correctly with both unslotted & slotted Lua, without
121 +# changes.
122 +COMMON_DEPEND="
123 + jemalloc? ( >=dev-libs/jemalloc-5.1:= )
124 + luajit? ( dev-lang/luajit:2 )
125 + !luajit? ( || ( dev-lang/lua:5.1 =dev-lang/lua-5.1*:0 ) )
126 + tcmalloc? ( dev-util/google-perftools )
127 +"
128 +
129 +RDEPEND="
130 + ${COMMON_DEPEND}
131 + acct-group/redis
132 + acct-user/redis
133 +"
134 +
135 +BDEPEND="
136 + ${COMMON_DEPEND}
137 + virtual/pkgconfig
138 +"
139 +
140 +# Tcl is only needed in the CHOST test env
141 +DEPEND="
142 + ${COMMON_DEPEND}
143 + test? ( dev-lang/tcl:0= )"
144 +
145 +REQUIRED_USE="?? ( jemalloc tcmalloc )"
146 +
147 +PATCHES=(
148 + "${FILESDIR}"/${PN}-3.2.3-config.patch
149 + "${FILESDIR}"/${PN}-5.0-shared.patch
150 + "${FILESDIR}"/${PN}-6.0.3-sharedlua.patch
151 + "${FILESDIR}"/${PN}-5.0.8-ppc-atomic.patch
152 + "${FILESDIR}"/${PN}-sentinel-5.0-config.patch
153 +)
154 +
155 +src_prepare() {
156 + default
157 +
158 + # unstable on jemalloc
159 + > tests/unit/memefficiency.tcl || die
160 +
161 + # Copy lua modules into build dir
162 + cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die
163 + cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die
164 + # Append cflag for lua_cjson
165 + # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61
166 + append-cflags "-DENABLE_CJSON_GLOBAL"
167 +
168 + # now we will rewrite present Makefiles
169 + local makefiles="" MKF
170 + for MKF in $(find -name 'Makefile' | cut -b 3-); do
171 + mv "${MKF}" "${MKF}.in"
172 + sed -i -e 's:$(CC):@CC@:g' \
173 + -e 's:$(CFLAGS):@AM_CFLAGS@:g' \
174 + -e 's: $(DEBUG)::g' \
175 + -e 's:$(OBJARCH)::g' \
176 + -e 's:ARCH:TARCH:g' \
177 + -e '/^CCOPT=/s:$: $(LDFLAGS):g' \
178 + "${MKF}.in" \
179 + || die "Sed failed for ${MKF}"
180 + makefiles+=" ${MKF}"
181 + done
182 + # autodetection of compiler and settings; generates the modified Makefiles
183 + cp "${FILESDIR}"/configure.ac-3.2 configure.ac || die
184 +
185 + # Use the correct pkgconfig name for Lua
186 + if false && has_version 'dev-lang/lua:5.3'; then
187 + # Lua5.3 gives:
188 + #lua_bit.c:83:2: error: #error "Unknown number type, check LUA_NUMBER_* in luaconf.h"
189 + LUAPKGCONFIG=lua5.3
190 + elif false && has_version 'dev-lang/lua:5.2'; then
191 + # Lua5.2 fails with:
192 + # scripting.c:(.text+0x1f9b): undefined reference to `lua_open'
193 + # Because lua_open because lua_newstate in 5.2
194 + LUAPKGCONFIG=lua5.2
195 + elif has_version 'dev-lang/lua:5.1'; then
196 + LUAPKGCONFIG=lua5.1
197 + else
198 + LUAPKGCONFIG=lua
199 + fi
200 + # The upstream configure script handles luajit specially, and is not
201 + # effected by these changes.
202 + einfo "Selected LUAPKGCONFIG=${LUAPKGCONFIG}"
203 + sed -i \
204 + -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \
205 + -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \
206 + -e "/PKG_CHECK_MODULES.*\<LUA\>/s,lua5.1,${LUAPKGCONFIG},g" \
207 + configure.ac || die "Sed failed for configure.ac"
208 + eautoreconf
209 +}
210 +
211 +src_configure() {
212 + econf $(use_with luajit)
213 +}
214 +
215 +src_compile() {
216 + local myconf=""
217 +
218 + if use jemalloc; then
219 + myconf+="MALLOC=jemalloc"
220 + elif use tcmalloc; then
221 + myconf+="MALLOC=tcmalloc"
222 + else
223 + myconf+="MALLOC=libc"
224 + fi
225 +
226 + tc-export CC
227 + emake V=1 ${myconf} CC="${CC}"
228 +}
229 +
230 +src_install() {
231 + insinto /etc/
232 + doins redis.conf sentinel.conf
233 + use prefix || fowners redis:redis /etc/{redis,sentinel}.conf
234 + fperms 0644 /etc/{redis,sentinel}.conf
235 +
236 + newconfd "${FILESDIR}/redis.confd-r1" redis
237 + newinitd "${FILESDIR}/redis.initd-5" redis
238 +
239 + systemd_newunit "${FILESDIR}/redis.service-3" redis.service
240 + systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles-2" redis.conf
241 +
242 + newconfd "${FILESDIR}/redis-sentinel.confd" redis-sentinel
243 + newinitd "${FILESDIR}/redis-sentinel.initd" redis-sentinel
244 +
245 + insinto /etc/logrotate.d/
246 + newins "${FILESDIR}/${PN}.logrotate" ${PN}
247 +
248 + dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README.md
249 +
250 + dobin src/redis-cli
251 + dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-rdb
252 + fperms 0750 /usr/sbin/redis-benchmark
253 + dosym redis-server /usr/sbin/redis-sentinel
254 +
255 + if use prefix; then
256 + diropts -m0750
257 + else
258 + diropts -m0750 -o redis -g redis
259 + fi
260 + keepdir /var/{log,lib}/redis
261 +}