diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2014-03-31 22:04:26 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2014-03-31 22:04:26 +0000 |
commit | 3beb6fb6e6f165f0514d787df7fd971e5541d061 (patch) | |
tree | e87883d2032b8654b6fcae78d5dfd25c20d2327b | |
parent | 2624865135247bca83529f1ac8409a6583a214cb (diff) |
Notes
-rw-r--r-- | databases/redis/Makefile | 3 | ||||
-rw-r--r-- | databases/redis/distinfo | 4 | ||||
-rw-r--r-- | databases/redis/pkg-plist | 4 |
3 files changed, 5 insertions, 6 deletions
diff --git a/databases/redis/Makefile b/databases/redis/Makefile index 558bd767c508..e8aaa4f35e61 100644 --- a/databases/redis/Makefile +++ b/databases/redis/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 2.8.7 -PORTREVISION= 1 +DISTVERSION= 2.8.8 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ diff --git a/databases/redis/distinfo b/databases/redis/distinfo index 3f488909a540..61e8334c18f2 100644 --- a/databases/redis/distinfo +++ b/databases/redis/distinfo @@ -1,2 +1,2 @@ -SHA256 (redis-2.8.7.tar.gz) = a93e352e50bcc076e649174319c2a819306735c1a1ee83d498ced146eda78670 -SIZE (redis-2.8.7.tar.gz) = 1064262 +SHA256 (redis-2.8.8.tar.gz) = fd2be11b8d9300d35b6bbed6fcd6fa6d7ef1a72ccaeb0cc991ce44dc49908bc8 +SIZE (redis-2.8.8.tar.gz) = 1073450 diff --git a/databases/redis/pkg-plist b/databases/redis/pkg-plist index b5d1a18922b7..090c9e89523e 100644 --- a/databases/redis/pkg-plist +++ b/databases/redis/pkg-plist @@ -4,10 +4,10 @@ bin/redis-check-dump bin/redis-cli bin/redis-sentinel bin/redis-server -@unexec (cmp -s %D/etc/redis.conf %D/etc/redis.conf.sample && rm -f %D/etc/redis.conf) || true +@unexec if cmp -s %D/etc/redis.conf %D/etc/redis.conf.sample; then rm -f %D/etc/redis.conf; fi etc/redis.conf.sample @exec [ -f %B/redis.conf ] || cp %B/%f %B/redis.conf -@unexec (cmp -s %D/etc/sentinel.conf %D/etc/sentinel.conf.sample && rm -f %D/etc/sentinel.conf) || true +@unexec if cmp -s %D/etc/sentinel.conf %D/etc/sentinel.conf.sample; then rm -f %D/etc/sentinel.conf; fi etc/sentinel.conf.sample @exec [ -f %B/sentinel.conf ] || cp %B/%f %B/sentinel.conf @exec [ -d %%REDIS_DBDIR%% ] || mkdir -p %%REDIS_DBDIR%% |