From owner-svn-ports-all@freebsd.org Thu Jan 7 15:46:16 2021 Return-Path: Delivered-To: svn-ports-all@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 E94124D41E6; Thu, 7 Jan 2021 15:46:16 +0000 (UTC) (envelope-from nc@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4DBVvX6Jqcz3Dn5; Thu, 7 Jan 2021 15:46:16 +0000 (UTC) (envelope-from nc@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 BDFA813479; Thu, 7 Jan 2021 15:46:16 +0000 (UTC) (envelope-from nc@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 107FkGLu039351; Thu, 7 Jan 2021 15:46:16 GMT (envelope-from nc@FreeBSD.org) Received: (from nc@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 107FkFaM039347; Thu, 7 Jan 2021 15:46:15 GMT (envelope-from nc@FreeBSD.org) Message-Id: <202101071546.107FkFaM039347@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nc set sender to nc@FreeBSD.org using -f From: Neel Chauhan Date: Thu, 7 Jan 2021 15:46:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r560718 - in head/security: . gpg-gui X-SVN-Group: ports-head X-SVN-Commit-Author: nc X-SVN-Commit-Paths: in head/security: . gpg-gui X-SVN-Commit-Revision: 560718 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2021 15:46:17 -0000 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 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