[packages/php-pecl-parallel] new; version 1.0.1; requires php-zts

glen glen at pld-linux.org
Wed May 22 11:25:06 CEST 2019


commit acac758d302f017e72355962106dd5534563f92b
Author: Elan Ruusamäe <glen at pld-linux.org>
Date:   Wed May 22 12:24:38 2019 +0300

    new; version 1.0.1; requires php-zts

 php-pecl-parallel.spec | 102 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 102 insertions(+)
---
diff --git a/php-pecl-parallel.spec b/php-pecl-parallel.spec
new file mode 100644
index 0000000..2a2b2ec
--- /dev/null
+++ b/php-pecl-parallel.spec
@@ -0,0 +1,102 @@
+#
+# Conditional build:
+%bcond_without	tests		# build without tests
+
+%define		php_name	php%{?php_suffix}
+%define		modname	parallel
+Summary:	Parallel concurrency API
+Name:		%{php_name}-pecl-%{modname}
+Version:	1.0.1
+Release:	0.1
+License:	PHP 3.01
+Group:		Development/Languages/PHP
+Source0:	https://pecl.php.net/get/%{modname}-%{version}.tgz
+# Source0-md5:	a291b559fcf984b0e7220ed6e1a40e59
+URL:		https://pecl.php.net/package/parallel/
+BuildRequires:	%{php_name}-cli
+BuildRequires:	%{php_name}-devel >= 4:7.2.0
+BuildRequires:	%{php_name}(thread-safety) = 1
+BuildRequires:	rpmbuild(macros) >= 1.666
+%if %{with tests}
+%endif
+%{?requires_php_extension}
+Provides:	php(%{modname}) = %{version}
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A succinct parallel concurrency API 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="" \
+	RUN_TESTS_SETTINGS="-q $*"
+EOF
+chmod +x run-tests.sh
+
+xfail() {
+	local t=$1
+	test -f $t
+	cat >> $t <<-EOF
+
+	--XFAIL--
+	Skip
+	EOF
+}
+
+while read line; do
+	t=${line##*\[}; t=${t%\]}
+	xfail $t
+done << 'EOF'
+EOF
+
+%build
+phpize
+%configure
+%{__make}
+
+# simple module load test
+%{__php} -n -q \
+	-d extension_dir=modules \
+	-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
+%{__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 README.md
+%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-parallel.git/commitdiff/acac758d302f017e72355962106dd5534563f92b



More information about the pld-cvs-commit mailing list