From owner-dev-commits-ports-all@freebsd.org Sun Jul 4 19:38:27 2021 Return-Path: Delivered-To: dev-commits-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 DCF9464A702; Sun, 4 Jul 2021 19:38:27 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GHzdH5qzZz3tBN; Sun, 4 Jul 2021 19:38:27 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ACCCF18709; Sun, 4 Jul 2021 19:38:27 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 164JcRgY037377; Sun, 4 Jul 2021 19:38:27 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 164JcRsP037376; Sun, 4 Jul 2021 19:38:27 GMT (envelope-from git) Date: Sun, 4 Jul 2021 19:38:27 GMT Message-Id: <202107041938.164JcRsP037376@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Bernard Spil Subject: git: aa204dbc489a - main - security/nextcloud-twofactor_webauthn: Add new port MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: brnrd X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: aa204dbc489a748aa4dc6c7e0810ec30f51139ad Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jul 2021 19:38:27 -0000 The branch main has been updated by brnrd: URL: https://cgit.FreeBSD.org/ports/commit/?id=aa204dbc489a748aa4dc6c7e0810ec30f51139ad commit aa204dbc489a748aa4dc6c7e0810ec30f51139ad Author: Bernard Spil AuthorDate: 2021-07-04 19:37:00 +0000 Commit: Bernard Spil CommitDate: 2021-07-04 19:37:00 +0000 security/nextcloud-twofactor_webauthn: Add new port PR: 252491 Submitted by: Henrik Rosenke --- security/Makefile | 1 + security/nextcloud-twofactor_webauthn/Makefile | 36 +++++++++++++++++++++++++ security/nextcloud-twofactor_webauthn/distinfo | 3 +++ security/nextcloud-twofactor_webauthn/pkg-descr | 3 +++ 4 files changed, 43 insertions(+) diff --git a/security/Makefile b/security/Makefile index fd7179149d85..ee872ea21ec1 100644 --- a/security/Makefile +++ b/security/Makefile @@ -380,6 +380,7 @@ SUBDIR += nextcloud-passman SUBDIR += nextcloud-twofactor_totp SUBDIR += nextcloud-twofactor_u2f + SUBDIR += nextcloud-twofactor_webauthn SUBDIR += nflib SUBDIR += ngrok SUBDIR += nikto diff --git a/security/nextcloud-twofactor_webauthn/Makefile b/security/nextcloud-twofactor_webauthn/Makefile new file mode 100644 index 000000000000..7bbfb09ff088 --- /dev/null +++ b/security/nextcloud-twofactor_webauthn/Makefile @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= twofactor_webauthn +PORTVERSION= 0.2.10 +CATEGORIES= security +PKGNAMEPREFIX= nextcloud- +PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} + +MAINTAINER= rosenke@dssgmbh.de +COMMENT= U2F webauthn app for Nextcloud + +LICENSE= AGPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= nextcloud${PHP_PKGNAMESUFFIX}>=16:www/nextcloud@${PHP_FLAVOR} + +USES= php:flavors + +MASTER_SITES= https://github.com/michib/nextcloud_twofactor_webauthn/releases/download/v${PORTVERSION}/ + +WRKSRC= ${WRKDIR}/${PORTNAME} + +NO_BUILD= yes +NO_ARCH= yes + +WWWDIR= ${PREFIX}/www/nextcloud/apps-pkg/${PORTNAME} + +PLIST_DIRS= ${WWWDIR}/vendor/bin \ + ${WWWDIR}/vendor/ramsey/collection/bin +do-install: + ${MKDIR} ${STAGEDIR}${WWWDIR} + (cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}) + (cd ${WRKSRC}; ${FIND} . -not -type d) | ${SORT} | \ + ${SED} -e 's,^\.,${WWWDIR_REL},' >> ${TMPPLIST} + +.include diff --git a/security/nextcloud-twofactor_webauthn/distinfo b/security/nextcloud-twofactor_webauthn/distinfo new file mode 100644 index 000000000000..5da705f9b9d5 --- /dev/null +++ b/security/nextcloud-twofactor_webauthn/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1625419973 +SHA256 (twofactor_webauthn-0.2.10.tar.gz) = 0d42b6be330feb73898ef83ddf5c7b7714468a56d11ae9786b3a870acf844fd4 +SIZE (twofactor_webauthn-0.2.10.tar.gz) = 1926424 diff --git a/security/nextcloud-twofactor_webauthn/pkg-descr b/security/nextcloud-twofactor_webauthn/pkg-descr new file mode 100644 index 000000000000..fe2c347f0bec --- /dev/null +++ b/security/nextcloud-twofactor_webauthn/pkg-descr @@ -0,0 +1,3 @@ +A two-factor provider for Webauthn devices + +WWW: https://apps.nextcloud.com/apps/twofactor_webauthn