[packages/php-pecl-ds] new, version 1.2.8

glen glen at pld-linux.org
Mon Mar 11 14:17:22 CET 2019


commit 228ceb1ca8b1eb5f02591fda0d40e8d6535b01d2
Author: Elan Ruusamäe <glen at pld-linux.org>
Date:   Mon Mar 11 15:17:04 2019 +0200

    new, version 1.2.8

 php-pecl-ds.spec | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 94 insertions(+)
---
diff --git a/php-pecl-ds.spec b/php-pecl-ds.spec
new file mode 100644
index 0000000..35fafd7
--- /dev/null
+++ b/php-pecl-ds.spec
@@ -0,0 +1,94 @@
+#
+# Conditional build:
+%bcond_without	tests		# build without tests
+
+%define		php_name	php%{?php_suffix}
+%define		modname	ds
+Summary:	Data Structures
+Name:		%{php_name}-pecl-%{modname}
+Version:	1.2.8
+Release:	1
+License:	MIT
+Group:		Development/Languages/PHP
+Source0:	https://pecl.php.net/get/%{modname}-%{version}.tgz
+# Source0-md5:	be49f6819ff5049cd623a008243da999
+URL:		https://pecl.php.net/package/ds/
+BuildRequires:	%{php_name}-cli
+BuildRequires:	%{php_name}-devel >= 4:7.0
+BuildRequires:	%{php_name}-json
+BuildRequires:	%{php_name}-spl
+BuildRequires:	rpmbuild(macros) >= 1.666
+%if %{with tests}
+%endif
+%{?requires_php_extension}
+Requires:	%{php_name}-json
+Requires:	%{php_name}-spl
+Provides:	php(%{modname}) = %{version}
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Data Structures for PHP 7.
+
+%prep
+%setup -qc
+mv %{modname}-%{version}/* .
+
+cat <<'EOF' > run-tests.sh
+#!/bin/sh
+export NO_INTERACTION=1 REPORT_EXIT_STATUS=1 MALLOC_CHECK_=2
+exec %{__make} test \
+	PHP_EXECUTABLE=%{__php} \
+	PHP_TEST_SHARED_SYSTEM_EXTENSIONS="spl json" \
+	RUN_TESTS_SETTINGS="-q $*"
+EOF
+chmod +x run-tests.sh
+
+%build
+phpize
+%configure
+%{__make}
+
+# simple module load test
+%{__php} -n -q \
+	-d extension_dir=modules \
+	-d extension=%{php_extensiondir}/spl.so \
+	-d extension=%{php_extensiondir}/json.so \
+	-d extension=%{modname}.so \
+	-m > modules.log
+grep %{modname} modules.log
+
+%if %{with tests}
+./run-tests.sh --show-diff
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d
+install -d $RPM_BUILD_ROOT{%{php_sysconfdir}/conf.d,%{php_extensiondir}}
+
+%{__make} install \
+	EXTENSION_DIR=%{php_extensiondir} \
+	INSTALL_ROOT=$RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d
+cat <<'EOF' > $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d/%{modname}.ini
+; Enable %{modname} extension module
+extension=%{modname}.so
+EOF
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+%php_webserver_restart
+
+%postun
+if [ "$1" = 0 ]; then
+	%php_webserver_restart
+fi
+
+%files
+%defattr(644,root,root,755)
+%doc LICENSE
+%config(noreplace) %verify(not md5 mtime size) %{php_sysconfdir}/conf.d/%{modname}.ini
+%attr(755,root,root) %{php_extensiondir}/%{modname}.so
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pecl-ds.git/commitdiff/228ceb1ca8b1eb5f02591fda0d40e8d6535b01d2



More information about the pld-cvs-commit mailing list