Index: branches/2018Q2/www/libnghttp2/Makefile =================================================================== --- branches/2018Q2/www/libnghttp2/Makefile (revision 467315) +++ branches/2018Q2/www/libnghttp2/Makefile (revision 467316) @@ -1,24 +1,24 @@ # Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ PORTNAME= nghttp2 -PORTVERSION= 1.31.0 +PORTVERSION= 1.31.1 DISTVERSIONPREFIX= v CATEGORIES= www net PKGNAMEPREFIX= lib MAINTAINER= sunpoet@FreeBSD.org COMMENT= HTTP/2.0 C Library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING CONFIGURE_ARGS= --enable-lib-only GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_LDCONFIG= yes USES= autoreconf libtool pathfix pkgconfig USE_GITHUB= yes .include Index: branches/2018Q2/www/libnghttp2/distinfo =================================================================== --- branches/2018Q2/www/libnghttp2/distinfo (revision 467315) +++ branches/2018Q2/www/libnghttp2/distinfo (revision 467316) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519823197 -SHA256 (nghttp2-nghttp2-v1.31.0_GH0.tar.gz) = aa460307e7b8c873e12e33ad04645bb90b4b88fbaacb30db4894c02582f11f1f -SIZE (nghttp2-nghttp2-v1.31.0_GH0.tar.gz) = 1744599 +TIMESTAMP = 1523619680 +SHA256 (nghttp2-nghttp2-v1.31.1_GH0.tar.gz) = 7790fa5c0a0d27860d55a60fe13877e391a8fd8220085c760c5d842bb5f6cc08 +SIZE (nghttp2-nghttp2-v1.31.1_GH0.tar.gz) = 1744550 Index: branches/2018Q2/www/libnghttp2/pkg-plist =================================================================== --- branches/2018Q2/www/libnghttp2/pkg-plist (revision 467315) +++ branches/2018Q2/www/libnghttp2/pkg-plist (revision 467316) @@ -1,7 +1,7 @@ include/nghttp2/nghttp2.h include/nghttp2/nghttp2ver.h lib/libnghttp2.a lib/libnghttp2.so lib/libnghttp2.so.14 -lib/libnghttp2.so.14.16.0 +lib/libnghttp2.so.14.16.1 libdata/pkgconfig/libnghttp2.pc Index: branches/2018Q2/www/nghttp2/Makefile =================================================================== --- branches/2018Q2/www/nghttp2/Makefile (revision 467315) +++ branches/2018Q2/www/nghttp2/Makefile (revision 467316) @@ -1,88 +1,88 @@ # Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ PORTNAME= nghttp2 -PORTVERSION= 1.31.0 +PORTVERSION= 1.31.1 DISTVERSIONPREFIX= v CATEGORIES= www net MAINTAINER= sunpoet@FreeBSD.org COMMENT= HTTP/2.0 C Library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_SSL= openssl-devel BROKEN_SSL_REASON_openssl-devel= error: use of undeclared identifier 'SSL_get0_next_proto_negotiated' BUILD_DEPENDS= libnghttp2>=${PORTVERSION}:www/libnghttp2 LIB_DEPENDS= libnghttp2.so:www/libnghttp2 OPTIONS_DEFINE= APP ASIO DOCS EXAMPLES HPACK OPTIONS_DEFAULT=APP HPACK OPTIONS_SUB= yes APP_DESC= Build h2load, nghttp, nghttpd and nghttpx CONFIGURE_ARGS= --disable-python-bindings --with-jemalloc CONFIGURE_ENV= OPENSSL_CFLAGS="-I${OPENSSLINC}" \ OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl" GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_CXXSTD= c++11 USE_LDCONFIG= yes USE_RC_SUBR= nghttpx USES= autoreconf compiler:c++11-lib gmake libtool localbase pathfix pkgconfig ssl PORTDATA= fetch-ocsp-response PORTDOCS= * PORTEXAMPLES= * USE_GITHUB= yes APP_BUILD_DEPENDS= c-ares>=1.7.5:dns/c-ares \ libev>=4.11:devel/libev APP_CONFIGURE_ENABLE= app APP_CONFIGURE_OFF= --without-libxml2 APP_LIB_DEPENDS= libcares.so:dns/c-ares \ libev.so:devel/libev APP_USE= GNOME=libxml2 APP_USES= gnome ASIO_BUILD_DEPENDS= boost-libs>=1.54.0:devel/boost-libs ASIO_CONFIGURE_OFF= --with-boost=no ASIO_CONFIGURE_ON= --enable-asio-lib --with-boost-asio --with-boost-system --with-boost-thread ASIO_LIB_DEPENDS= libboost_thread.so:devel/boost-libs EXAMPLES_CONFIGURE_ENABLE= examples EXAMPLES_BUILD_DEPENDS= libevent>=2.0.8:devel/libevent EXAMPLES_LIB_DEPENDS= libevent_openssl.so:devel/libevent HPACK_BUILD_DEPENDS= jansson>=2.5:devel/jansson HPACK_CONFIGURE_ENABLE= hpack-tools HPACK_LIB_DEPENDS= libjansson.so:devel/jansson .include post-patch: @${REINPLACE_CMD} -e '/^SUBDIRS = / s| lib||' ${WRKSRC}/Makefile.am @${REINPLACE_CMD} -e 's|$$[({]top_builddir[})]/lib/libnghttp2.la|-lnghttp2|' ${WRKSRC}/*/Makefile.am @${REINPLACE_CMD} -e '1d' ${WRKSRC}/script/fetch-ocsp-response # lib/libnghttp2.* are not available until configure phase post-configure: @${MKDIR} ${WRKSRC}/lib/.libs/ @${CP} ${LOCALBASE}/lib/libnghttp2.so* ${WRKSRC}/lib/.libs/ @cd ${WRKSRC}/lib/.libs/ && ${AR} x ${LOCALBASE}/lib/libnghttp2.a # Disable thread_local support for hosts without __cxa_thread_atexit() # See PR/192320 for details .if ${OPSYS} == FreeBSD && ((${OSVERSION} < 1003506) || (${OSVERSION} == 1100500)) @${REINPLACE_CMD} -e '/HAVE_THREAD_LOCAL/d' ${WRKSRC}/config.h .endif post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/nghttpx/ ${INSTALL_DATA} ${FILESDIR}/nghttpx.conf.sample ${STAGEDIR}${PREFIX}/etc/nghttpx/nghttpx.conf.sample post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ ${INSTALL_DATA} ${WRKSRC}/examples/*.c* ${STAGEDIR}${EXAMPLESDIR}/ cd ${WRKSRC}/examples/ && ${INSTALL_PROGRAM} client deflate libevent-client libevent-server ${STAGEDIR}${EXAMPLESDIR}/ .include Index: branches/2018Q2/www/nghttp2/distinfo =================================================================== --- branches/2018Q2/www/nghttp2/distinfo (revision 467315) +++ branches/2018Q2/www/nghttp2/distinfo (revision 467316) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519823197 -SHA256 (nghttp2-nghttp2-v1.31.0_GH0.tar.gz) = aa460307e7b8c873e12e33ad04645bb90b4b88fbaacb30db4894c02582f11f1f -SIZE (nghttp2-nghttp2-v1.31.0_GH0.tar.gz) = 1744599 +TIMESTAMP = 1523619680 +SHA256 (nghttp2-nghttp2-v1.31.1_GH0.tar.gz) = 7790fa5c0a0d27860d55a60fe13877e391a8fd8220085c760c5d842bb5f6cc08 +SIZE (nghttp2-nghttp2-v1.31.1_GH0.tar.gz) = 1744550 Index: branches/2018Q2 =================================================================== --- branches/2018Q2 (revision 467315) +++ branches/2018Q2 (revision 467316) Property changes on: branches/2018Q2 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r467255-467256