pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/php-memcached



Module Name:    pkgsrc
Committed By:   taca
Date:           Sat Feb 22 17:22:29 UTC 2025

Modified Files:
        pkgsrc/devel/php-memcached: Makefile distinfo options.mk

Log Message:
devel/php-memcached: update to 3.3.0

pkgsrc change:
* Now support PHP 7 and later.
* Change PKG_OPTIONS from "igbinary" to "memcached-igbinary".
* Remove a few pkglint warnings.

3.3.0 (2024-10-17)

* Add #515 option to locally enforce payload size limit
* Add #539 zstd support
* Add #540 compression_level option
* Mark password as a sensitive param for PHP 8.2
* Upgrade Windows libmemcached to v1.1.4
* Fix Windows PHP 8 compatibility
* Fix #518 Windows msgpack support
* Fix #522 signed integer overflow
* Fix #523 incorrect PHP reflection type for Memcached::cas $cas_token
* Fix #546 don't check key automatically, unless client-side verify_key is enabled
* Fix #555 incompatible pointer types (32-bit)

3.2.0 (2022-03-24)

* PHP 8.0 and 8.1 support
* store_retry_count is no more set explicitly (#452)
* fix MemcachedServer (libmemcached-awesome is recommended)
* code cleanup
* fix windows build

For changes before release, please refer
<https://pecl.php.net/package-changelog.php> in detail.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/php-memcached/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/php-memcached/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/php-memcached/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/php-memcached/Makefile
diff -u pkgsrc/devel/php-memcached/Makefile:1.12 pkgsrc/devel/php-memcached/Makefile:1.13
--- pkgsrc/devel/php-memcached/Makefile:1.12    Sat Feb  8 03:41:14 2025
+++ pkgsrc/devel/php-memcached/Makefile Sat Feb 22 17:22:29 2025
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.12 2025/02/08 03:41:14 taca Exp $
+# $NetBSD: Makefile,v 1.13 2025/02/22 17:22:29 taca Exp $
 #
 
 MODNAME=               memcached
-PECL_VERSION=          2.2.0
-PKGREVISION=           2
+PECL_VERSION=          3.3.0
 CATEGORIES+=           devel
 
 MAINTAINER=            pkgsrc-users%NetBSD.org@localhost
@@ -13,7 +12,7 @@ LICENSE=              php
 
 CONFLICTS=             php-memcached-[0-9]*
 
-PHP_VERSIONS_ACCEPTED= 56
+PHP_VERSIONS_ACCEPTED= 74 81 82 83 84
 
 USE_TOOLS+=            pkg-config
 USE_LANGUAGES=         c c++

Index: pkgsrc/devel/php-memcached/distinfo
diff -u pkgsrc/devel/php-memcached/distinfo:1.5 pkgsrc/devel/php-memcached/distinfo:1.6
--- pkgsrc/devel/php-memcached/distinfo:1.5     Tue Oct 26 10:18:01 2021
+++ pkgsrc/devel/php-memcached/distinfo Sat Feb 22 17:22:29 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.5 2021/10/26 10:18:01 nia Exp $
+$NetBSD: distinfo,v 1.6 2025/02/22 17:22:29 taca Exp $
 
-BLAKE2s (php-memcached/memcached-2.2.0.tgz) = cab54570a8723bf4cfa34983d2e3983dd08bcd12763afe6c0b1432e090e4de87
-SHA512 (php-memcached/memcached-2.2.0.tgz) = 61207d3f8c11b0620dbcb20fb2ebb6d1fc10159a7e879ee91556a303c3dcdf3d2571e8dda5efcbed77ff779f5c9b226aa48800630b9e7781cd964126b848c356
-Size (php-memcached/memcached-2.2.0.tgz) = 70449 bytes
+BLAKE2s (php-memcached/memcached-3.3.0.tgz) = 0fab9a66ef57dc38a78b30f9b3a0d37624904e284f74a66a4288c4d2b5d4a397
+SHA512 (php-memcached/memcached-3.3.0.tgz) = bdbe8b203cadcda50c4f8099fac1161424f3091537027251aaba7d9ba9a7932f59a9ac201dca9d9ae3aa59ff833ac6aa0284c5ab118cdb85a9fd89f63a95509a
+Size (php-memcached/memcached-3.3.0.tgz) = 92669 bytes

Index: pkgsrc/devel/php-memcached/options.mk
diff -u pkgsrc/devel/php-memcached/options.mk:1.2 pkgsrc/devel/php-memcached/options.mk:1.3
--- pkgsrc/devel/php-memcached/options.mk:1.2   Tue Apr  7 23:09:39 2015
+++ pkgsrc/devel/php-memcached/options.mk       Sat Feb 22 17:22:29 2025
@@ -1,13 +1,14 @@
-# $NetBSD: options.mk,v 1.2 2015/04/07 23:09:39 rodent Exp $
+# $NetBSD: options.mk,v 1.3 2025/02/22 17:22:29 taca Exp $
 
-PKG_OPTIONS_VAR=       PKG_OPTIONS.php-memcached
-PKG_SUPPORTED_OPTIONS= igbinary sasl
-PKG_SUGGESTED_OPTIONS= sasl
+PKG_OPTIONS_VAR=               PKG_OPTIONS.php-memcached
+PKG_SUPPORTED_OPTIONS=         memcached-igbinary sasl
+PKG_SUGGESTED_OPTIONS=         sasl
+PKG_OPTIONS_LEGACY_OPTS+=      igbinary:memcached-igbinary
 
 .include "../../mk/bsd.options.mk"
 
-.if !empty(PKG_OPTIONS:Migbinary)
-.include "../../lang/php/phpversion.mk" 
+.if !empty(PKG_OPTIONS:Mmemcached-igbinary)
+.include "../../lang/php/phpversion.mk"
 DEPENDS+=              ${PHP_PKG_PREFIX}-igbinary-[0-9]*:../../devel/php-igbinary
 CONFIGURE_ARGS+=       --enable-memcached-igbinary
 .else



Home | Main Index | Thread Index | Old Index