pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Add disque-1.0-rc1 as wip/disque.



Module Name:	pkgsrc-wip
Committed By:	Christian Koch <cfkoch%edgebsd.org@localhost>
Pushed By:	cfkoch
Date:		Sun Jan 10 01:54:56 2016 -0800
Changeset:	572bcde2955e71873303a226119940125fbee369

Added Files:
	disque/DESCR
	disque/Makefile
	disque/PLIST
	disque/distinfo

Log Message:
Add disque-1.0-rc1 as wip/disque.

Disque is an ongoing experiment to build a distributed, in-memory, message
broker. Its goal is to capture the essence of the "Redis as a jobs queue"
use case, which is usually implemented using blocking list operations, and
move it into an ad-hoc, self-contained, scalable, and fault tolerant design,
with simple to understand properties and guarantees, but still resembling
Redis in terms of simplicity, performance, and implementation as a C
non-blocking networked server.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=572bcde2955e71873303a226119940125fbee369

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 disque/DESCR    |  7 +++++++
 disque/Makefile | 25 +++++++++++++++++++++++++
 disque/PLIST    |  4 ++++
 disque/distinfo |  5 +++++
 4 files changed, 41 insertions(+)

diffs:
diff --git a/disque/DESCR b/disque/DESCR
new file mode 100644
index 0000000..9e61e57
--- /dev/null
+++ b/disque/DESCR
@@ -0,0 +1,7 @@
+Disque is an ongoing experiment to build a distributed, in-memory, message
+broker. Its goal is to capture the essence of the "Redis as a jobs queue"
+use case, which is usually implemented using blocking list operations, and
+move it into an ad-hoc, self-contained, scalable, and fault tolerant design,
+with simple to understand properties and guarantees, but still resembling
+Redis in terms of simplicity, performance, and implementation as a C
+non-blocking networked server.
diff --git a/disque/Makefile b/disque/Makefile
new file mode 100644
index 0000000..ca9d309
--- /dev/null
+++ b/disque/Makefile
@@ -0,0 +1,25 @@
+# $NetBSD$
+
+PKGNAME=	disque-1.0rc1
+DISTNAME=	disque-1.0-rc1
+CATEGORIES=	misc
+MASTER_SITES=	${MASTER_SITE_GITHUB:=antirez/}
+GITHUB_PROJECT=	disque
+GITHUB_TAG=	1.0-rc1
+
+MAINTAINER=	cfkoch%edgebsd.org@localhost
+HOMEPAGE=	https://github.com/antirez/disque
+COMMENT=	Distributed message broker
+LICENSE=	modified-bsd
+
+USE_LANGUAGES=	c99
+USE_TOOLS+=	gmake
+
+SUBST_CLASSES+=			destdir-support
+SUBST_STAGE.destdir-support=	pre-install
+SUBST_MESSAGE.destdir-support=	Adding DESTDIR support.
+SUBST_FILES.destdir-support=	src/Makefile
+SUBST_SED.destdir-support=	-e 's,$$(PREFIX),$$(DESTDIR)$$(PREFIX),'
+
+.include "../../mk/subst.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/disque/PLIST b/disque/PLIST
new file mode 100644
index 0000000..09653dd
--- /dev/null
+++ b/disque/PLIST
@@ -0,0 +1,4 @@
+@comment $NetBSD$
+bin/disque
+bin/disque-check-aof
+bin/disque-server
diff --git a/disque/distinfo b/disque/distinfo
new file mode 100644
index 0000000..cb9cf09
--- /dev/null
+++ b/disque/distinfo
@@ -0,0 +1,5 @@
+$NetBSD$
+
+SHA1 (disque-1.0-rc1.tar.gz) = b82a588a12994a14d5a2817b485be2f21808ad6a
+RMD160 (disque-1.0-rc1.tar.gz) = 3628de223e6a2790beed70f633e3a6ff5f823258
+Size (disque-1.0-rc1.tar.gz) = 881272 bytes


Home | Main Index | Thread Index | Old Index