Date: Sun, 23 Feb 2020 01:20:03 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r526868 - in head/misc: . dynomite dynomite/files Message-ID: <202002230120.01N1K314099239@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sun Feb 23 01:20:03 2020 New Revision: 526868 URL: https://svnweb.freebsd.org/changeset/ports/526868 Log: New port: misc/dynomite: Generic dynamo implementation for different k-v storage engines Added: head/misc/dynomite/ head/misc/dynomite/Makefile (contents, props changed) head/misc/dynomite/distinfo (contents, props changed) head/misc/dynomite/files/ head/misc/dynomite/files/patch-configure.ac (contents, props changed) head/misc/dynomite/files/patch-src_Makefile.am (contents, props changed) head/misc/dynomite/files/patch-src_seedsprovider_dyn__dns.c (contents, props changed) head/misc/dynomite/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Sun Feb 23 00:56:11 2020 (r526867) +++ head/misc/Makefile Sun Feb 23 01:20:03 2020 (r526868) @@ -79,6 +79,7 @@ SUBDIR += dnetc SUBDIR += dtach SUBDIR += dvorak7min + SUBDIR += dynomite SUBDIR += e2fsprogs-libblkid SUBDIR += e2fsprogs-libuuid SUBDIR += elixir-mime Added: head/misc/dynomite/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/dynomite/Makefile Sun Feb 23 01:20:03 2020 (r526868) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= dynomite +DISTVERSIONPREFIX= v +DISTVERSION= 0.6.21-rc2 +CATEGORIES= misc + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Generic dynamo implementation for different k-v storage engines + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= autoreconf gmake libtool ssl +GNU_CONFIGURE= yes +USE_GITHUB= yes +GH_ACCOUNT= Netflix + +LDFLAGS+= -lexecinfo + +PLIST_FILES= bin/dynomite-hash-tool \ + man/man8/dynomite.8.gz \ + sbin/dynomite \ + sbin/dynomite-test + +.include <bsd.port.mk> Added: head/misc/dynomite/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/dynomite/distinfo Sun Feb 23 01:20:03 2020 (r526868) @@ -0,0 +1,3 @@ +TIMESTAMP = 1582419601 +SHA256 (Netflix-dynomite-v0.6.21-rc2_GH0.tar.gz) = 37ac75726bc139db1063b8ffbfcd42dc83e9dd71f35ffaabf973900a0cb3e597 +SIZE (Netflix-dynomite-v0.6.21-rc2_GH0.tar.gz) = 1367829 Added: head/misc/dynomite/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/dynomite/files/patch-configure.ac Sun Feb 23 01:20:03 2020 (r526868) @@ -0,0 +1,11 @@ +--- configure.ac.orig 2020-02-23 01:10:45 UTC ++++ configure.ac +@@ -4,7 +4,7 @@ m4_ifndef([m4_esyscmd_s], [m4_define([m4_esyscmd_s], [ + + # Define the bug reporting address and package version + m4_define([DN_BUGS], [dynomite@netflix.com]) +-m4_define([DN_VERSION_STRING], m4_esyscmd_s([git describe --dirty --always --tags])) ++m4_define([DN_VERSION_STRING], [n/a]) + + # Initialize autoconf + AC_PREREQ([2.63]) Added: head/misc/dynomite/files/patch-src_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/dynomite/files/patch-src_Makefile.am Sun Feb 23 01:20:03 2020 (r526868) @@ -0,0 +1,20 @@ +--- src/Makefile.am.orig 2019-11-20 22:17:43 UTC ++++ src/Makefile.am +@@ -77,7 +77,7 @@ dynomite_LDADD = $(top_builddir)/src/hashkit/libhashki + dynomite_LDADD += $(top_builddir)/src/proto/libproto.a + dynomite_LDADD += $(top_builddir)/src/event/libevent.a + dynomite_LDADD += $(top_builddir)/src/entropy/libentropy.a +-dynomite_LDADD += $(top_builddir)/src/seedsprovider/libseedsprovider.a -lresolv ++dynomite_LDADD += $(top_builddir)/src/seedsprovider/libseedsprovider.a + dynomite_LDADD += $(top_builddir)/contrib/yaml-0.1.4/src/.libs/libyaml.a + + +@@ -128,7 +128,7 @@ dynomite_test_LDADD = $(top_builddir)/src/hashkit/libh + dynomite_test_LDADD += $(top_builddir)/src/proto/libproto.a + dynomite_test_LDADD += $(top_builddir)/src/event/libevent.a + dynomite_test_LDADD += $(top_builddir)/src/entropy/libentropy.a +-dynomite_test_LDADD += $(top_builddir)/src/seedsprovider/libseedsprovider.a -lresolv ++dynomite_test_LDADD += $(top_builddir)/src/seedsprovider/libseedsprovider.a + dynomite_test_LDADD += $(top_builddir)/contrib/yaml-0.1.4/src/.libs/libyaml.a + + if OS_BSD Added: head/misc/dynomite/files/patch-src_seedsprovider_dyn__dns.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/dynomite/files/patch-src_seedsprovider_dyn__dns.c Sun Feb 23 01:20:03 2020 (r526868) @@ -0,0 +1,11 @@ +--- src/seedsprovider/dyn_dns.c.orig 2020-02-23 01:01:26 UTC ++++ src/seedsprovider/dyn_dns.c +@@ -1,7 +1,7 @@ + #include <arpa/inet.h> + #include <arpa/nameser.h> + #include <netdb.h> +-#include <resolv.h> ++//#include <resolv.h> + #include <stdio.h> + #include <stdlib.h> + #include <sys/socket.h> Added: head/misc/dynomite/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/dynomite/pkg-descr Sun Feb 23 01:20:03 2020 (r526868) @@ -0,0 +1,11 @@ +Dynomite, inspired by Dynamo whitepaper, is a thin, distributed dynamo layer +for different storage engines and protocols. Currently these include Redis and +Memcached. Dynomite supports multi-datacenter replication and is designed for +high availability. + +The ultimate goal with Dynomite is to be able to implement high availability and +cross-datacenter replication on storage engines that do not inherently provide +that functionality. The implementation is efficient, not complex (few moving +parts), and highly performant. + +WWW: https://github.com/Netflix/dynomite
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002230120.01N1K314099239>