commit:     2f0c526d82162a52d9465567e2f6ce6be2cd2052
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 17 20:15:08 2025 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Mon Mar 17 20:37:54 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f0c526d

dev-php/pecl-memcache: treeclean (php:8.1)

Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 dev-php/pecl-memcache/Manifest                     |   1 -
 .../pecl-memcache/files/8.0-patches-20211123.patch | 204 ---------------------
 dev-php/pecl-memcache/metadata.xml                 |   8 -
 dev-php/pecl-memcache/pecl-memcache-8.0-r1.ebuild  |  59 ------
 4 files changed, 272 deletions(-)

diff --git a/dev-php/pecl-memcache/Manifest b/dev-php/pecl-memcache/Manifest
deleted file mode 100644
index 5e622e7de7d9..000000000000
--- a/dev-php/pecl-memcache/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST memcache-8.0.tgz 78448 BLAKE2B 
fb2d68d5ff4c6343dd2e66ae5c3f84fed22455b8614dce04dde2e10c164bf1f8d276776b74beaa387dd794cf82f6b897a88c8bed058376b9032e0452c2e94b06
 SHA512 
d5eea13b85d8d35ef6aab8c5699bdcc4707cf8debf4052cbbeac26e7e2360a4d3d4e55e8bd0b40cf19fe014ba1fc42d5417deabbe22a199f0c6aa98b67d132d4

diff --git a/dev-php/pecl-memcache/files/8.0-patches-20211123.patch 
b/dev-php/pecl-memcache/files/8.0-patches-20211123.patch
deleted file mode 100644
index 9005ac5feef3..000000000000
--- a/dev-php/pecl-memcache/files/8.0-patches-20211123.patch
+++ /dev/null
@@ -1,204 +0,0 @@
-diff --git a/Dockerfile b/Dockerfile
-index a52759e..506c28a 100644
---- a/Dockerfile
-+++ b/Dockerfile
-@@ -1,10 +1,13 @@
- ARG PHP_IMAGE=php:8.0
- FROM $PHP_IMAGE
- 
-+RUN docker-php-ext-configure pcntl --enable-pcntl \
-+    && docker-php-ext-install -j$(nproc) pcntl
-+
- RUN apt-get update && apt-get install -y \ 
-       git \
-       zlib1g-dev \
--      memcached ; 
-+      memcached ;
- 
- COPY docker/host.conf /etc/host.conf
- 
-diff --git a/README b/README
-index b36fa46..07f8f89 100644
---- a/README
-+++ b/README
-@@ -3,7 +3,7 @@ This is an official repository for pecl-memcache plugin since 
2019.
- This repository contains modified pecl-memcache plugin ported to PHP8,
- which was originally developed for the need of hosting company in Slovakia 
(Websupport.sk). 
- 
--The latest release is 8.0 (released: 2020-12-06) with support for PHP 8.0.
-+The latest release is 8.0 (released: 2020-12-06) with support for PHP 8.0 and 
unofficial support for PHP 7.3 and 7.4
- 
- Please use version 4.0.5.1 (released: 2020-12-19) for PHP 7.x from branch 
NON_BLOCKING_IO_php7.
- 
-diff --git a/Vagrantfile b/Vagrantfile
-new file mode 100644
-index 0000000..8665890
---- /dev/null
-+++ b/Vagrantfile
-@@ -0,0 +1,17 @@
-+# -*- mode: ruby -*-
-+# vi: set ft=ruby :
-+
-+VAGRANTFILE_API_VERSION = '2'
-+
-+Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
-+    config.vm.box = 'ubuntu/bionic64'
-+
-+    config.vm.provider :virtualbox do |vb|
-+        vb.name = 'ext-memcache-dev'
-+        vb.memory = 1024
-+        vb.cpus = 2
-+    end
-+
-+    config.vm.provision 'docker'
-+
-+end
-diff --git a/src/memcache.c b/src/memcache.c
-index 7c3a660..2cb675b 100644
---- a/src/memcache.c
-+++ b/src/memcache.c
-@@ -924,7 +924,7 @@ static void php_mmc_store(INTERNAL_FUNCTION_PARAMETERS, 
int op) /* {{{ */
-                               continue;
-                       }
- 
--                      /* begin sending requests immediatly */
-+                      /* begin sending requests immediately */
-                       mmc_pool_select(pool);
-               } ZEND_HASH_FOREACH_END();
-       }
-@@ -1089,7 +1089,7 @@ static void 
php_mmc_numeric(INTERNAL_FUNCTION_PARAMETERS, int deleted, int inver
-                               continue;
-                       }
- 
--                      /* begin sending requests immediatly */
-+                      /* begin sending requests immediately */
-                       mmc_pool_select(pool);
-               } ZEND_HASH_FOREACH_END();
- 
-@@ -1319,8 +1319,9 @@ static void 
php_mmc_connect(INTERNAL_FUNCTION_PARAMETERS, zend_bool persistent)
-       size_t host_len;
-       zend_long tcp_port = MEMCACHE_G(default_port);
-       double timeout = MMC_DEFAULT_TIMEOUT;
-+      zend_bool null_port;
- 
--      if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|ld", &host, &host_len, 
&tcp_port, &timeout) == FAILURE) {
-+      if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|l!d", &host, &host_len, 
&tcp_port, &null_port, &timeout) == FAILURE) {
-               return;
-       }
- 
-@@ -2492,7 +2493,7 @@ PHP_FUNCTION(memcache_flush)
-               pool->protocol->flush(request, delay);
- 
-               if (mmc_pool_schedule(pool, pool->servers[i], request) == 
MMC_OK) {
--                      /* begin sending requests immediatly */
-+                      /* begin sending requests immediately */
-                       mmc_pool_select(pool);
-               }
-       }
-diff --git a/src/memcache_pool.c b/src/memcache_pool.c
-index 733a0c5..e52389d 100644
---- a/src/memcache_pool.c
-+++ b/src/memcache_pool.c
-@@ -1303,7 +1303,7 @@ int mmc_pool_schedule_get(
-               pool->protocol->end_get(mmc->buildreq);
-               mmc_pool_schedule(pool, mmc, mmc->buildreq);
- 
--              /* begin sending requests immediatly */
-+              /* begin sending requests immediately */
-               mmc_pool_select(pool);
- 
-               mmc->buildreq = mmc_pool_request_get(
-diff --git a/src/memcache_session.c b/src/memcache_session.c
-index e4a80de..d3aab24 100644
---- a/src/memcache_session.c
-+++ b/src/memcache_session.c
-@@ -319,7 +319,7 @@ PS_READ_FUNC(memcache)
-                       ZVAL_NULL(&addresult);
- 
-                       /* third request fetches the data, data is only valid 
if either of the lock requests succeeded */
--                      ZVAL_EMPTY_STRING(&dataresult);
-+                      ZVAL_NULL(&dataresult);
- 
-                       /* create requests */
-                       if (php_mmc_session_read_request(pool, &zkey, 
lockparam, &addresult, dataparam, &lockrequest, &addrequest, &datarequest) != 
MMC_OK) {
-diff --git a/tests/redundancy_test.phpt b/tests/redundancy_test.phpt
-new file mode 100644
-index 0000000..fb5ab84
---- /dev/null
-+++ b/tests/redundancy_test.phpt
-@@ -0,0 +1,75 @@
-+--TEST--
-+redundancy test
-+--SKIPIF--
-+<?php include 'connect.inc'; if (!MEMCACHE_HAVE_SESSION) print 'skip not 
compiled with session support'; else if (!function_exists('pcntl_fork')) print 
'skip not compiled with pcntl_fork() support'; ?>
-+--FILE--
-+<?php
-+
-+include 'connect.inc';
-+
-+$sid = md5(rand());
-+
-+ini_set('session.save_handler', 'memcache');
-+ini_set('memcache.session_save_path', 
"tcp://$host:$port,tcp://$host2:$port2");
-+ini_set('memcache.session_redundancy', 3);
-+
-+$memcache1 = test_connect1();
-+$memcache2 = test_connect2();
-+
-+$pid = pcntl_fork();
-+if (!$pid) {
-+    // In child process
-+    session_id($sid);
-+    session_start();
-+    if (!isset($_SESSION['counter']))
-+        $_SESSION['counter'] = 0;
-+    $_SESSION['counter'] += 1;
-+    session_write_close();
-+
-+    exit(0);
-+}
-+pcntl_waitpid($pid, $status);
-+
-+$memcache1->flush();
-+
-+$pid = pcntl_fork();
-+if (!$pid) {
-+    // In child process
-+    session_id($sid);
-+    session_start();
-+    if (!isset($_SESSION['counter']))
-+        $_SESSION['counter'] = 0;
-+    $_SESSION['counter'] += 1;
-+    session_write_close();
-+
-+    exit(0);
-+}
-+pcntl_waitpid($pid, $status);
-+
-+$memcache2->flush();
-+
-+$pid = pcntl_fork();
-+if (!$pid) {
-+    // In child process
-+    session_id($sid);
-+    session_start();
-+    if (!isset($_SESSION['counter']))
-+        $_SESSION['counter'] = 0;
-+    $_SESSION['counter'] += 1;
-+    session_write_close();
-+
-+    exit(0);
-+}
-+pcntl_waitpid($pid, $status);
-+
-+
-+session_id($sid);
-+session_start();
-+var_dump($_SESSION);
-+
-+?>
-+--EXPECT--
-+array(1) {
-+  ["counter"]=>
-+  int(3)
-+}

diff --git a/dev-php/pecl-memcache/metadata.xml 
b/dev-php/pecl-memcache/metadata.xml
deleted file mode 100644
index 222c77f3742a..000000000000
--- a/dev-php/pecl-memcache/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="project">
-               <email>[email protected]</email>
-               <name>PHP</name>
-       </maintainer>
-</pkgmetadata>

diff --git a/dev-php/pecl-memcache/pecl-memcache-8.0-r1.ebuild 
b/dev-php/pecl-memcache/pecl-memcache-8.0-r1.ebuild
deleted file mode 100644
index 40bb1203cafe..000000000000
--- a/dev-php/pecl-memcache/pecl-memcache-8.0-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-PHP_EXT_NAME="memcache"
-PHP_EXT_INI="yes"
-PHP_EXT_ZENDEXT="no"
-PHP_EXT_NEEDED_USE="session(-)?"
-DOCS=( README example.php )
-HTML_DOCS=( memcache.php )
-
-USE_PHP="php8-1"
-
-inherit php-ext-pecl-r3
-
-KEYWORDS="~amd64 ~hppa ~ppc64 ~x86"
-
-DESCRIPTION="PHP extension for using memcached"
-LICENSE="PHP-3"
-SLOT="8"
-IUSE="+session"
-
-DEPEND="php_targets_php8-1? ( sys-libs/zlib )"
-RDEPEND="${DEPEND}"
-
-# The test suite requires memcached to be running.
-RESTRICT='test'
-PATCHES=( "${FILESDIR}/8.0-patches-20211123.patch" )
-
-src_prepare() {
-       if use php_targets_php8-1 ; then
-               php-ext-source-r3_src_prepare
-       else
-               default
-       fi
-}
-
-src_configure() {
-       if use php_targets_php8-1 ; then
-               local PHP_EXT_ECONF_ARGS=( --enable-memcache 
--with-zlib-dir="${EPREFIX}/usr" $(use_enable session memcache-session) )
-               php-ext-source-r3_src_configure
-       fi
-}
-
-src_install() {
-       if use php_targets_php8-1 ; then
-               php-ext-pecl-r3_src_install
-
-               php-ext-source-r3_addtoinifiles "memcache.allow_failover" "true"
-               php-ext-source-r3_addtoinifiles 
"memcache.max_failover_attempts" "20"
-               php-ext-source-r3_addtoinifiles "memcache.chunk_size" "32768"
-               php-ext-source-r3_addtoinifiles "memcache.default_port" "11211"
-               php-ext-source-r3_addtoinifiles "memcache.hash_strategy" 
"consistent"
-               php-ext-source-r3_addtoinifiles "memcache.hash_function" "crc32"
-               php-ext-source-r3_addtoinifiles "memcache.redundancy" "1"
-               php-ext-source-r3_addtoinifiles "memcache.session_redundancy" 
"2"
-               php-ext-source-r3_addtoinifiles "memcache.protocol" "ascii"
-       fi
-}

Reply via email to