From 248dbab6baed691d61011be1a4115b25e2f05e4f Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Tue, 14 Aug 2018 20:09:02 -0700 Subject: dev-db/redis: cleanup old ebuilds Bug: https://bugs.gentoo.org/631002 Signed-off-by: Robin H. Johnson Package-Manager: Portage-2.3.40, Repoman-2.3.9 --- dev-db/redis/files/redis-3.0.0-sharedlua.patch | 44 -------------------------- 1 file changed, 44 deletions(-) delete mode 100644 dev-db/redis/files/redis-3.0.0-sharedlua.patch (limited to 'dev-db/redis/files/redis-3.0.0-sharedlua.patch') diff --git a/dev-db/redis/files/redis-3.0.0-sharedlua.patch b/dev-db/redis/files/redis-3.0.0-sharedlua.patch deleted file mode 100644 index ba983efafc7c..000000000000 --- a/dev-db/redis/files/redis-3.0.0-sharedlua.patch +++ /dev/null @@ -1,44 +0,0 @@ -commit fd0fc43f6e0ea45bce0e1a68c1f736e481fc4429 -Author: Johan Bergström -Date: Thu Apr 2 14:33:51 2015 +1100 - - Use shared LUA - -diff --git src/Makefile src/Makefile -index a88f1d2..f71e7b5 100644 ---- src/Makefile -+++ src/Makefile -@@ -15,7 +15,7 @@ - release_hdr := $(shell sh -c './mkreleasehdr.sh') - uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') - OPTIMIZATION?=-O2 --DEPENDENCY_TARGETS=hiredis linenoise lua -+DEPENDENCY_TARGETS=hiredis linenoise - - # Default settings - STD=-std=c99 -pedantic -@@ -47,6 +47,7 @@ endif - FINAL_CFLAGS=$(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS) - FINAL_LDFLAGS=$(LDFLAGS) $(REDIS_LDFLAGS) $(DEBUG) - FINAL_LIBS=-lm -+FINAL_LIBS+=$(shell pkg-config --libs lua) - DEBUG=-g -ggdb - - ifeq ($(uname_S),SunOS) -@@ -108,6 +109,7 @@ endif - REDIS_SERVER_NAME=redis-server - REDIS_SENTINEL_NAME=redis-sentinel - REDIS_SERVER_OBJ=adlist.o ae.o anet.o dict.o redis.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 crc64.o bitops.o sentinel.o notify.o setproctitle.o blocked.o hyperloglog.o latency.o sparkline.o -+REDIS_SERVER_OBJ+=fpconv.o strbuf.o lua_bit.o lua_cjson.o lua_cmsgpack.o lua_struct.o - REDIS_CLI_NAME=redis-cli - REDIS_CLI_OBJ=anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o anet.o ae.o crc64.o - REDIS_BENCHMARK_NAME=redis-benchmark -@@ -162,7 +164,7 @@ endif - - # redis-server - $(REDIS_SERVER_NAME): $(REDIS_SERVER_OBJ) -- $(REDIS_LD) -o $@ $^ ../deps/hiredis/libhiredis.a ../deps/lua/src/liblua.a $(FINAL_LIBS) -+ $(REDIS_LD) -o $@ $^ ../deps/hiredis/libhiredis.a $(FINAL_LIBS) - - # redis-sentinel - $(REDIS_SENTINEL_NAME): $(REDIS_SERVER_NAME) -- cgit v1.2.3