fritzkink
2023-12-25 a1adf23fab98cf50e72f44e7990fb6e63c4a8bd7
php-memcache - new package for php 8.2

6 files added
221 ■■■■■ changed files
components/web/php/php-8_2-ext-memcache/Makefile 90 ●●●●● patch | view | raw | blame | history
components/web/php/php-8_2-ext-memcache/manifests/sample-manifest.p5m 26 ●●●●● patch | view | raw | blame | history
components/web/php/php-8_2-ext-memcache/memcache.ini 2 ●●●●● patch | view | raw | blame | history
components/web/php/php-8_2-ext-memcache/php-8_2-ext-memcache.p5m 33 ●●●●● patch | view | raw | blame | history
components/web/php/php-8_2-ext-memcache/pkg5 11 ●●●●● patch | view | raw | blame | history
components/web/php/php-8_2-ext-memcache/test/results-all.master 59 ●●●●● patch | view | raw | blame | history
components/web/php/php-8_2-ext-memcache/Makefile
New file
@@ -0,0 +1,90 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL)". You may
# only use this file in accordance with the terms of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright (c) 2016 Sergey Avseyev
# Copyright (c) 2019 Alexander Pyhalov
# Copyright (c) 2023 Friedrich Kink
#
BUILD_BITS=             64
OPENSSL_VERSION=    3.1
include ../../../../make-rules/shared-macros.mk
COMPONENT_NAME=        memcache
COMPONENT_VERSION=    8.2
COMPONENT_SRC=        $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_PROJECT_URL=    https://pecl.php.net/package/memcache
COMPONENT_ARCHIVE=    $(COMPONENT_NAME)-$(COMPONENT_VERSION).tgz
COMPONENT_ARCHIVE_HASH=    sha256:b3f0640eacdeb9046c6c86a1546d7fb8a4e9f219e5d9a36a287e59b2dd8208e5
COMPONENT_ARCHIVE_URL=    https://pecl.php.net/get/$(COMPONENT_ARCHIVE)
COMPONENT_SUMMARY=    php memcache extension
COMPONENT_FMRI=        web/php-82/extension/php-memcache
COMPONENT_LICENSE=    PHP3.01
COMPONENT_LICENSE_FILE=    LICENSE
COMPONENT_CLASSIFICATION=    Development/PHP
include $(WS_MAKE_RULES)/common.mk
COMPONENT_TEST_TARGETS = test
COMPONENT_TEST_ENV += NO_INTERACTION=yes
COMPONENT_TEST_TRANSFORMS += \
    '-e "/^make/d" ' \
    '-e "/^Time taken/d" ' \
    '-e "/^TEST RESULT SUMMARY$$/,\$$p" ' \
    '-e "/.*/d" '
CLEAN_PATHS +=  package.xml
PHP_PREFIX=/usr/php/8.2
PHP_SYSCONFDIR=/etc/php/8.2
PHP_DATADIR=/var/php/8.2
CONFIGURE_SCRIPT    =      $(BUILD_DIR)/$(MACH64)/configure
# Configure Options
CONFIGURE_OPTIONS    =    --prefix=$(PHP_PREFIX)
CONFIGURE_OPTIONS    +=   --bindir=$(PHP_PREFIX)/bin
CONFIGURE_OPTIONS    +=   --sbindir=$(PHP_PREFIX)/bin
CONFIGURE_OPTIONS    +=   --libdir=$(PHP_PREFIX)/lib/$(MACH64)
CONFIGURE_OPTIONS    +=   --libexecdir=$(PHP_PREFIX)/libexec
CONFIGURE_OPTIONS    +=   --includedir=$(PHP_PREFIX)/include
CONFIGURE_OPTIONS    +=   --sysconfdir=$(PHP_SYSCONFDIR)
CONFIGURE_OPTIONS    +=   --datadir=$(PHP_DATADIR)
CONFIGURE_OPTIONS    +=   --mandir=$(PHP_PREFIX)/share/man
CONFIGURE_OPTIONS    +=   --localstatedir=$(PHP_DATADIR)
ifeq ($(strip $(MACH)),i386)
CONFIGURE_OPTIONS    +=   --build=x86_64-pc-solaris$(SOLARIS_VERSION)
else
CONFIGURE_OPTIONS.64+=    --build=sparcv9-sun-solaris$(SOLARIS_VERSION)
endif
CONFIGURE_OPTIONS    +=   --with-php-config=$(PHP_PREFIX)/bin/php-config
CFLAGS                +=    -I$(PHP_PREFIX)/include
CPPFLAGS              +=    $(CFLAGS)
LDFLAGS              +=    -L$(PHP_PREFIX)/lib/$(MACH64) -R$(PHP_PREFIX)/lib/$(MACH64)
CONFIGURE_OPTIONS     +=        CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
COMPONENT_PRE_CONFIGURE_ACTION     =    cp -R $(SOURCE_DIR)/* $(@D) ; cd $(@D) ; $(PHP_PREFIX)/bin/phpize
COMPONENT_INSTALL_ARGS        +=    INSTALL_ROOT=$(PROTO_DIR)
# manually added dependencies
REQUIRED_PACKAGES += web/php-82/php-common
# needed for test
REQUIRED_PACKAGES += service/memcached
# Auto-generated dependencies
REQUIRED_PACKAGES += library/zlib
REQUIRED_PACKAGES += system/library
components/web/php/php-8_2-ext-memcache/manifests/sample-manifest.p5m
New file
@@ -0,0 +1,26 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2023 <contributor>
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="$(COMPONENT_SUMMARY)"
set name=info.classification value="$(COMPONENT_CLASSIFICATION)"
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license $(COMPONENT_LICENSE_FILE) license='$(COMPONENT_LICENSE)'
file path=usr/php/$(HUMAN_VERSION)/extensions/memcache.so
components/web/php/php-8_2-ext-memcache/memcache.ini
New file
@@ -0,0 +1,2 @@
[memcache]
extension=memcache.so
components/web/php/php-8_2-ext-memcache/php-8_2-ext-memcache.p5m
New file
@@ -0,0 +1,33 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright (c) 2016 Sergey Avseyev
# Copyright (c) 2019 Alexander Pyhalov
# Copyright (c) 2023 Friedrich Kink
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="$(COMPONENT_SUMMARY)"
set name=info.classification value="$(COMPONENT_CLASSIFICATION)"
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license $(COMPONENT_LICENSE_FILE) license='$(COMPONENT_LICENSE)'
<transform file path=usr/php/8.2/extensions/.*\.so -> \
    add pkg.linted.userland.action001.2 true>
file memcache.ini path=etc/php/8.2/conf.d/memcache.ini preserve=true mode=0644
file path=usr/php/$(HUMAN_VERSION)/extensions/memcache.so
components/web/php/php-8_2-ext-memcache/pkg5
New file
@@ -0,0 +1,11 @@
{
    "dependencies": [
        "library/zlib",
        "system/library",
        "web/php-82/php-common"
    ],
    "fmris": [
        "web/php-82/extension/php-memcache"
    ],
    "name": "memcache"
}
components/web/php/php-8_2-ext-memcache/test/results-all.master
New file
@@ -0,0 +1,59 @@
TEST RESULT SUMMARY
---------------------------------------------------------------------
Exts skipped    :    0
Exts tested     :   31
---------------------------------------------------------------------
Number of tests :   82                73
Tests borked    :    2 (  2.4%) --------
Tests skipped   :    7 (  8.5%) --------
Tests warned    :    1 (  1.2%) (  1.4%)
Tests failed    :   21 ( 25.6%) ( 28.8%)
Tests passed    :   51 ( 62.2%) ( 69.9%)
---------------------------------------------------------------------
=====================================================================
=====================================================================
BORKED TEST SUMMARY
---------------------------------------------------------------------
Notice: memcache_connect(): Server localhost (tcp 11211, udp 0) failed with: Connection failed: Connection timed out (145) in /usr/share/src/oi-userland/components/web/php/php-8_2-ext-memcache/build/amd64/tests/connect.inc on line 69
Warning: memcache_connect(): Can't connect to localhost:11211, Connection failed: Connection timed out (145) in /usr/share/src/oi-userland/components/web/php/php-8_2-ext-memcache/build/amd64/tests/connect.inc on line 69
skip Connection to memcached failed [/usr/share/src/oi-userland/components/web/php/php-8_2-ext-memcache/build/amd64/tests/049.phpt]
Notice: memcache_connect(): Server localhost (tcp 11211, udp 0) failed with: Connection failed: Connection timed out (145) in /usr/share/src/oi-userland/components/web/php/php-8_2-ext-memcache/build/amd64/tests/connect.inc on line 69
Warning: memcache_connect(): Can't connect to localhost:11211, Connection failed: Connection timed out (145) in /usr/share/src/oi-userland/components/web/php/php-8_2-ext-memcache/build/amd64/tests/connect.inc on line 69
skip Connection to memcached failed [/usr/share/src/oi-userland/components/web/php/php-8_2-ext-memcache/build/amd64/tests/100c.phpt]
=====================================================================
=====================================================================
FAILED TEST SUMMARY
---------------------------------------------------------------------
memcache->addServer() [tests/019.phpt]
memcache->set()/memcache->get() with multiple keys and load balancing [tests/020.phpt]
memcache->getExtendedStats() [tests/022.phpt]
memcache_get_extended_stats() [tests/022a.phpt]
memcache->delete() with load balancing [tests/023.phpt]
memcache->increment() with load balancing [tests/025.phpt]
memcache->delete() with load balancing [tests/026.phpt]
memcache->addServer() adding server in failed mode [tests/031.phpt]
memcache->getServerStatus(), memcache->setServerParams() [tests/032.phpt]
memcache::connect() with unix domain socket [tests/035.phpt]
memcache->increment()/decrement() with multiple keys [tests/040.phpt]
memcache->delete() with multiple keys [tests/041.phpt]
memcache->set() with multiple values [tests/042.phpt]
ini_set('memcache.redundancy') [tests/043.phpt]
ini_set('memcache.session_redundancy') [tests/044.phpt]
hash strategies and functions [tests/046.phpt]
memcache->connect() and memcache->close() in loop [tests/052.phpt]
ini_set('session.save_handler') with unix domain socket [tests/053.phpt]
memcache->addServer() with microsecond timeout [tests/056.phpt]
session locking [tests/057.phpt]
memcache multi host save path function [tests/bug73539.phpt]
=====================================================================
=====================================================================
WARNED TEST SUMMARY
---------------------------------------------------------------------
PECL bug #63272 (Explicitly reserve range of flags in php_memcache.h so application code can use) [tests/pecl63272.phpt] (warn: Test passed on retry attempt)
=====================================================================