summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2025-11-04 10:35:20 +0100
committerRemi Collet <remi@php.net>2025-11-04 10:35:20 +0100
commitf45b05150a815e03938b0aa3fba9db5fc9c92cdc (patch)
tree4edea51baf4dbb3c1d6ffd06f264f8c3ca0d111a
initial package
open https://github.com/mariadb-corporation/mysqlnd_parsec/pull/1 add dependency on mysqlnd
-rw-r--r--.gitignore9
-rw-r--r--1.patch29
-rw-r--r--Makefile4
-rw-r--r--PHPINFO4
-rw-r--r--REFLECTION7
-rw-r--r--composer.json30
-rw-r--r--php-mariadb-mysqlnd-parsec.spec122
7 files changed, 205 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..01f0400
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,9 @@
+clog
+package-*.xml
+*.tgz
+*.tar.bz2
+*.tar.gz
+*.tar.xz
+*.tar.xz.asc
+*.src.rpm
+*/*rpm
diff --git a/1.patch b/1.patch
new file mode 100644
index 0000000..1c96cd5
--- /dev/null
+++ b/1.patch
@@ -0,0 +1,29 @@
+From 944ffc814ad6602482ca76f6f2f14f9eca68311b Mon Sep 17 00:00:00 2001
+From: Remi Collet <remi@remirepo.net>
+Date: Tue, 4 Nov 2025 09:45:12 +0100
+Subject: [PATCH] add dependency on mysqlnd
+
+---
+ php_mysqlnd_parsec.c | 8 +++++++-
+ 1 file changed, 7 insertions(+), 1 deletion(-)
+
+diff --git a/php_mysqlnd_parsec.c b/php_mysqlnd_parsec.c
+index bf90c20..f611fbb 100644
+--- a/php_mysqlnd_parsec.c
++++ b/php_mysqlnd_parsec.c
+@@ -239,8 +239,14 @@ PHP_MSHUTDOWN_FUNCTION(mysqlnd_parsec)
+ return SUCCESS;
+ }
+
++static const zend_module_dep mysqlnd_parsec_deps[] = {
++ ZEND_MOD_REQUIRED("mysqlnd")
++ ZEND_MOD_END
++};
++
+ zend_module_entry mysqlnd_parsec_module_entry = {
+- STANDARD_MODULE_HEADER,
++ STANDARD_MODULE_HEADER_EX, NULL,
++ mysqlnd_parsec_deps,
+ "mysqlnd_parsec",
+ NULL,
+ PHP_MINIT(mysqlnd_parsec),
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..13af741
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,4 @@
+SRCDIR := $(shell pwd)
+NAME := $(shell basename $(SRCDIR))
+include ../../../common/Makefile
+
diff --git a/PHPINFO b/PHPINFO
new file mode 100644
index 0000000..11f9d3d
--- /dev/null
+++ b/PHPINFO
@@ -0,0 +1,4 @@
+
+mysqlnd_parsec
+
+Version => 1.0.0
diff --git a/REFLECTION b/REFLECTION
new file mode 100644
index 0000000..bdb800f
--- /dev/null
+++ b/REFLECTION
@@ -0,0 +1,7 @@
+Extension [ <persistent> extension #103 mysqlnd_parsec version 1.0.0 ] {
+
+ - Dependencies {
+ Dependency [ mysqlnd (Required) ]
+ }
+}
+
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..acb9fe1
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,30 @@
+{
+ "name": "mariadb/mysqlnd_parsec",
+ "description": "MariaDB parsec authentication plugin for mysqlnd",
+ "type": "php-ext",
+ "license": "BSD-3-Clause",
+ "authors": [
+ {
+ "name": "Georg Richter",
+ "email": "georg@mariadb.com",
+ "role": "Maintainer"
+ }
+ ],
+ "require": {
+ "php": ">=8.1"
+ },
+ "php-ext": {
+ "extension-name": "mysqlnd_parsec",
+ "priority": 30,
+ "support-zts": true,
+ "support-nts": true,
+ "configure-options": [
+ {
+ "name": "with-mysqlnd-parsec",
+ "description": "Enable MariaDB parsec authentication support for mysqlnd",
+ "needs-value": false
+ }
+ ]
+ }
+}
+
diff --git a/php-mariadb-mysqlnd-parsec.spec b/php-mariadb-mysqlnd-parsec.spec
new file mode 100644
index 0000000..ba38821
--- /dev/null
+++ b/php-mariadb-mysqlnd-parsec.spec
@@ -0,0 +1,122 @@
+# remirepo spec file for php-mariadb-mysqlnd-parsec
+#
+# SPDX-FileCopyrightText: Copyright 2025 Remi Collet
+# SPDX-License-Identifier: CECILL-2.1
+# http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+#
+# Please, preserve the changelog entries
+#
+
+%{?scl:%scl_package php-mariadb-mysqlnd-parsec}
+
+# Extension
+%global ext_name mysqlnd_parsec
+%global ini_name 40-%{ext_name}.ini
+%global upstream_version 1.0.0
+#global upstream_prever RC1
+# PIE / packagist
+%global pie_vend mariadb
+%global pie_proj %{ext_name}
+# Github forge
+%global gh_vend mariadb-corporation
+%global gh_proj %{ext_name}
+%global forgeurl https://github.com/%{gh_vend}/%{gh_proj}
+#global commit b3ae87353da524f33374ee0418ad48f704bb6af1
+%global tag %{upstream_version}%{?upstream_prever}
+
+Summary: MariaDB parsec authentication plugin for mysqlnd
+Name: %{?scl_prefix}php-mariadb-mysqlnd-parsec
+Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}}
+%forgemeta
+Release: 1%{?dist}
+License: BSD-3-Clause
+URL: %{forgeurl}
+Source0: %{forgesource}
+
+Patch0: https://patch-diff.githubusercontent.com/raw/mariadb-corporation/mysqlnd_parsec/pull/1.patch
+
+BuildRequires: make
+BuildRequires: gcc
+BuildRequires: %{?scl_prefix}php-devel >= 8.1
+BuildRequires: %{?scl_prefix}php-mysqlnd
+BuildRequires: pkgconfig(libsodium)
+BuildRequires: pkgconfig(libssl)
+
+Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api}
+Requires: %{?scl_prefix}php(api) = %{php_core_api}
+Requires: %{?scl_prefix}php-mysqlnd%{?_isa}
+
+# Extension
+Provides: %{?scl_prefix}php-%{ext_name} = %{version}
+Provides: %{?scl_prefix}php-%{ext_name}%{?_isa} = %{version}
+# PIE (+ underscore)
+Provides: %{?scl_prefix}php-%{pie_vend}-%{pie_proj} = %{version}
+Provides: %{?scl_prefix}php-%{pie_vend}-%{pie_proj}%{?_isa} = %{version}
+Provides: %{?scl_prefix}php-pie(%{pie_vend}/%{pie_proj}) = %{version}
+
+
+%description
+A mysqlnd authentication plugin providing parsec-based authentication for PHP
+when connecting to MariaDB servers.
+
+Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}.
+
+
+%prep
+%forgesetup
+%patch -P0 -p1 -b .pr1
+
+: Sanity check, really often broken
+extver=$(sed -n '/#define PHP_MARIADB_AUTH_PLUGIN_VERSION/{s/.* "//;s/".*$//;p}' php_mysqlnd_parsec.h)
+if test "x${extver}" != "x%{upstream_version}%{?upstream_prever}"; then
+ : Error: Upstream extension version is ${extver}, expecting %{version}.
+ exit 1
+fi
+
+: Create configuration file
+cat << 'EOF' | tee %{ini_name}
+; Enable the %{summary}
+extension=%{ext_name}
+EOF
+
+
+%build
+%{__phpize}
+sed -e 's/INSTALL_ROOT/DESTDIR/' -i build/Makefile.global
+
+%configure \
+ --enable-mysqlnd_parsec \
+ --with-libdir=%{_lib} \
+ --with-php-config=%{__phpconfig}
+
+%make_build
+
+
+%install
+%make_install
+
+# install config file
+install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name}
+
+
+%check
+: Minimal load test for the extension
+%{__php} --no-php-ini \
+ --define extension=mysqlnd \
+ --define extension=%{buildroot}/%{php_extdir}/%{ext_name}.so \
+ --modules | grep '^%{ext_name}$'
+
+
+%files
+%license LICENSE
+%doc composer.json
+%doc *.md
+%config(noreplace) %{php_inidir}/%{ini_name}
+%{php_extdir}/%{ext_name}.so
+
+
+%changelog
+* Tue Nov 4 2025 Remi Collet <remi@remirepo.net> - 1.0.0-1
+- initial package
+- open https://github.com/mariadb-corporation/mysqlnd_parsec/pull/1
+ add dependency on mysqlnd