1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-17 08:01:36 +00:00

Remove deprecated and unsupported databases/redis1.

This commit is contained in:
Sergey A. Osokin 2011-02-24 19:48:19 +00:00
parent 4ee4432dfa
commit 31746e92a1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=269595
6 changed files with 1 additions and 93 deletions

1
MOVED
View File

@ -1542,3 +1542,4 @@ devel/root||2011-02-21|Has expired: Port does not build on supported versions of
net/ztelnet||2011-02-21|Has expired: unfetchable
print/kaspaliste||2011-02-21|Has expired: yes
sysutils/perf||2011-02-21|Has expired: Does not build on supported versions of FreeBSD
databases/redis1||2011-02-24|Removed

View File

@ -702,7 +702,6 @@
SUBDIR += rdb
SUBDIR += rdfdb
SUBDIR += redis
SUBDIR += redis1
SUBDIR += redis2
SUBDIR += rrdman
SUBDIR += rrdtool

View File

@ -1,69 +0,0 @@
# New ports collection makefile for: redis
# Date created: 03 Jul 2009
# Whom: Sergey Skvortsov <skv@protey.ru>
#
# $FreeBSD$
#
PORTNAME= redis
PORTVERSION= 1.2.6
PORTREVISION= 2
CATEGORIES= databases
MASTER_SITES= GOOGLE_CODE
MAINTAINER= osa@FreeBSD.org
COMMENT= A persistent key-value database with built-in net interface
LIB_DEPENDS= execinfo.1:${PORTSDIR}/devel/libexecinfo
CFLAGS+= -I${LOCALBASE}/include
CONFLICTS?= redis-2.*
USE_GMAKE= yes
USE_RC_SUBR= redis.sh
NO_LATEST_LINK= yes
BIN_FILES= redis-server redis-benchmark redis-cli
PKGINSTALL= ${WRKDIR}/pkg-install
PKGDEINSTALL= ${WRKDIR}/pkg-install
PKGMESSAGE= ${WRKDIR}/pkg-message
REDIS_USER?= redis
REDIS_UID?= 535
REDIS_GROUP?= redis
REDIS_GID?= 535
REDIS_DBDIR?= /var/db/redis
REDIS_RUNDIR?= /var/run/redis
REDIS_LOGDIR?= /var/log/redis
SUB_FILES= pkg-message pkg-install
SUB_LIST+= PORTNAME="${PORTNAME}" \
REDIS_USER="${REDIS_USER}" \
REDIS_UID="${REDIS_UID}" \
REDIS_GROUP="${REDIS_GROUP}" \
REDIS_GID="${REDIS_GID}" \
REDIS_LOGDIR="${REDIS_LOGDIR}" \
REDIS_DBDIR="${REDIS_DBDIR}" \
REDIS_RUNDIR="${REDIS_RUNDIR}"
PATTERN= '10d;13s|$$$$(ARCH) ||'
.if !defined(WITH_DEBUG)
PATTERN:= ${PATTERN:S/'$/;14s|^|\#|'/}
.endif
post-patch:
${REINPLACE_CMD} ${PATTERN} ${WRKSRC}/Makefile
post-build:
${SED} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
${WRKSRC}/redis.conf > ${WRKDIR}/redis.conf
do-install:
@PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
${INSTALL_PROGRAM} ${BIN_FILES:C!^!${WRKSRC}/!} ${PREFIX}/bin/
${INSTALL_DATA} ${WRKDIR}/redis.conf ${PREFIX}/etc/redis.conf.sample
@PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.include <bsd.port.mk>

View File

@ -1,3 +0,0 @@
MD5 (redis-1.2.6.tar.gz) = 0c5355e57606523f9e8ce816db5e542f
SHA256 (redis-1.2.6.tar.gz) = bed0641225f786f225a2c4897ffbec1e6573a3c31e9f899884ee3041eab96873
SIZE (redis-1.2.6.tar.gz) = 213341

View File

@ -1,14 +0,0 @@
Redis is a key-value database. It is similar to memcached but the
dataset is not volatile, and values can be strings, exactly like in
memcached, but also lists and sets with atomic operations to push/pop
elements.
In order to be very fast but at the same time persistent the whole
dataset is taken in memory and from time to time and/or when a number of
changes to the dataset are performed it is written asynchronously on
disk. You may lost the last few queries that is acceptable in many
applications but it is as fast as an in memory DB (Redis supports
non-blocking master-slave replication in order to solve this problem by
redundancy).
WWW: http://code.google.com/p/redis/

View File

@ -1,6 +0,0 @@
bin/redis-server
bin/redis-benchmark
bin/redis-cli
@unexec (cmp -s %D/etc/redis.conf %D/etc/redis.conf.sample && rm -f %D/etc/redis.conf) || true
etc/redis.conf.sample
@exec [ -f %B/redis.conf ] || cp %B/%f %B/redis.conf