summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2025-08-29 10:34:46 +0200
committerRemi Collet <remi@php.net>2025-08-29 10:34:46 +0200
commit4bb5d61176104cb2c563241aee443c17d2b777cf (patch)
tree6dba78851312f3a0709baf31903d6318c6059c90
initial packageHEADmaster
obsoletes php-pecl-judy open https://github.com/orieg/php-judy/pull/32 clean-up build artefacts
-rw-r--r--.gitignore9
-rw-r--r--Makefile4
-rw-r--r--PHPINFO8
-rw-r--r--REFLECTION236
-rw-r--r--php-orieg-judy.spec151
5 files changed, 408 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/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..69ed409
--- /dev/null
+++ b/PHPINFO
@@ -0,0 +1,8 @@
+
+judy
+
+Judy support => enabled
+PHP Judy version => 2.2.0
+
+Directive => Local Value => Master Value
+judy.string.maxlength => 65536 => 65536
diff --git a/REFLECTION b/REFLECTION
new file mode 100644
index 0000000..1178889
--- /dev/null
+++ b/REFLECTION
@@ -0,0 +1,236 @@
+Extension [ <persistent> extension #90 judy version 2.2.0 ] {
+
+ - Dependencies {
+ Dependency [ spl (Required) ]
+ }
+
+ - INI {
+ Entry [ judy.string.maxlength <ALL> ]
+ Current = '65536'
+ }
+ }
+
+ - Constants [1] {
+ Constant [ string JUDY_VERSION ] { 2.2.0 }
+ }
+
+ - Functions {
+ Function [ <internal:judy> function judy_version ] {
+
+ - Parameters [0] {
+ }
+ - Return [ string ]
+ }
+ Function [ <internal:judy> function judy_type ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $array ]
+ }
+ }
+ }
+
+ - Classes [1] {
+ Class [ <internal:judy> <iterateable> class Judy implements ArrayAccess, Countable, Iterator, Traversable ] {
+
+ - Constants [5] {
+ Constant [ public int BITSET ] { 1 }
+ Constant [ public int INT_TO_INT ] { 2 }
+ Constant [ public int INT_TO_MIXED ] { 3 }
+ Constant [ public int STRING_TO_INT ] { 4 }
+ Constant [ public int STRING_TO_MIXED ] { 5 }
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [0] {
+ }
+
+ - Methods [25] {
+ Method [ <internal:judy, ctor> public method __construct ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> int $type ]
+ }
+ }
+
+ Method [ <internal:judy> public method __destruct ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:judy> public method getType ] {
+
+ - Parameters [0] {
+ }
+ - Return [ int ]
+ }
+
+ Method [ <internal:judy> public method free ] {
+
+ - Parameters [0] {
+ }
+ - Return [ int ]
+ }
+
+ Method [ <internal:judy> public method memoryUsage ] {
+
+ - Parameters [0] {
+ }
+ - Return [ ?int ]
+ }
+
+ Method [ <internal:judy> public method size ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <optional> $index_start = <default> ]
+ Parameter #1 [ <optional> $index_end = <default> ]
+ }
+ }
+
+ Method [ <internal:judy, prototype Countable> public method count ] {
+
+ - Parameters [0] {
+ }
+ - Return [ int ]
+ }
+
+ Method [ <internal:judy> public method byCount ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $nth_index ]
+ }
+ }
+
+ Method [ <internal:judy> public method first ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $index ]
+ }
+ }
+
+ Method [ <internal:judy> public method searchNext ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $index ]
+ }
+ }
+
+ Method [ <internal:judy> public method last ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $index ]
+ }
+ }
+
+ Method [ <internal:judy> public method prev ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $index ]
+ }
+ }
+
+ Method [ <internal:judy> public method firstEmpty ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $index ]
+ }
+ }
+
+ Method [ <internal:judy> public method nextEmpty ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $index ]
+ }
+ }
+
+ Method [ <internal:judy> public method lastEmpty ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $index ]
+ }
+ }
+
+ Method [ <internal:judy> public method prevEmpty ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $index ]
+ }
+ }
+
+ Method [ <internal:judy, prototype ArrayAccess> public method offsetSet ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> mixed $offset ]
+ Parameter #1 [ <required> mixed $value ]
+ }
+ - Return [ void ]
+ }
+
+ Method [ <internal:judy, prototype ArrayAccess> public method offsetUnset ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> mixed $offset ]
+ }
+ - Return [ void ]
+ }
+
+ Method [ <internal:judy, prototype ArrayAccess> public method offsetGet ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> mixed $offset ]
+ }
+ - Return [ mixed ]
+ }
+
+ Method [ <internal:judy, prototype ArrayAccess> public method offsetExists ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> mixed $offset ]
+ }
+ - Return [ bool ]
+ }
+
+ Method [ <internal:judy, prototype Iterator> public method rewind ] {
+
+ - Parameters [0] {
+ }
+ - Return [ void ]
+ }
+
+ Method [ <internal:judy, prototype Iterator> public method valid ] {
+
+ - Parameters [0] {
+ }
+ - Return [ bool ]
+ }
+
+ Method [ <internal:judy, prototype Iterator> public method current ] {
+
+ - Parameters [0] {
+ }
+ - Return [ mixed ]
+ }
+
+ Method [ <internal:judy, prototype Iterator> public method key ] {
+
+ - Parameters [0] {
+ }
+ - Return [ mixed ]
+ }
+
+ Method [ <internal:judy, prototype Iterator> public method next ] {
+
+ - Parameters [0] {
+ }
+ - Return [ void ]
+ }
+ }
+ }
+ }
+}
+
diff --git a/php-orieg-judy.spec b/php-orieg-judy.spec
new file mode 100644
index 0000000..ecfff86
--- /dev/null
+++ b/php-orieg-judy.spec
@@ -0,0 +1,151 @@
+# remirepo spec file for php-orieg-judy
+#
+# 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
+#
+
+%if 0%{?scl:1}
+%scl_package php-orieg-judy
+%else
+%global _root_prefix %{_prefix}
+%endif
+
+%bcond_without tests
+
+# Extension
+%global ext_name judy
+%global ini_name 40-%{ext_name}.ini
+%global upstream_version 2.2.0
+#global upstream_prever RC1
+# PIE / packagist
+%global pie_vend orieg
+%global pie_proj judy
+# Github forge
+%global gh_vend orieg
+%global gh_proj php-judy
+%global forgeurl https://github.com/%{gh_vend}/%{gh_proj}
+#global commit afe5de4ce52bb2b80af565a6f297bf330a65d0d8
+%global tag v%{upstream_version}%{?upstream_prever}
+# for EL-8 to avoid TAG usage
+%global archivename %{gh_proj}-%{upstream_version}%{?upstream_prever}
+
+Summary: PHP Judy implements sparse dynamic arrays
+Name: %{?scl_prefix}php-%{pie_vend}-%{pie_proj}
+Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}}
+%forgemeta
+Release: 1%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}
+License: PHP-3.01
+URL: %{forgeurl}
+Source0: %{forgesource}
+
+BuildRequires: make
+BuildRequires: gcc
+BuildRequires: %{?scl_prefix}php-devel >= 8.0
+BuildRequires: Judy-devel
+
+Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api}
+Requires: %{?scl_prefix}php(api) = %{php_core_api}
+
+Provides: %{?scl_prefix}php-%{ext_name} = %{version}
+Provides: %{?scl_prefix}php-%{ext_name}%{?_isa} = %{version}
+Provides: %{?scl_prefix}php-pie(%{pie_vend}/%{pie_proj}) = %{version}
+# Package have been renamed
+Obsoletes: %{?scl_prefix}php-pecl-judy < 2.2
+Provides: %{?scl_prefix}php-pecl-judy = %{version}
+Provides: %{?scl_prefix}php-pecl-judy%{?_isa} = %{version}
+
+
+%description
+PHP Judy implements sparse dynamic arrays (aka Judy Arrays).
+This extension is based on the Judy C library. A Judy array
+consumes memory only when it is populated, yet can grow to
+take advantage of all available memory if desired. Judy's key
+benefits are scalability, high performance, and memory efficiency.
+
+Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}.
+
+
+%package devel
+Summary: %{name} developer files (header)
+Group: Development/Libraries
+Requires: %{name}%{?_isa} = %{version}-%{release}
+Requires: %{?scl_prefix}php-devel%{?_isa}
+# Package have been renamed
+Obsoletes: %{?scl_prefix}php-pecl-judy-devel < 2.2
+Provides: %{?scl_prefix}php-pecl-judy-devel = %{version}
+
+%description devel
+These are the files needed to compile programs using %{name}.
+
+
+%prep
+%forgesetup
+
+rm -r test-package judy-2.2.0 *.dep
+
+: Sanity check, really often broken
+extver=$(sed -n '/#define PHP_JUDY_VERSION/{s/.* "//;s/".*$//;p}' php_judy.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 %{ext_name} extension module
+extension=%{ext_name}
+EOF
+
+
+%build
+%{__phpize}
+sed -e 's/INSTALL_ROOT/DESTDIR/' -i build/Makefile.global
+
+%configure \
+ --with-judy=%{_root_prefix} \
+ --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=%{buildroot}/%{php_extdir}/%{ext_name}.so \
+ --modules | grep -i '^%{ext_name}$'
+
+%if %{with tests}
+: Upstream test suite for the extension
+TEST_PHP_ARGS="-n -d extension=%{buildroot}/%{php_extdir}/%{ext_name}.so" \
+%{__php} -n run-tests.php -q --show-diff %{?_smp_mflags}
+%endif
+
+
+%files
+%license LICENSE
+%doc composer.json
+%doc *.md
+%config(noreplace) %{php_inidir}/%{ini_name}
+%{php_extdir}/%{ext_name}.so
+
+%files devel
+%doc examples
+%{php_incldir}/ext/%{ext_name}
+
+
+%changelog
+* Fri Aug 29 2025 Remi Collet <remi@remirepo.net> - 2.2.0-1
+- initial package
+- obsoletes php-pecl-judy
+- open https://github.com/orieg/php-judy/pull/32 clean-up build artefacts