From owner-svn-ports-head@freebsd.org Wed Jan 29 19:13:30 2020 Return-Path: Delivered-To: svn-ports-head@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 145981FA26E; Wed, 29 Jan 2020 19:13:30 +0000 (UTC) (envelope-from sunpoet@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 487CnP3Rhjz3yw5; Wed, 29 Jan 2020 19:13:29 +0000 (UTC) (envelope-from sunpoet@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 4A46818E25; Wed, 29 Jan 2020 19:13:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00TJDTXT013996; Wed, 29 Jan 2020 19:13:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00TJDSJB013993; Wed, 29 Jan 2020 19:13:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202001291913.00TJDSJB013993@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 29 Jan 2020 19:13:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r524567 - head/net/libngtcp2 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/net/libngtcp2 X-SVN-Commit-Revision: 524567 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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, 29 Jan 2020 19:13:30 -0000 Author: sunpoet Date: Wed Jan 29 19:13:28 2020 New Revision: 524567 URL: https://svnweb.freebsd.org/changeset/ports/524567 Log: Add libngtcp2 0.1.0.g20200123 ngtcp2 project is an effort to implement QUIC protocol which is now being discussed in IETF QUICWG for its standardization. WWW: https://github.com/ngtcp2/ngtcp2 Added: head/net/libngtcp2/ head/net/libngtcp2/Makefile (contents, props changed) head/net/libngtcp2/distinfo (contents, props changed) head/net/libngtcp2/pkg-descr (contents, props changed) head/net/libngtcp2/pkg-plist (contents, props changed) Added: head/net/libngtcp2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libngtcp2/Makefile Wed Jan 29 19:13:28 2020 (r524567) @@ -0,0 +1,29 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= ngtcp2 +PORTVERSION= 0.1.0.g20200123 +CATEGORIES= net +PKGNAMEPREFIX= lib + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Implementment of QUIC protocol + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= autoreconf compiler:c++17-lang libtool pathfix pkgconfig + +CONFIGURE_ARGS= --enable-lib-only +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip +USE_CXXSTD= c++17 +USE_LDCONFIG= yes + +GH_TAGNAME= f0d2ef9 +USE_GITHUB= yes + +post-patch: + @${REINPLACE_CMD} -e 's|0.1.0-DEV|${PORTVERSION}|' ${WRKSRC}/configure.ac + +.include Added: head/net/libngtcp2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libngtcp2/distinfo Wed Jan 29 19:13:28 2020 (r524567) @@ -0,0 +1,3 @@ +TIMESTAMP = 1579863189 +SHA256 (ngtcp2-ngtcp2-0.1.0.g20200123-f0d2ef9_GH0.tar.gz) = bcb4f60664014fd6f48bef52d733834155b5aee09963ca0defffb2ac05cf5247 +SIZE (ngtcp2-ngtcp2-0.1.0.g20200123-f0d2ef9_GH0.tar.gz) = 329533 Added: head/net/libngtcp2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libngtcp2/pkg-descr Wed Jan 29 19:13:28 2020 (r524567) @@ -0,0 +1,4 @@ +ngtcp2 project is an effort to implement QUIC protocol which is now being +discussed in IETF QUICWG for its standardization. + +WWW: https://github.com/ngtcp2/ngtcp2 Added: head/net/libngtcp2/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libngtcp2/pkg-plist Wed Jan 29 19:13:28 2020 (r524567) @@ -0,0 +1,7 @@ +include/ngtcp2/ngtcp2.h +include/ngtcp2/version.h +lib/libngtcp2.a +lib/libngtcp2.so +lib/libngtcp2.so.0 +lib/libngtcp2.so.0.0.0 +libdata/pkgconfig/libngtcp2.pc