Bug 179187 - New port: security/p5-gpgdir
Summary: New port: security/p5-gpgdir
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Po-Chuan Hsieh
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-02 06:00 UTC by nukama
Modified: 2013-09-09 19:30 UTC (History)
0 users

See Also:


Attachments
file.shar (1.99 KB, text/plain)
2013-06-02 06:00 UTC, nukama
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description nukama 2013-06-02 06:00:00 UTC
gpgdir is a perl script that uses the CPAN GnuPG::Interface module to encrypt and decrypt directories using a gpg key specified in ~/.gpgdirrc.

WWW: https://www.cipherdyne.org/~cipherdy/gpgdir/

Fix: Patch attached with submission follows:
How-To-Repeat: https://redports.org/buildarchive/20130602011300-23259/
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-06-02 06:00:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->perl

perl@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 Po-Chuan Hsieh freebsd_committer freebsd_triage 2013-09-09 17:12:00 UTC
Responsible Changed
From-To: perl->sunpoet

I'll take it.
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-09-09 19:20:29 UTC
Author: sunpoet
Date: Mon Sep  9 18:19:50 2013
New Revision: 326833
URL: http://svnweb.freebsd.org/changeset/ports/326833

Log:
  - Add gpgdir 1.9.5
  
  gpgdir is a perl script that uses the CPAN GnuPG::Interface module
  to encrypt and decrypt directories using a gpg key specified in ~/.gpgdirrc.
  
  WWW: http://www.cipherdyne.org/gpgdir/
  
  PR:		ports/179187
  Submitted by:	Hakisho Nukama <nukama@gmail.com>

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Mon Sep  9 18:19:46 2013	(r326832)
+++ head/security/Makefile	Mon Sep  9 18:19:50 2013	(r326833)
@@ -171,6 +171,7 @@
     SUBDIR += gpa
     SUBDIR += gpasman
     SUBDIR += gpass
+    SUBDIR += gpgdir
     SUBDIR += gpgme
     SUBDIR += gringotts
     SUBDIR += gsasl

Added: head/security/gpgdir/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/gpgdir/Makefile	Mon Sep  9 18:19:50 2013	(r326833)
@@ -0,0 +1,30 @@
+# Created by: Hakisho Nukama <nukama@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	gpgdir
+PORTVERSION=	1.9.5
+CATEGORIES=	security perl5
+MASTER_SITES=	https://www.cipherdyne.org/~cipherdy/gpgdir/download/ \
+		http://www.cipherdyne.org/gpgdir/download/
+
+MAINTAINER=	nukama+maintainer@gmail.com
+COMMENT=	Recursive directory encryption with GnuPG
+
+LICENSE=	GPLv2
+
+RUN_DEPENDS=	p5-Class-MethodMaker>=0:${PORTSDIR}/devel/p5-Class-MethodMaker \
+		p5-GnuPG-Interface>=0:${PORTSDIR}/security/p5-GnuPG-Interface \
+		p5-Term-ReadKey>=0:${PORTSDIR}/devel/p5-Term-ReadKey
+
+NO_BUILD=	yes
+USE_PERL5=	run
+USES=		perl5
+
+MAN1=		gpgdir.1
+PLIST_FILES=	bin/gpgdir
+
+do-install:
+	${INSTALL_SCRIPT} ${WRKSRC}/gpgdir ${PREFIX}/bin/
+	${INSTALL_MAN} ${WRKSRC}/gpgdir.1 ${MANPREFIX}/man/man1/
+
+.include <bsd.port.mk>

Added: head/security/gpgdir/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/gpgdir/distinfo	Mon Sep  9 18:19:50 2013	(r326833)
@@ -0,0 +1,2 @@
+SHA256 (gpgdir-1.9.5.tar.gz) = dd2a55f50ce78c446df9358f5f6c031996c3cf4ef07593da25708a1eb19fc859
+SIZE (gpgdir-1.9.5.tar.gz) = 233202

Added: head/security/gpgdir/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/gpgdir/pkg-descr	Mon Sep  9 18:19:50 2013	(r326833)
@@ -0,0 +1,4 @@
+gpgdir is a perl script that uses the CPAN GnuPG::Interface module 
+to encrypt and decrypt directories using a gpg key specified in ~/.gpgdirrc. 
+
+WWW: http://www.cipherdyne.org/gpgdir/
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 4 Po-Chuan Hsieh freebsd_committer freebsd_triage 2013-09-09 19:22:41 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!