Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/redis/
Date: Tue, 26 Jan 2016 01:57:59
Message-Id: 1453773456.7ffd92f12385548bb62e749cf7d79a7e7f68f32f.zmedico@gentoo
1 commit: 7ffd92f12385548bb62e749cf7d79a7e7f68f32f
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 26 01:55:29 2016 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 26 01:57:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ffd92f1
7
8 dev-db/redis: version bump to 3.0.6
9
10 Package-Manager: portage-2.2.27
11
12 dev-db/redis/Manifest | 1 +
13 dev-db/redis/redis-3.0.6.ebuild | 116 ++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 117 insertions(+)
15
16 diff --git a/dev-db/redis/Manifest b/dev-db/redis/Manifest
17 index 7b27574..f1cbf2b 100644
18 --- a/dev-db/redis/Manifest
19 +++ b/dev-db/redis/Manifest
20 @@ -3,3 +3,4 @@ DIST redis-2.8.21.tar.gz 1260030 SHA256 3da371693bb54c22da04d86cab1b871072c8d19b
21 DIST redis-2.8.23.tar.gz 1265194 SHA256 f3c79778f478a01237035b67edaaa19332e5624dfa849d66815a4328d3e95ace SHA512 ab27d5f4da3a1a03f513dd6e731517b59c8857961599651f51ced29138c907e3968390d2a473e26690d8ada6808cff1b948999ed171e9826cad8449031fc39ce WHIRLPOOL e18e5caf086c41743642d817b69ce7d923505ebb90373c7b8ccac5990bfa1972e264292e3d78310e84378b958c0ab818d208349763ab43eb9cfc05030755a6f5
22 DIST redis-3.0.4.tar.gz 1364993 SHA256 a35e90ad581925134aa0fc92e969cc825f5cdee8e13c36a87d4d6995316112cf SHA512 7d8d681222892c759e7c3809203522a96a547457e0ff123cca296bac911395c7d8c1ded06331ae5cb487b87d0adcbaa02aa12c2dd724196a7b86111e236b023a WHIRLPOOL e12f7751e3e25068a25c02990d0e8416cedc152f66b5e9e1e47ae91f10a0d543b96ad456a4eb7fe16cb92ed46a0cc2fee65954207b354b9c211f425191a6c388
23 DIST redis-3.0.5.tar.gz 1366160 SHA256 4c176826eee909fbdc63db1c15adc22aab42d758043829e556f4331e6a5bd480 SHA512 f44e2bcf2f4910da9f9d9e31ec542d5816ec0ba4329efe3e5053cc0176a5a8557d905f23bd3fd37e8a6e674eaf12804613718f63cb2ca1eac2b4f9c6082acab6 WHIRLPOOL 5b58ca02af6be7768c89e9307d668081cc161f9a200a1db40f0216b6c564cb67c8230d420024c12fb5f2397cedb8979a62ad01a61d526030018171a69a22e19d
24 +DIST redis-3.0.6.tar.gz 1372648 SHA256 6f1e1523194558480c3782d84d88c2decf08a8e4b930c56d4df038e565b75624 SHA512 cb29b2ed6db4a77ffafc27a94deb71b73332f4e05b63957ac870532a634d7aaf1df4225aec8bc3011322b6df35a7f0e7c3f3bb070e29aabd3dabdb5cfbb681d4 WHIRLPOOL ce0de5aa188d8c631456ea5bf6346357676eb8c5f0f6bc69a704f7d35559ec6a4f5c0e583e321f546fc91c6c51d0331065d64be601864e033ce7d47da002d71b
25
26 diff --git a/dev-db/redis/redis-3.0.6.ebuild b/dev-db/redis/redis-3.0.6.ebuild
27 new file mode 100644
28 index 0000000..7e5e67b
29 --- /dev/null
30 +++ b/dev-db/redis/redis-3.0.6.ebuild
31 @@ -0,0 +1,116 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +inherit autotools eutils flag-o-matic systemd toolchain-funcs user
39 +
40 +DESCRIPTION="A persistent caching system, key-value and data structures database"
41 +HOMEPAGE="http://redis.io/"
42 +SRC_URI="http://download.redis.io/releases/${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
46 +IUSE="+jemalloc tcmalloc test"
47 +SLOT="0"
48 +
49 +RDEPEND=">=dev-lang/lua-5.1:*
50 + tcmalloc? ( dev-util/google-perftools )
51 + jemalloc? ( >=dev-libs/jemalloc-3.2 )"
52 +DEPEND="virtual/pkgconfig
53 + >=sys-devel/autoconf-2.63
54 + test? ( dev-lang/tcl:0= )
55 + ${RDEPEND}"
56 +REQUIRED_USE="?? ( tcmalloc jemalloc )"
57 +
58 +S="${WORKDIR}/${PN}-${PV/_/-}"
59 +
60 +pkg_setup() {
61 + enewgroup redis 75
62 + enewuser redis 75 -1 /var/lib/redis redis
63 +}
64 +
65 +src_prepare() {
66 + epatch "${FILESDIR}"/${PN}-2.8.3-shared.patch
67 + epatch "${FILESDIR}"/${PN}-2.8.17-config.patch
68 + epatch "${FILESDIR}"/${PN}-3.0.0-sharedlua.patch
69 +
70 + # Copy lua modules into build dir
71 + cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die
72 + cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die
73 + # Append cflag for lua_cjson
74 + # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61
75 + append-cflags "-DENABLE_CJSON_GLOBAL"
76 +
77 + # now we will rewrite present Makefiles
78 + local makefiles=""
79 + for MKF in $(find -name 'Makefile' | cut -b 3-); do
80 + mv "${MKF}" "${MKF}.in"
81 + sed -i -e 's:$(CC):@CC@:g' \
82 + -e 's:$(CFLAGS):@AM_CFLAGS@:g' \
83 + -e 's: $(DEBUG)::g' \
84 + -e 's:$(OBJARCH)::g' \
85 + -e 's:ARCH:TARCH:g' \
86 + -e '/^CCOPT=/s:$: $(LDFLAGS):g' \
87 + "${MKF}.in" \
88 + || die "Sed failed for ${MKF}"
89 + makefiles+=" ${MKF}"
90 + done
91 + # autodetection of compiler and settings; generates the modified Makefiles
92 + cp "${FILESDIR}"/configure.ac-2.2 configure.ac
93 + sed -i -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \
94 + configure.ac || die "Sed failed for configure.ac"
95 + eautoconf
96 +}
97 +
98 +src_configure() {
99 + econf
100 +
101 + # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164
102 + # also, don't define ANSI/c99 for lua twice
103 + sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/Makefile || die
104 +}
105 +
106 +src_compile() {
107 + tc-export CC AR RANLIB
108 +
109 + local myconf=""
110 +
111 + if use tcmalloc ; then
112 + myconf="${myconf} USE_TCMALLOC=yes"
113 + elif use jemalloc ; then
114 + myconf="${myconf} JEMALLOC_SHARED=yes"
115 + else
116 + myconf="${myconf} MALLOC=yes"
117 + fi
118 +
119 + emake ${myconf} V=1 CC="${CC}" AR="${AR} rcu" RANLIB="${RANLIB}"
120 +}
121 +
122 +src_install() {
123 + insinto /etc/
124 + doins redis.conf sentinel.conf
125 + use prefix || fowners redis:redis /etc/{redis,sentinel}.conf
126 + fperms 0644 /etc/{redis,sentinel}.conf
127 +
128 + newconfd "${FILESDIR}/redis.confd" redis
129 + newinitd "${FILESDIR}/redis.initd-4" redis
130 +
131 + systemd_newunit "${FILESDIR}/redis.service-2" redis.service
132 + systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles" redis.conf
133 +
134 + dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README
135 +
136 + dobin src/redis-cli
137 + dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-dump
138 + fperms 0750 /usr/sbin/redis-benchmark
139 + dosym /usr/sbin/redis-server /usr/sbin/redis-sentinel
140 +
141 + if use prefix; then
142 + diropts -m0750
143 + else
144 + diropts -m0750 -o redis -g redis
145 + fi
146 + keepdir /var/{log,lib}/redis
147 +}