[packages/php-ast] new, version 0.1.1

glen glen at pld-linux.org
Mon Jun 27 00:44:47 CEST 2016


commit ea9364d89e1083d4cc2bacdafb08d17ee2f3d713
Author: Elan Ruusamäe <glen at delfi.ee>
Date:   Mon Jun 27 01:44:23 2016 +0300

    new, version 0.1.1

 php-ast.spec | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 80 insertions(+)
---
diff --git a/php-ast.spec b/php-ast.spec
new file mode 100644
index 0000000..782b1a6
--- /dev/null
+++ b/php-ast.spec
@@ -0,0 +1,80 @@
+#
+# Conditional build:
+%bcond_without	tests		# build without tests
+
+%define		php_name	php%{?php_suffix}
+%define		modname	ast
+Summary:	Extension exposing PHP 7 abstract syntax tree
+Name:		%{php_name}-%{modname}
+Version:	0.1.1
+Release:	1
+License:	BSD
+Group:		Development/Languages/PHP
+Source0:	https://github.com/nikic/php-ast/archive/v%{version}/php-%{modname}-%{version}.tar.gz
+# Source0-md5:	8ea356bd81ed52e838ac1105433c7ab6
+URL:		https://github.com/nikic/php-ast
+%{?with_tests:BuildRequires:    %{php_name}-cli}
+BuildRequires:	%{php_name}-devel >= 4:7.0
+BuildRequires:	rpmbuild(macros) >= 1.666
+%if %{with tests}
+BuildRequires:	%{php_name}-cli
+BuildRequires:	%{php_name}-pcre
+%endif
+%{?requires_php_extension}
+Provides:	php(ast) = %{version}
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This extension exposes the abstract syntax tree generated by PHP 7.
+
+%prep
+%setup -q -n php-%{modname}-%{version}
+
+%build
+phpize
+%configure
+%{__make}
+
+%if %{with tests}
+# simple module load test
+%{__php} -n -q \
+	-d extension_dir=modules \
+	-d extension=%{php_extensiondir}/spl.so \
+	-d extension=%{modname}.so \
+	-m > modules.log
+grep %{modname} modules.log
+
+export NO_INTERACTION=1 REPORT_EXIT_STATUS=1 MALLOC_CHECK_=2
+%{__make} test \
+	PHP_EXECUTABLE=%{__php} \
+	PHP_TEST_SHARED_SYSTEM_EXTENSIONS="spl" \
+%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 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-ast.git/commitdiff/ea9364d89e1083d4cc2bacdafb08d17ee2f3d713



More information about the pld-cvs-commit mailing list