From owner-svn-ports-all@freebsd.org Mon Jul 10 11:45:12 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D447DA47A0; Mon, 10 Jul 2017 11:45:12 +0000 (UTC) (envelope-from bapt@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 mx1.freebsd.org (Postfix) with ESMTPS id 0129210F9; Mon, 10 Jul 2017 11:45:11 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6ABjBvc061130; Mon, 10 Jul 2017 11:45:11 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6ABjA1D061125; Mon, 10 Jul 2017 11:45:10 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201707101145.v6ABjA1D061125@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Mon, 10 Jul 2017 11:45:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445430 - in head/security: . libu2f-host X-SVN-Group: ports-head X-SVN-Commit-Author: bapt X-SVN-Commit-Paths: in head/security: . libu2f-host X-SVN-Commit-Revision: 445430 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.23 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: Mon, 10 Jul 2017 11:45:12 -0000 Author: bapt Date: Mon Jul 10 11:45:10 2017 New Revision: 445430 URL: https://svnweb.freebsd.org/changeset/ports/445430 Log: New port libu2f-host Libu2f-host provides a C library and command-line tool that implements the host-side of the U2F protocol. There are APIs to talk to a U2F device and perform the U2F Register and U2F Authenticate operations. WWW: https://developers.yubico.com/libu2f-host/ Added: head/security/libu2f-host/ head/security/libu2f-host/Makefile (contents, props changed) head/security/libu2f-host/distinfo (contents, props changed) head/security/libu2f-host/pkg-descr (contents, props changed) head/security/libu2f-host/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Jul 10 11:40:48 2017 (r445429) +++ head/security/Makefile Mon Jul 10 11:45:10 2017 (r445430) @@ -343,6 +343,7 @@ SUBDIR += libssh2 SUBDIR += libtasn1 SUBDIR += libtomcrypt + SUBDIR += libu2f-host SUBDIR += libuecc SUBDIR += libwhisker SUBDIR += libyubikey Added: head/security/libu2f-host/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libu2f-host/Makefile Mon Jul 10 11:45:10 2017 (r445430) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= libu2f-host +PORTVERSION= 1.1.3 +DISTVERSIONPREFIX= ${PORTNAME}- +CATEGORIES= security devel + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Yubico Universal 2nd Factor (U2F) Host C Library + +LICENSE= LGPL21 GPLv3 +LICENSE_COMB= multi + +BUILD_DEPENDS= gengetopt:devel/gengetopt \ + help2man:misc/help2man +LIB_DEPENDS= libhidapi.so:comms/hidapi \ + libjson-c.so:devel/json-c + +USE_GITHUB= yes +GH_ACCOUNT= Yubico + +USES= autoreconf pkgconfig gmake libtool +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +CONFIGRUE_ARGS= --disable-gtk-doc +INSTALL_TARGET= install-strip + +.include Added: head/security/libu2f-host/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libu2f-host/distinfo Mon Jul 10 11:45:10 2017 (r445430) @@ -0,0 +1,3 @@ +TIMESTAMP = 1499685915 +SHA256 (Yubico-libu2f-host-libu2f-host-1.1.3_GH0.tar.gz) = 2e43679655bbfe3bb1dfee16bb6c2a324d22c7907071a8703f5195eafe891e27 +SIZE (Yubico-libu2f-host-libu2f-host-1.1.3_GH0.tar.gz) = 142392 Added: head/security/libu2f-host/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libu2f-host/pkg-descr Mon Jul 10 11:45:10 2017 (r445430) @@ -0,0 +1,5 @@ +Libu2f-host provides a C library and command-line tool that implements the +host-side of the U2F protocol. There are APIs to talk to a U2F device and +perform the U2F Register and U2F Authenticate operations. + +WWW: https://developers.yubico.com/libu2f-host/ Added: head/security/libu2f-host/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libu2f-host/pkg-plist Mon Jul 10 11:45:10 2017 (r445430) @@ -0,0 +1,10 @@ +bin/u2f-host +include/u2f-host/u2f-host-types.h +include/u2f-host/u2f-host-version.h +include/u2f-host/u2f-host.h +lib/libu2f-host.a +lib/libu2f-host.so +lib/libu2f-host.so.0 +lib/libu2f-host.so.0.1.3 +libdata/pkgconfig/u2f-host.pc +man/man1/u2f-host.1.gz