From owner-svn-ports-head@freebsd.org Wed Feb 27 04:07:12 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9BAEE150F591; Wed, 27 Feb 2019 04:07:12 +0000 (UTC) (envelope-from tobik@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) server-signature RSA-PSS (4096 bits) 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 3C3FE8B5AD; Wed, 27 Feb 2019 04:07:12 +0000 (UTC) (envelope-from tobik@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 2DFDAF5EB; Wed, 27 Feb 2019 04:07:12 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1R47Cla088086; Wed, 27 Feb 2019 04:07:12 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1R47BW2088083; Wed, 27 Feb 2019 04:07:11 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201902270407.x1R47BW2088083@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 27 Feb 2019 04:07:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494017 - in head/x11: . rofi-pass X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/x11: . rofi-pass X-SVN-Commit-Revision: 494017 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3C3FE8B5AD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2019 04:07:12 -0000 Author: tobik Date: Wed Feb 27 04:07:11 2019 New Revision: 494017 URL: https://svnweb.freebsd.org/changeset/ports/494017 Log: New port: x11/rofi-pass A bash script to handle Simple Password Store in a convenient way using rofi. Features: - Open URLs of entries with hotkey - Add new Entries to Password Storage - Edit existing Entries - Generate new passwords for entries - Inline view, which can copy/type individual entries - Move/Delete existing entries - Type any field from entry - Auto-typing of user and/or password fields - Generating OTPs WWW: https://github.com/carnager/rofi-pass PR: 235114 Submitted by: alex@xanderio.de Added: head/x11/rofi-pass/ head/x11/rofi-pass/Makefile (contents, props changed) head/x11/rofi-pass/distinfo (contents, props changed) head/x11/rofi-pass/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Wed Feb 27 03:51:47 2019 (r494016) +++ head/x11/Makefile Wed Feb 27 04:07:11 2019 (r494017) @@ -282,6 +282,7 @@ SUBDIR += rendercheck SUBDIR += rgb SUBDIR += rofi + SUBDIR += rofi-pass SUBDIR += rox-wallpaper SUBDIR += roxbg SUBDIR += roxterm Added: head/x11/rofi-pass/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/rofi-pass/Makefile Wed Feb 27 04:07:11 2019 (r494017) @@ -0,0 +1,45 @@ +# $FreeBSD$ + +PORTNAME= rofi-pass +DISTVERSION= 2.0.2 +CATEGORIES= x11 + +MAINTAINER= alex@xanderio.de +COMMENT= Rofi frontend for pass + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +xRUN_DEPENDS= bash:shells/bash \ + gawk:lang/gawk \ + ${LOCALBASE}/bin/grep:textproc/gnugrep \ + pass:sysutils/password-store \ + pwgen:sysutils/pwgen \ + qrencode:graphics/libqrencode \ + rofi:x11/rofi \ + xdotool:x11/xdotool + +USE_GITHUB= yes +GH_ACCOUNT= carnager + +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= bin/addpass \ + bin/rofi-pass \ + "@sample etc/rofi-pass.conf.sample" +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/addpass ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/rofi-pass ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/config.example \ + ${STAGEDIR}${PREFIX}/etc/rofi-pass.conf.sample + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include Added: head/x11/rofi-pass/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/rofi-pass/distinfo Wed Feb 27 04:07:11 2019 (r494017) @@ -0,0 +1,3 @@ +TIMESTAMP = 1550147378 +SHA256 (carnager-rofi-pass-2.0.2_GH0.tar.gz) = 6ba8d08c39d8df671ce37f272bd05b0926365d3512f5037dab699b462015b22d +SIZE (carnager-rofi-pass-2.0.2_GH0.tar.gz) = 58897 Added: head/x11/rofi-pass/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/rofi-pass/pkg-descr Wed Feb 27 04:07:11 2019 (r494017) @@ -0,0 +1,15 @@ +A bash script to handle Simple Password Store in a convenient way +using rofi. + +Features: +- Open URLs of entries with hotkey +- Add new Entries to Password Storage +- Edit existing Entries +- Generate new passwords for entries +- Inline view, which can copy/type individual entries +- Move/Delete existing entries +- Type any field from entry +- Auto-typing of user and/or password fields +- Generating OTPs + +WWW: https://github.com/carnager/rofi-pass