summaryrefslogtreecommitdiffstats
path: root/php-iliaal-statgrab.spec
diff options
context:
space:
mode:
Diffstat (limited to 'php-iliaal-statgrab.spec')
-rw-r--r--php-iliaal-statgrab.spec131
1 files changed, 131 insertions, 0 deletions
diff --git a/php-iliaal-statgrab.spec b/php-iliaal-statgrab.spec
new file mode 100644
index 0000000..d1dcd60
--- /dev/null
+++ b/php-iliaal-statgrab.spec
@@ -0,0 +1,131 @@
+# remirepo spec file for php-iliaal-statgrab
+#
+# SPDX-FileCopyrightText: Copyright 2026 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-iliaal-statgrab
+%else
+%global pkg_name %{name}
+%endif
+
+%bcond_without tests
+
+%global gh_owner iliaal
+%global gh_project statgrab
+%global ext_name statgrab
+%global pie_vend %{gh_owner}
+%global pie_proj %{gh_project}
+%global ini_name 40-%{ext_name}.ini
+%global forgeurl https://github.com/%{gh_owner}/%{gh_project}
+%global tag %{version}
+# for EL-8 to avoid TAG usage
+%global archivename %{gh_project}-%{tag}
+
+Name: %{?scl_prefix}php-%{pie_vend}-%{pie_proj}
+Summary: PHP extension wrapping libstatgrab
+License: PHP-3.01
+Version: 2.2.0
+Release: 1%{?dist}
+%forgemeta
+URL: %{forgeurl}
+Source0: %{forgesource}
+
+
+BuildRequires: %{?dtsprefix}gcc
+BuildRequires: %{?scl_prefix}php-devel >= 8.0
+BuildRequires: pkgconfig(libstatgrab) >= 0.92
+
+Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api}
+Requires: %{?scl_prefix}php(api) = %{php_core_api}
+
+# Extension
+Provides: %{?scl_prefix}php-%{ext_name} = %{version}
+Provides: %{?scl_prefix}php-%{ext_name}%{?_isa} = %{version}
+# PECL
+Obsoletes: %{?scl_prefix}php-pecl-%{ext_name} < 2
+Provides: %{?scl_prefix}php-pecl-%{ext_name} = %{version}
+Provides: %{?scl_prefix}php-pecl-%{ext_name}%{?_isa} = %{version}
+# PIE
+Provides: %{?scl_prefix}php-pie(%{pie_vend}/%{pie_proj}) = %{version}
+
+
+%description
+A native PHP extension wrapping libstatgrab, the cross-platform
+system-statistics library. CPU, memory, disk I/O, filesystems,
+network interfaces, processes, users.
+
+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
+
+rm -r vendor
+
+# Sanity check, really often broken
+extver=$(sed -n '/#define PHP_STATGRAB_VERSION/{s/.* "//;s/".*$//;p}' php_statgrab.h)
+if test "x${extver}" != "x%{version}"; then
+ : Error: Upstream extension version is ${extver}, expecting %{version}.
+ exit 1
+fi
+
+# Drop in the bit of configuration
+cat << 'EOF' | tee %{ini_name}
+; Enable '%{summary}' extension module
+extension = %{ext_name}
+EOF
+
+
+%build
+%{?dtsenable}
+
+%{__phpize}
+sed -e 's/INSTALL_ROOT/DESTDIR/' -i build/Makefile.global
+
+%configure \
+ --with-php-config=%{__phpconfig} \
+ --with-libdir=%{_lib} \
+ --with-statgrab
+
+%make_build
+
+
+%install
+%{?dtsenable}
+
+# Install the NTS stuff
+%make_install
+install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name}
+
+
+%check
+: Minimal load test for NTS extension
+%{__php} --no-php-ini \
+ --define extension=%{buildroot}%{php_extdir}/%{ext_name}.so \
+ --modules | grep '^%{ext_name}$'
+
+%if %{with tests}
+: Upstream test suite for NTS extension
+TEST_PHP_ARGS="-n -d extension=%{buildroot}%{php_extdir}/%{ext_name}.so" \
+%{__php} -n run-tests.php --show-diff %{?_smp_mflags}
+%endif
+
+
+%files
+%license LICENSE
+%doc composer.json
+%doc CREDITS
+%doc *.md
+
+%config(noreplace) %{php_inidir}/%{ini_name}
+%{php_extdir}/%{ext_name}.so
+
+
+
+%changelog
+* Wed Apr 29 2026 Remi Collet <remi@remirepo.net> - 2.2.0-1
+- new package