Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 18 Jan 2020 18:55:54 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r523481 - in head/security: . horcrux
Message-ID:  <202001181855.00IItsWJ004803@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbaio
Date: Sat Jan 18 18:55:54 2020
New Revision: 523481
URL: https://svnweb.freebsd.org/changeset/ports/523481

Log:
  Add security/horcrux: Split files into encrypted fragments
  
  Utility to split files into encrypted fragments
  (using the shamir secret sharing scheme) so that
  you don't need to remember a passcode.
  
  WWW: https://github.com/jesseduffield/horcrux
  
  PR:		243423
  Submitted by:	Lewis Cook <vulcan@wired.sh>

Added:
  head/security/horcrux/
  head/security/horcrux/Makefile   (contents, props changed)
  head/security/horcrux/distinfo   (contents, props changed)
  head/security/horcrux/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sat Jan 18 18:49:40 2020	(r523480)
+++ head/security/Makefile	Sat Jan 18 18:55:54 2020	(r523481)
@@ -216,6 +216,7 @@
     SUBDIR += hmap
     SUBDIR += hockeypuck
     SUBDIR += honggfuzz
+    SUBDIR += horcrux
     SUBDIR += hotssh
     SUBDIR += hpenc
     SUBDIR += hydra

Added: head/security/horcrux/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/horcrux/Makefile	Sat Jan 18 18:55:54 2020	(r523481)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME=	horcrux
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.2
+CATEGORIES=	security
+
+MAINTAINER=	vulcan@wired.sh
+COMMENT=	Split files into encrypted fragments
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		go
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	jesseduffield
+GH_SUBDIR=	src/github.com/${GH_ACCOUNT}/${PORTNAME}
+
+PLIST_FILES=	bin/${PORTNAME}
+PORTDOCS=	README.md
+
+OPTIONS_DEFINE=	DOCS
+
+post-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>

Added: head/security/horcrux/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/horcrux/distinfo	Sat Jan 18 18:55:54 2020	(r523481)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1579338317
+SHA256 (jesseduffield-horcrux-v0.2_GH0.tar.gz) = eb2e4edab1938de6b724cf5ba5c8f28acd5b5da65065a4060a34672af5e1bafa
+SIZE (jesseduffield-horcrux-v0.2_GH0.tar.gz) = 13559

Added: head/security/horcrux/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/horcrux/pkg-descr	Sat Jan 18 18:55:54 2020	(r523481)
@@ -0,0 +1,5 @@
+Utility to split files into encrypted fragments
+(using the shamir secret sharing scheme) so that
+you don't need to remember a passcode.
+
+WWW: https://github.com/jesseduffield/horcrux



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001181855.00IItsWJ004803>