Sun Jan 3 07:00:04 2021 UTC ()
www/php-http3: update to 3.2.1

Update php-http3 to 3.2.1.

pkgsrc change:
* Update supported PHP versions.
* Add a few dependency.

3.2.1, 2019-06-07

* Fixed gh-issue #88: Unable to run test suite (Remi Collet)
* Fixed gh-issue #86: test failure with curl 7.64
* Fixed gh-issue #85: [-Wformat-extra-args] build warnings
* Fixed gh-issue #84: segfault and build failure since curl 7.62
* Fixed gh-issue #82: Test harness improvements (Chris Wright)
* Fixed gh-issue #64: compress and connecttimeout interfere with
  low_speed_limit (@rcanavan)
* Fixed http\QueryString::getGlobalInstance()
* Fixed missing 2nd reflection argument info of http\Client::notify()
* Fixed PHP-7.4 compatibility

3.2.0, 2018-07-19

* PHP-7.2 compatibility
* Fixed gh-issue #73: build fails with libidn and libidn2
* Added brotli compression support
* Implemented gh-issue #58: Notify observers before any request is built

3.2.0RC1, 2018-04-09

* PHP-7.2 compatibility
* Fixed gh-issue #73: build fails with libidn and libidn2
* Added brotli compression support
* Implemented gh-issue #58: Notify observers before any request is built

3.1.0, 2016-12-12

* Added http\Client\Curl\User interface for userland event loops
* Added http\Url::IGNORE_ERRORS, http\Url::SILENT_ERRORS and http\Url::STDFLAGS
* Added http\Client::setDebug(callable $debug)
* Added http\Client\Curl\FEATURES constants and namespace
* Added http\Client\Curl\VERSIONS constants and namespace
* Added share_cookies and share_ssl (libcurl >= 7.23.0) options to
  http\Client::configure()
* http\Client uses curl_share handles to properly share cookies and SSL/TLS
  sessions between requests
* Improved configure checks for default CA bundles
* Improved negotiation precision
* Fixed regression introduced by http\Params::PARSE_RFC5987: negotiation
  using the params parser would receive param keys without the trailing
  asterisk, stripped by http\Params::PARSE_RFC5987.
* Fix gh-issue #50: http\Client::dequeue() within http\Client::setDebug()
  causes segfault (Mike, Maik Wagner)
* Fix gh-issue #47: http\Url: Null pointer deref in sanitize_value() (Mike,
  @rc0r)
* Fix gh-issue #45: HTTP/2 response message parsing broken with libcurl >=
  7.49.1 (Mike)
* Fix gh-issue #43: Joining query with empty original variable in query
  (Mike, Sander Backus)
* Fix gh-issue #42: fatal error when using punycode in URLs (Mike, Sebastian
  Thielen)
* Fix gh-issue #41: Use curl_version_info_data.features when initializing
  options (Mike)
* Fix gh-issue #40: determinde the SSL backend used by curl at runtime
  (Mike, @rcanavan)
* Fix gh-issue #39: Notice: http\Client::enqueue(): Could not set option
  proxy_service_name (Mike, @rcanavan)
* Fix gh-issue #38: Persistent curl handles: error code not properly reset
  (Mike, @afflerbach)
* Fix gh-issue #36: Unexpected cookies sent if persistent_handle_id is used
  (Mike, @rcanavan, @afflerbach)
* Fix gh-issue #34: allow setting multiple headers with the same name (Mike,
  @rcanavan)
* Fix gh-issue #33: allow setting prodyhost request option to NULL (Mike,
  @rcanavan)
* Fix gh-issue #31: add/improve configure checks for default CA bundle/path
  (Mike, @rcanavan)


(taca)
diff -r1.22 -r1.23 pkgsrc/www/php-http3/Makefile
diff -r1.1 -r1.2 pkgsrc/www/php-http3/distinfo

cvs diff -r1.22 -r1.23 pkgsrc/www/php-http3/Makefile (expand / switch to unified diff)

--- pkgsrc/www/php-http3/Makefile 2020/05/27 19:37:44 1.22
+++ pkgsrc/www/php-http3/Makefile 2021/01/03 07:00:04 1.23
@@ -1,47 +1,40 @@ @@ -1,47 +1,40 @@
1# $NetBSD: Makefile,v 1.22 2020/05/27 19:37:44 wiz Exp $ 1# $NetBSD: Makefile,v 1.23 2021/01/03 07:00:04 taca Exp $
2 2
3MODNAME= http 3MODNAME= http
4PECL_VERSION= 3.0.1 4PECL_VERSION= 3.2.3
5CATEGORIES+= www 5CATEGORIES+= www
6 6
7PECL_DISTNAME= pecl_http-${PECL_VERSION} 7PECL_DISTNAME= pecl_http-${PECL_VERSION}
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://pecl.php.net/package/pecl_http 10HOMEPAGE= http://pecl.php.net/package/pecl_http
11COMMENT= PHP extension for extended HTTP support 11COMMENT= PHP extension for extended HTTP support
12PKGREVISION= 16 
13LICENSE= 2-clause-bsd AND isc 12LICENSE= 2-clause-bsd AND isc
14 13
15CONFLICTS= php-http-[0-9]* 14CONFLICTS= php-http-[0-9]*
16 15
17PHP_VERSIONS_ACCEPTED= 72 16PHP_VERSIONS_INCOMPATIBLE= 56
18 17
19USE_LANGUAGES= c c++ 18USE_LANGUAGES= c c++
20USE_LIBTOOL= yes 19USE_LIBTOOL= yes
21 20
22CONFIGURE_ARGS+= --with-http 21CONFIGURE_ARGS+= --with-http
23CONFIGURE_ARGS+= --with-http-libcurl-dir=${BUILDLINK_PREFIX.curl} 22CONFIGURE_ARGS+= --with-http-libcurl-dir=${BUILDLINK_PREFIX.curl}
24CONFIGURE_ARGS+= --with-http-libevent-dir=${BUILDLINK_PREFIX.libevent} 23CONFIGURE_ARGS+= --with-http-libevent-dir=${BUILDLINK_PREFIX.libevent}
25CONFIGURE_ARGS+= --with-http-libidn-dir=${BUILDLINK_PREFIX.libidn} 24CONFIGURE_ARGS+= --with-http-libidn-dir=${BUILDLINK_PREFIX.libidn}
 25CONFIGURE_ARGS+= --with-http-libicu-dir=${BUILDLINK_PREFIX.icu}
26CONFIGURE_ARGS+= --with-http-zlib-dir=${BUILDLINK_PREFIX.zlib} 26CONFIGURE_ARGS+= --with-http-zlib-dir=${BUILDLINK_PREFIX.zlib}
27 27
28SUBST_CLASSES+= ini 28BUILDLINK_API_DEPENDS.libevent= libevent>=2
29SUBST_STAGE.ini= pre-patch 
30SUBST_MESSAGE.ini= Redirecting to temporary php.ini file 
31SUBST_FILES.ini= config9.m4 
32SUBST_SED.ini= -e 's,PHP_EXECUTABLE -m,PHP_EXECUTABLE -c ${WRKDIR} -m,' 
33 
34post-extract: 
35 (${ECHO} "[PHP]" ;\ 
36 ${ECHO} "extension=propro.so" ; ${ECHO} "extension=raphf.so" \ 
37 ) > ${WRKDIR}/php.ini 
38 29
39.include "../../devel/libevent/buildlink3.mk" 30.include "../../devel/libevent/buildlink3.mk"
 31.include "../../textproc/icu/buildlink3.mk"
40.include "../../devel/libidn/buildlink3.mk" 32.include "../../devel/libidn/buildlink3.mk"
41.include "../../devel/php-raphf2/buildlink3.mk" 33.include "../../devel/php-raphf2/buildlink3.mk"
42.include "../../devel/zlib/buildlink3.mk" 34.include "../../devel/zlib/buildlink3.mk"
43.include "../../sysutils/file/buildlink3.mk" 35.include "../../sysutils/file/buildlink3.mk"
44.include "../../www/curl/buildlink3.mk" 36.include "../../www/curl/buildlink3.mk"
45.include "../../www/php-propro2/buildlink3.mk" 37.include "../../www/php-propro2/buildlink3.mk"
 38.include "../../converters/php-iconv/buildlink3.mk"
46.include "../../lang/php/ext.mk" 39.include "../../lang/php/ext.mk"
47.include "../../mk/bsd.pkg.mk" 40.include "../../mk/bsd.pkg.mk"

cvs diff -r1.1 -r1.2 pkgsrc/www/php-http3/distinfo (expand / switch to unified diff)

--- pkgsrc/www/php-http3/distinfo 2016/03/12 09:15:15 1.1
+++ pkgsrc/www/php-http3/distinfo 2021/01/03 07:00:04 1.2
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.1 2016/03/12 09:15:15 fhajny Exp $ 1$NetBSD: distinfo,v 1.2 2021/01/03 07:00:04 taca Exp $
2 2
3SHA1 (php-http/pecl_http-3.0.1.tgz) = 9d1015774dcd50ac7c7fa845062269fdbac4c719 3SHA1 (php-http/pecl_http-3.2.3.tgz) = 60a0a0cceb39e78f5ac3c41e8171807091488e69
4RMD160 (php-http/pecl_http-3.0.1.tgz) = 63ea318a0bb3858b894a675726de762d16a4941e 4RMD160 (php-http/pecl_http-3.2.3.tgz) = 437779f935b0ec0ef4ceb2dc45ce92d5bbd88a52
5SHA512 (php-http/pecl_http-3.0.1.tgz) = 344ae45987269d9505ffed6059be378005298d89c5e39bda6f771d8bf5a1998e91c214c03d32b9c78329c95e4928d35d3659dd3a1c70071aa5b2bd2763852098 5SHA512 (php-http/pecl_http-3.2.3.tgz) = e955e3246db9a9172081dd9a077154139c585bfce546e91839052bbab4d0db9d0695122574a66891ceba5c0b7e8a8f0768274e1516521ccb95cd19504dc13666
6Size (php-http/pecl_http-3.0.1.tgz) = 197372 bytes 6Size (php-http/pecl_http-3.2.3.tgz) = 220204 bytes