From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:26:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 930F3CE6; Sun, 19 Jan 2014 09:26:23 +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 7E8071DB0; Sun, 19 Jan 2014 09:26:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9QNB8024571; Sun, 19 Jan 2014 09:26:23 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9QMeK024567; Sun, 19 Jan 2014 09:26:22 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190926.s0J9QMeK024567@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:26:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340241 - head/www/spdylay X-SVN-Group: ports-head 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.17 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: Sun, 19 Jan 2014 09:26:23 -0000 Author: sunpoet Date: Sun Jan 19 09:26:22 2014 New Revision: 340241 URL: http://svnweb.freebsd.org/changeset/ports/340241 QAT: https://qat.redports.org/buildarchive/r340241/ Log: - Update to 1.2.2 - Update MASTER_SITES - Update COMMENT and pkg-descr Changes: https://github.com/tatsuhiro-t/spdylay/blob/master/NEWS PR: ports/185634 Submitted by: pluknet Modified: head/www/spdylay/Makefile head/www/spdylay/distinfo head/www/spdylay/pkg-descr head/www/spdylay/pkg-plist Modified: head/www/spdylay/Makefile ============================================================================== --- head/www/spdylay/Makefile Sun Jan 19 09:24:34 2014 (r340240) +++ head/www/spdylay/Makefile Sun Jan 19 09:26:22 2014 (r340241) @@ -2,13 +2,12 @@ # $FreeBSD$ PORTNAME= spdylay -PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTVERSION= 1.2.2 CATEGORIES= www net -MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION} +MASTER_SITES= https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/v${PORTVERSION}/ MAINTAINER= sunpoet@FreeBSD.org -COMMENT= SPDY protocol version 2 and 3 implementation in C +COMMENT= SPDY protocol version 2, 3 and 3.1 implementation in C LICENSE= MIT @@ -16,7 +15,7 @@ LIB_DEPENDS= libevent_openssl.so:${PORTS CONFIGURE_ARGS= --enable-examples CONFIGURE_ENV= OPENSSL_CFLAGS="-I${OPENSSLINC}" \ - OPENSSL_LIBS="-L${OPENSSLLIB} -lssl" \ + OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl" \ ZLIB_CFLAGS="-I${INCLUDEDIR}" \ ZLIB_LIBS="-L${LIBDIR} -lz" GNU_CONFIGURE= yes @@ -36,7 +35,7 @@ IGNORE= spdylay requires OpenSSL 1.0.1+ .endif post-build: - @${STRIP_CMD} ${WRKSRC}/lib/.libs/libspdylay.so.6 + @${STRIP_CMD} ${WRKSRC}/lib/.libs/libspdylay.so.7 post-install: @${INSTALL_SCRIPT} ${WRKSRC}/examples/spdycli ${STAGEDIR}${PREFIX}/bin/ Modified: head/www/spdylay/distinfo ============================================================================== --- head/www/spdylay/distinfo Sun Jan 19 09:24:34 2014 (r340240) +++ head/www/spdylay/distinfo Sun Jan 19 09:26:22 2014 (r340241) @@ -1,2 +1,2 @@ -SHA256 (spdylay-1.1.0.tar.xz) = f6382926fc42031bc01b9402be606356430ec122db0ff9bbeac895cc84085ec7 -SIZE (spdylay-1.1.0.tar.xz) = 411900 +SHA256 (spdylay-1.2.2.tar.xz) = 010e32f657deda922859293b5117db8a2c4f4b5d8213b1a96f36de55c32ec582 +SIZE (spdylay-1.2.2.tar.xz) = 414456 Modified: head/www/spdylay/pkg-descr ============================================================================== --- head/www/spdylay/pkg-descr Sun Jan 19 09:24:34 2014 (r340240) +++ head/www/spdylay/pkg-descr Sun Jan 19 09:26:22 2014 (r340241) @@ -1,12 +1,12 @@ Spdylay - SPDY C Library This is an experimental implementation of Google's SPDY protocol in C. This -library provides SPDY version 2 and 3 framing layer implementation. It does not -perform any I/O operations. When the library needs them, it calls the callback -functions provided by the application. It also does not include any event -polling mechanism, so the application can freely choose the way of handling -events. This library code does not depend on any particular SSL library (except -for example programs which depend on OpenSSL 1.0.1 or later). +library provides SPDY version 2, 3 and 3.1 framing layer implementation. It does +not perform any I/O operations. When the library needs them, it calls the +callback functions provided by the application. It also does not include any +event polling mechanism, so the application can freely choose the way of +handling events. This library code does not depend on any particular SSL library +(except for example programs which depend on OpenSSL 1.0.1 or later). This project also develops SPDY client, server and proxy on top of Spdylay library. Modified: head/www/spdylay/pkg-plist ============================================================================== --- head/www/spdylay/pkg-plist Sun Jan 19 09:24:34 2014 (r340240) +++ head/www/spdylay/pkg-plist Sun Jan 19 09:26:22 2014 (r340241) @@ -8,6 +8,6 @@ include/spdylay/spdylayver.h lib/libspdylay.a lib/libspdylay.la lib/libspdylay.so -lib/libspdylay.so.6 +lib/libspdylay.so.7 libdata/pkgconfig/libspdylay.pc @dirrm include/spdylay