svn commit: r459357 - in head/security: . minisign

Mark Felder feld at FreeBSD.org
Thu Jan 18 15:43:56 UTC 2018


Author: feld
Date: Thu Jan 18 15:43:54 2018
New Revision: 459357
URL: https://svnweb.freebsd.org/changeset/ports/459357

Log:
  Minisign is a dead simple tool to sign files and verify signatures.
  
  It is portable, lightweight, and uses the highly secure Ed25519
  public-key signature system.
  
  WWW: https://github.com/jedisct1/minisign

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Thu Jan 18 15:42:15 2018	(r459356)
+++ head/security/Makefile	Thu Jan 18 15:43:54 2018	(r459357)
@@ -409,6 +409,7 @@
     SUBDIR += metasploit
     SUBDIR += mhash
     SUBDIR += mindterm-binary
+    SUBDIR += minisign
     SUBDIR += monkeysphere
     SUBDIR += morphis
     SUBDIR += munge

Added: head/security/minisign/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/minisign/Makefile	Thu Jan 18 15:43:54 2018	(r459357)
@@ -0,0 +1,22 @@
+# Created by: Mark Felder <feld at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	minisign
+PORTVERSION=	0.7
+CATEGORIES=	security
+
+MAINTAINER=	feld at FreeBSD.org
+COMMENT=	Simple tool to sign files and verify signatures
+
+LICENSE=	ISCL
+
+LIB_DEPENDS=	libsodium.so:security/libsodium
+
+USES=	cmake localbase
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	jedisct1
+
+PLIST_FILES=	bin/minisign man/man1/minisign.1.gz
+
+.include <bsd.port.mk>

Added: head/security/minisign/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/minisign/distinfo	Thu Jan 18 15:43:54 2018	(r459357)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1516287856
+SHA256 (jedisct1-minisign-0.7_GH0.tar.gz) = 0c9f25ae647b6ba38cf7e6aea1da4e8fb20e1bc64ef0c679da737a38c8ad43ef
+SIZE (jedisct1-minisign-0.7_GH0.tar.gz) = 13229

Added: head/security/minisign/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/minisign/pkg-descr	Thu Jan 18 15:43:54 2018	(r459357)
@@ -0,0 +1,6 @@
+Minisign is a dead simple tool to sign files and verify signatures.
+
+It is portable, lightweight, and uses the highly secure Ed25519
+public-key signature system.
+
+WWW: https://github.com/jedisct1/minisign


More information about the svn-ports-all mailing list