Date: Thu, 7 Jan 2021 15:46:15 +0000 (UTC) From: Neel Chauhan <nc@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r560718 - in head/security: . gpg-gui Message-ID: <202101071546.107FkFaM039347@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: nc Date: Thu Jan 7 15:46:15 2021 New Revision: 560718 URL: https://svnweb.freebsd.org/changeset/ports/560718 Log: security/gpg-gui: GUI wrapper for symmetric GPG file encryption Reviewed by: 0mp (mentor) Approved by: 0mp (mentor) Differential Revision: https://reviews.freebsd.org/D28014 Added: head/security/gpg-gui/ head/security/gpg-gui/Makefile (contents, props changed) head/security/gpg-gui/distinfo (contents, props changed) head/security/gpg-gui/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Jan 7 15:44:17 2021 (r560717) +++ head/security/Makefile Thu Jan 7 15:46:15 2021 (r560718) @@ -193,6 +193,7 @@ SUBDIR += govpn SUBDIR += gpa SUBDIR += gpgdir + SUBDIR += gpg-gui SUBDIR += gpgme SUBDIR += gpgme-cpp SUBDIR += gpgme-qt5 Added: head/security/gpg-gui/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/gpg-gui/Makefile Thu Jan 7 15:46:15 2021 (r560718) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= gpg-gui +DISTVERSIONPREFIX= v +DISTVERSION= 0.1.2 +CATEGORIES= security + +MAINTAINER= nc@FreeBSD.org +COMMENT= GUI wrapper for symmetric GPG file encryption + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= valac:lang/vala +RUN_DEPENDS= gpg2:security/gnupg + +USES= gnome meson pkgconfig +USE_GNOME= glib20 gtk30 + +USE_GITHUB= yes +GH_ACCOUNT= AnsgarKlein +GH_PROJECT= GPG-Gui + +PLIST_FILES= bin/${PORTNAME} + +.include <bsd.port.mk> Added: head/security/gpg-gui/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/gpg-gui/distinfo Thu Jan 7 15:46:15 2021 (r560718) @@ -0,0 +1,3 @@ +TIMESTAMP = 1609960208 +SHA256 (AnsgarKlein-GPG-Gui-v0.1.2_GH0.tar.gz) = 7851a621e70be2be98ae2e4a4185877ecddd843e416d19099a5575f4281e44c8 +SIZE (AnsgarKlein-GPG-Gui-v0.1.2_GH0.tar.gz) = 52279 Added: head/security/gpg-gui/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/gpg-gui/pkg-descr Thu Jan 7 15:46:15 2021 (r560718) @@ -0,0 +1,7 @@ +A simple GUI frontend that interacts with the GPG application to encrypt and +decrypt files symmetrically (using passwords not private/public keys). + +The GUI provides a convenient way to use GPG, rather than through the terminal, +making it usable for unexperienced users. + +WWW: https://github.com/AnsgarKlein/GPG-Gui
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101071546.107FkFaM039347>