summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore9
-rw-r--r--Makefile4
-rw-r--r--PHPINFO8
-rw-r--r--REFLECTION98
-rw-r--r--php-girgias-csv.spec134
5 files changed, 253 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..8b0501b
--- /dev/null
+++ b/PHPINFO
@@ -0,0 +1,8 @@
+
+csv
+
+CSV support => enabled
+Version => 0.4.4
+Author => Gina Peter Banyard
+Bug reports => https://gitlab.com/Girgias/csv-php-extension/issues
+Sponsor me => https://github.com/sponsors/Girgias
diff --git a/REFLECTION b/REFLECTION
new file mode 100644
index 0000000..ce9e7e4
--- /dev/null
+++ b/REFLECTION
@@ -0,0 +1,98 @@
+Extension [ <persistent> extension #74 csv version 0.4.4 ] {
+
+ - Functions {
+ Function [ <internal:csv> function Csv\array_to_row ] {
+
+ - Parameters [4] {
+ Parameter #0 [ <required> array $fields ]
+ Parameter #1 [ <optional> string $delimiter = ',' ]
+ Parameter #2 [ <optional> string $enclosure = '"' ]
+ Parameter #3 [ <optional> string $eolSequence = "\r\n" ]
+ }
+ - Return [ string ]
+ }
+ Function [ <internal:csv> function Csv\row_to_array ] {
+
+ - Parameters [4] {
+ Parameter #0 [ <required> string $row ]
+ Parameter #1 [ <optional> string $delimiter = ',' ]
+ Parameter #2 [ <optional> string $enclosure = '"' ]
+ Parameter #3 [ <optional> string $eolSequence = "\r\n" ]
+ }
+ - Return [ array ]
+ }
+ Function [ <internal:csv> function Csv\collection_to_buffer ] {
+
+ - Parameters [4] {
+ Parameter #0 [ <required> Traversable|array $collection ]
+ Parameter #1 [ <optional> string $delimiter = ',' ]
+ Parameter #2 [ <optional> string $enclosure = '"' ]
+ Parameter #3 [ <optional> string $eolSequence = "\r\n" ]
+ }
+ - Return [ string ]
+ }
+ Function [ <internal:csv> function Csv\buffer_to_collection ] {
+
+ - Parameters [4] {
+ Parameter #0 [ <required> string $buffer ]
+ Parameter #1 [ <optional> string $delimiter = ',' ]
+ Parameter #2 [ <optional> string $enclosure = '"' ]
+ Parameter #3 [ <optional> string $eolSequence = "\r\n" ]
+ }
+ - Return [ array ]
+ }
+ Function [ <internal:csv> function Csv\buffer_to_collection_lax ] {
+
+ - Parameters [4] {
+ Parameter #0 [ <required> string $buffer ]
+ Parameter #1 [ <optional> string $delimiter = ',' ]
+ Parameter #2 [ <optional> string $enclosure = '"' ]
+ Parameter #3 [ <optional> string $eolSequence = "\r\n" ]
+ }
+ - Return [ array ]
+ }
+ }
+
+ - Classes [1] {
+ Class [ <internal:csv> <iterateable> final class Csv\LazyLaxCollection implements IteratorAggregate, Traversable ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [1] {
+ Method [ <internal:csv> static public method createFromBuffer ] {
+
+ - Parameters [4] {
+ Parameter #0 [ <required> string $buffer ]
+ Parameter #1 [ <optional> string $delimiter = ',' ]
+ Parameter #2 [ <optional> string $enclosure = '"' ]
+ Parameter #3 [ <optional> string $eolSequence = "\r\n" ]
+ }
+ - Return [ Csv\LazyLaxCollection ]
+ }
+ }
+
+ - Properties [0] {
+ }
+
+ - Methods [2] {
+ Method [ <internal:csv, ctor> private method __construct ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:csv, prototype IteratorAggregate> public method getIterator ] {
+
+ - Parameters [0] {
+ }
+ - Return [ InternalIterator ]
+ }
+ }
+ }
+ }
+}
+
diff --git a/php-girgias-csv.spec b/php-girgias-csv.spec
new file mode 100644
index 0000000..e16d989
--- /dev/null
+++ b/php-girgias-csv.spec
@@ -0,0 +1,134 @@
+# remirepo spec file for php-girgias-csv
+#
+# 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-girgias-csv}
+
+%bcond_without tests
+
+# Extension
+%global ext_name csv
+%global ini_name 40-%{ext_name}.ini
+%global upstream_version 0.4.4
+#global upstream_prever RC1
+# PIE / packagist
+%global pie_vend girgias
+%global pie_proj csv
+# Github forge
+%global gh_vend Girgias
+%global gh_proj csv-php-extension
+%global forgeurl https://gitlab.com/%{gh_vend}/%{gh_proj}
+%global tag %{upstream_version}%{?upstream_prever}
+# Mandatory for gitlab on EL-8
+%global commit 37e466bfdd1c8b178fd839b6d7593b435d411113
+%global archivename %{gh_proj}-%{upstream_version}%{?upstream_prever}
+
+Summary: CSV PHP extension
+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 with %{?scl_prefix}php-devel < 8.6)
+
+Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api}
+Requires: %{?scl_prefix}php(api) = %{php_core_api}
+
+# PECL/PIE
+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-%{ext_name} < 0.4.4
+Provides: %{?scl_prefix}php-pecl-%{ext_name} = %{version}
+Provides: %{?scl_prefix}php-pecl-%{ext_name}%{?_isa} = %{version}
+
+
+%description
+A small PHP extension to add/improve the handling of CSV strings which follows
+RFC 4180.
+
+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
+
+# see https://gitlab.com/Girgias/csv-php-extension/-/issues/13
+sed -e '/PHP_CSV_VERSION/s/0.5.0/%{upstream_version}%{?upstream_prever}/' -i php_csv.h
+
+: Sanity check, really often broken
+extver=$(sed -n '/# define PHP_CSV_VERSION/{s/.* "//;s/".*$//;p}' php_csv.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-csv \
+ --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 '^%{ext_name}$'
+
+%if %{with tests}
+# see https://gitlab.com/Girgias/csv-php-extension/-/issues/12
+sed -e 's/new/@new/' -i tests/collection_to_buffer/basic_with_iterator_aggregate.phpt
+
+: 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
+
+
+%changelog
+* Thu Sep 4 2025 Remi Collet <remi@remirepo.net> - 0.4.4-1
+- initial package
+- obsoletes php-pecl-csv
+- open https://gitlab.com/Girgias/csv-php-extension/-/issues/13
+ Version 0.4.4 reports as 0.5.0
+- open https://gitlab.com/Girgias/csv-php-extension/-/issues/12
+ Deprecation message with 8.5.0beta2