diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-10-11 22:22:06 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-10-11 22:22:06 +0000 |
commit | 4ec9cc421bfa8bc2fc78a224f10de1bd8b222487 (patch) | |
tree | d44df4abf09ac528bb2b5df7e6e271b884683c1d | |
parent | 9e0578a728b750cca115fb12c5dc1c4e6114bb60 (diff) | |
download | ports-4ec9cc421bfa8bc2fc78a224f10de1bd8b222487.tar.gz ports-4ec9cc421bfa8bc2fc78a224f10de1bd8b222487.zip |
databases/pecl-couchbase: Update to 4.1.6
Changes: https://pecl.php.net/package-changelog.php?package=couchbase
https://github.com/couchbase/couchbase-php-client/releases
-rw-r--r-- | databases/pecl-couchbase/Makefile | 2 | ||||
-rw-r--r-- | databases/pecl-couchbase/distinfo | 6 | ||||
-rw-r--r-- | databases/pecl-couchbase/files/patch-php83 | 18 |
3 files changed, 4 insertions, 22 deletions
diff --git a/databases/pecl-couchbase/Makefile b/databases/pecl-couchbase/Makefile index 8e1c94e0d01f..4d3fb26b1b0b 100644 --- a/databases/pecl-couchbase/Makefile +++ b/databases/pecl-couchbase/Makefile @@ -1,5 +1,5 @@ PORTNAME= couchbase -PORTVERSION= 4.1.5 +PORTVERSION= 4.1.6 CATEGORIES= databases MASTER_SITES= https://github.com/couchbase/couchbase-php-client/releases/download/${PORTVERSION}/ diff --git a/databases/pecl-couchbase/distinfo b/databases/pecl-couchbase/distinfo index 31ef52547e5c..64cfcc96cead 100644 --- a/databases/pecl-couchbase/distinfo +++ b/databases/pecl-couchbase/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1692812402 -SHA256 (PECL/couchbase-4.1.5.tgz) = e1335d70e10687e969ec73b546995d1fe8937ebe511d97c71bbaf2d66056d9f5 -SIZE (PECL/couchbase-4.1.5.tgz) = 2126877 +TIMESTAMP = 1697030426 +SHA256 (PECL/couchbase-4.1.6.tgz) = 43da457eceb494a8fee95cbb7ff9383efe66899f525cf530760507257080597f +SIZE (PECL/couchbase-4.1.6.tgz) = 2134043 diff --git a/databases/pecl-couchbase/files/patch-php83 b/databases/pecl-couchbase/files/patch-php83 deleted file mode 100644 index 22bee7ae9cae..000000000000 --- a/databases/pecl-couchbase/files/patch-php83 +++ /dev/null @@ -1,18 +0,0 @@ ---- src/wrapper/common.hxx.orig 2023-05-26 07:56:45 UTC -+++ src/wrapper/common.hxx -@@ -31,12 +31,12 @@ ZEND_BEGIN_MODULE_GLOBALS(couchbase) - /* INI settings */ - char* log_level{ nullptr }; - char* log_path{ nullptr }; --zend_bool log_php_log_err{ 1 }; --zend_bool log_stderr{ 0 }; -+bool log_php_log_err{ 1 }; -+bool log_stderr{ 0 }; - zend_long max_persistent{ -1 }; /* maximum number of persistent connections per process */ - zend_long persistent_timeout{ -1 }; /* time period after which idle persistent connection is considered expired */ - /* module variables */ --zend_bool initialized{ 0 }; -+bool initialized{ 0 }; - zend_long num_persistent{ 0 }; /* number of existing persistent connections */ - ZEND_END_MODULE_GLOBALS(couchbase) - |