From owner-svn-ports-all@FreeBSD.ORG Tue Feb 11 17:30:04 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1481D817; Tue, 11 Feb 2014 17:30:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F1BF119BC; Tue, 11 Feb 2014 17:30:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1BHU3aG099035; Tue, 11 Feb 2014 17:30:03 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1BHU2CT099013; Tue, 11 Feb 2014 17:30:02 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201402111730.s1BHU2CT099013@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 11 Feb 2014 17:30:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343786 - in head/www: . libhpack libhpack/files X-SVN-Group: ports-head 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.17 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: Tue, 11 Feb 2014 17:30:04 -0000 Author: sunpoet Date: Tue Feb 11 17:30:02 2014 New Revision: 343786 URL: http://svnweb.freebsd.org/changeset/ports/343786 QAT: https://qat.redports.org/buildarchive/r343786/ Log: - Add libhpack 0.0.20140206 libhpack implements HPACK (Header Compression for HTTP/2.0), a format adapted to efficiently represent HTTP header fields in the context of the upcoming HTTP/2.0 protocol. WWW: https://github.com/alobbs/libhpack Added: head/www/libhpack/ head/www/libhpack/Makefile (contents, props changed) head/www/libhpack/distinfo (contents, props changed) head/www/libhpack/files/ head/www/libhpack/files/patch-CMakeLists.txt (contents, props changed) head/www/libhpack/pkg-descr (contents, props changed) head/www/libhpack/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Feb 11 17:15:35 2014 (r343785) +++ head/www/Makefile Tue Feb 11 17:30:02 2014 (r343786) @@ -390,6 +390,7 @@ SUBDIR += libecap SUBDIR += libepc SUBDIR += libgtkhtml + SUBDIR += libhpack SUBDIR += libhtp-suricata SUBDIR += libmicrohttpd SUBDIR += libwww Added: head/www/libhpack/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/libhpack/Makefile Tue Feb 11 17:30:02 2014 (r343786) @@ -0,0 +1,32 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= libhpack +PORTVERSION= 0.0.20140206 +CATEGORIES= www +MASTER_SITES= LOCAL/sunpoet + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Implementation of HPACK (Header compression for HTTP/2.0) + +LICENSE= BSD2CLAUSE + +LIB_DEPENDS= libcheck.so:${PORTSDIR}/devel/libcheck + +CMAKE_ARGS= -DBUILD_DOCS=OFF \ + -DBUILD_TESTS=OFF \ + -DENABLE_GCOV=OFF \ + -DUSE_VALGRIND=OFF +USE_LDCONFIG= yes +USE_PYTHON_BUILD= 2 +USE_XZ= yes +USES= cmake pkgconfig shebangfix + +SHEBANG_FILES= gen-config.py +python_OLD_CMD= ${SETENV} python +python_CMD= ${PYTHON_CMD} + +post-patch: + @${REINPLACE_CMD} -e 's|STATIC|SHARED|' ${WRKSRC}/libchula/CMakeLists.txt ${WRKSRC}/libhpack/CMakeLists.txt + +.include Added: head/www/libhpack/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/libhpack/distinfo Tue Feb 11 17:30:02 2014 (r343786) @@ -0,0 +1,2 @@ +SHA256 (libhpack-0.0.20140206.tar.xz) = e9ac4a784eb76371cf98f06c0bf3bc5fba82ba97369aca6eea5daa4512ae7801 +SIZE (libhpack-0.0.20140206.tar.xz) = 644080 Added: head/www/libhpack/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/libhpack/files/patch-CMakeLists.txt Tue Feb 11 17:30:02 2014 (r343786) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2014-02-06 23:24:37.000000000 +0800 ++++ CMakeLists.txt 2014-02-07 00:29:15.339541948 +0800 +@@ -19,6 +19,8 @@ + + set(hpack_VERSION ${hpack_SOVERSION_MAJOR}.${hpack_SOVERSION_MINOR}.${hpack_SOVERSION_PATCH}) + set(hpack_SOVERSION ${hpack_SOVERSION_MAJOR}) ++set(chula_VERSION ${hpack_VERSION}) ++set(chula_SOVERSION ${hpack_SOVERSION}) + + # Options + option(BUILD_TESTS "Build the test suite" ON) Added: head/www/libhpack/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/libhpack/pkg-descr Tue Feb 11 17:30:02 2014 (r343786) @@ -0,0 +1,5 @@ +libhpack implements HPACK (Header Compression for HTTP/2.0), a format adapted to +efficiently represent HTTP header fields in the context of the upcoming HTTP/2.0 +protocol. + +WWW: https://github.com/alobbs/libhpack Added: head/www/libhpack/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/libhpack/pkg-plist Tue Feb 11 17:30:02 2014 (r343786) @@ -0,0 +1,6 @@ +lib/libchula.so +lib/libchula.so.1 +lib/libchula.so.1.0.0 +lib/libhpack.so +lib/libhpack.so.1 +lib/libhpack.so.1.0.0