dcoppa de33ea3a09 Bugfixing update to redis-2.2.7
* Fixed bug #543-2 (the issue was reopened with a completely different report)
  that caused Redis to randomly crash on list push performed against lists
  with other clients blocked with BLPOP (or variants).

* Fixed bug #543. If you saw Redis instances crashing on List operations
  (only happening with a non-default max entry size ziplist setting in
  redis.conf) it was almost certainly this problem.

* Fixed a bug with replication where SLAVEOF NO ONE caused a slave to close the
  connection with all its slaves.
2011-05-11 11:47:48 +00:00

43 lines
1.0 KiB
Makefile

# $OpenBSD: Makefile,v 1.10 2011/05/11 11:47:48 dcoppa Exp $
COMMENT = persistent key-value database
DISTNAME = redis-2.2.7
CATEGORIES = databases
HOMEPAGE = http://redis.io/
MAINTAINER = David Coppa <dcoppa@openbsd.org>
# BSD
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
MASTER_SITES = http://redis.googlecode.com/files/
MODULES = lang/tcl
USE_GMAKE = Yes
FAKE_FLAGS = INSTALL_TOP=${WRKINST}${PREFIX}
# Replace cp by install
MAKE_FLAGS = INSTALL="${INSTALL_PROGRAM}"
WANTLIB += c m pthread
# Warning: executing the test suite can take a long time and will
# consume a lot of cpu cycles
REGRESS_DEPENDS = ${MODTCL_BUILD_DEPENDS}
REGRESS_FLAGS = TCL_BIN="${MODTCL_BIN}"
REGRESS_TARGET = test
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/redis
${INSTALL_DATA} ${WRKSRC}/redis.conf \
${PREFIX}/share/examples/redis/
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/redis
${INSTALL_DATA} ${WRKBUILD}/doc/* ${PREFIX}/share/doc/redis/
.include <bsd.port.mk>