From owner-svn-ports-head@freebsd.org Sun Feb 23 01:20:06 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1B7CB25379E; Sun, 23 Feb 2020 01:20:06 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Q6nK0R6hz3wg6; Sun, 23 Feb 2020 01:20:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 01D084948; Sun, 23 Feb 2020 01:20:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01N1K43k099246; Sun, 23 Feb 2020 01:20:04 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01N1K314099239; Sun, 23 Feb 2020 01:20:03 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202002230120.01N1K314099239@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 23 Feb 2020 01:20:03 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . dynomite dynomite/files X-SVN-Commit-Revision: 526868 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Feb 2020 01:20:06 -0000 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 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 + #include + #include +-#include ++//#include + #include + #include + #include 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