fritzkink
2023-12-25 b26186e4a663e8e46c99cc5d94611a0040bfb2e5
php-oauth - new package for php 8.2

6 files added
184 ■■■■■ changed files
components/web/php/php-8_2-ext-oauth/Makefile 85 ●●●●● patch | view | raw | blame | history
components/web/php/php-8_2-ext-oauth/manifests/sample-manifest.p5m 26 ●●●●● patch | view | raw | blame | history
components/web/php/php-8_2-ext-oauth/oauth.ini 2 ●●●●● patch | view | raw | blame | history
components/web/php/php-8_2-ext-oauth/php82-ext-oauth.p5m 31 ●●●●● patch | view | raw | blame | history
components/web/php/php-8_2-ext-oauth/pkg5 11 ●●●●● patch | view | raw | blame | history
components/web/php/php-8_2-ext-oauth/test/results-all.master 29 ●●●●● patch | view | raw | blame | history
components/web/php/php-8_2-ext-oauth/Makefile
New file
@@ -0,0 +1,85 @@
#
# 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) 2023 Friedrich Kink
#
OPENSSL_VERSION=    3.1
include ../../../../make-rules/shared-macros.mk
COMPONENT_NAME=        php-8.2-ext-oauth
COMPONENT_REAL_NAME=    oauth
COMPONENT_VERSION=    2.0.7
COMPONENT_FMRI=        web/php-82/extension/php-oauth
COMPONENT_SUMMARY=    oauth consumer extension
COMPONENT_DESCRIPTION=    OAuth is an authorization protocol built on top of HTTP which \
            allows applications to securely access data without having to \
            store usernames and passwords.
COMPONENT_PROJECT_URL=    https://pecl.php.net/package/$(COMPONENT_REAL_NAME)
COMPONENT_SRC=        $(COMPONENT_REAL_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=    $(COMPONENT_NAME)-$(COMPONENT_VERSION).tgz
COMPONENT_ARCHIVE_HASH=    sha256:d46f59072f1ade65cf4c4353b7ecf5546d1c56cad602152cb4ba72abb1aa5eec
COMPONENT_ARCHIVE_URL=    https://pecl.php.net/get/$(COMPONENT_SRC).tgz
COMPONENT_LICENSE=    BSD
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
COMPONENT_PRE_CONFIGURE_ACTION    =    cp -R $(SOURCE_DIR)/* $(@D) ; cd $(@D) ; $(PHP_PREFIX)/bin/phpize
CONFIGURE_SCRIPT        =    $(@D)/configure
COMPONENT_INSTALL_ARGS        +=    INSTALL_ROOT=$(PROTO_DIR)
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)
CONFIGURE_OPTIONS  +=   --enable-oauth
ifeq ($(strip $(MACH)),i386)
CONFIGURE_OPTIONS  +=    --build=x86_64-pc-solaris$(SOLARIS_VERSION)
else
CONFIGURE_OPTIONS  +=    --build=sparcv9-sun-solaris$(SOLARIS_VERSION)
endif
CONFIGURE_OPTIONS  +=    --with-php-config=$(PHP_PREFIX)/bin/php-config
CFLAGS             +=    -I/usr/include/pcre -I$(PHP_PREFIX)/include
CPPFLAGS           +=    $(CFLAGS)
LDFLAGS            +=    -L$(PHP_PREFIX)/lib/$(MACH64) -R$(PHP_PREFIX)/lib/$(MACH64)
# manually added dependencies
REQUIRED_PACKAGES += web/php-82/php-common
# Auto-generated dependencies
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += web/curl
components/web/php/php-8_2-ext-oauth/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/8.2/extensions/oauth.so
components/web/php/php-8_2-ext-oauth/oauth.ini
New file
@@ -0,0 +1,2 @@
[oauth]
extension=oauth.so
components/web/php/php-8_2-ext-oauth/php82-ext-oauth.p5m
New file
@@ -0,0 +1,31 @@
#
# 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 Friedrich Kink. All rights reserved.
#
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 oauth.ini path=etc/php/8.2/conf.d/oauth.ini preserve=true mode=0644
file path=usr/php/8.2/extensions/oauth.so
components/web/php/php-8_2-ext-oauth/pkg5
New file
@@ -0,0 +1,11 @@
{
    "dependencies": [
        "system/library",
        "web/curl",
        "web/php-82/php-common"
    ],
    "fmris": [
        "web/php-82/extension/php-oauth"
    ],
    "name": "php-8.2-ext-oauth"
}
components/web/php/php-8_2-ext-oauth/test/results-all.master
New file
@@ -0,0 +1,29 @@
TEST RESULT SUMMARY
---------------------------------------------------------------------
Exts skipped    :    0
Exts tested     :   31
---------------------------------------------------------------------
Number of tests :   24                23
Tests skipped   :    1 (  4.2%) --------
Tests warned    :    0 (  0.0%) (  0.0%)
Tests failed    :   11 ( 45.8%) ( 47.8%)
Tests passed    :   12 ( 50.0%) ( 52.2%)
---------------------------------------------------------------------
=====================================================================
=====================================================================
FAILED TEST SUMMARY
---------------------------------------------------------------------
OAuth getRequestToken [tests/bug16946.phpt]
Oauth curl debug handler [tests/oauth_curl_debug_handler.phpt]
OauthProvider Creation [tests/oauthprovider_001.phpt]
OauthProvider isRequestTokenEndpoint [tests/oauthprovider_002.phpt]
OauthProvider consumerHandler/callConsumerHandler [tests/oauthprovider_003.phpt]
OauthProvider tokenHandler/callTokenHandler [tests/oauthprovider_004.phpt]
OauthProvider timestampNonceHandler/callTimestampNonceHandler [tests/oauthprovider_005.phpt]
OauthProvider checkOauthRequest [tests/oauthprovider_006.phpt]
OauthProvider checkOauthRequest [tests/oauthprovider_007.phpt]
OauthProvider setParam addref segfault [tests/oauthprovider_008.phpt]
OAuth Overflow in header redirect [tests/overflow_redir.phpt]
=====================================================================