[packages/php-ext-pimple] C extension of Piple

glen glen at pld-linux.org
Fri May 8 19:40:21 CEST 2015


commit fb41d5cfdc3cb24cc4ee4e0f2d38bf111baf7a3e
Author: Elan Ruusamäe <glen at delfi.ee>
Date:   Fri May 8 20:39:32 2015 +0300

    C extension of Piple
    
    based on php-pimple package
    
    as rpm can't build main package noarch, and subpackage arch, created
    separate .spec

 php-ext-pimple.spec | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 87 insertions(+)
---
diff --git a/php-ext-pimple.spec b/php-ext-pimple.spec
new file mode 100644
index 0000000..06aa6ce
--- /dev/null
+++ b/php-ext-pimple.spec
@@ -0,0 +1,87 @@
+#
+# Conditional build:
+%bcond_without	tests		# build without tests
+
+%define		php_name	php%{?php_suffix}
+%define		modname	pimple
+Summary:	A simple dependency injection container for PHP
+Name:		php-ext-%{modname}
+Version:	3.0.0
+Release:	1
+License:	MIT
+Group:		Development/Languages/PHP
+Source0:	https://github.com/silexphp/Pimple/archive/v%{version}/%{modname}-%{version}.tar.gz
+# Source0-md5:	09c5470d679cf31187289aa89d039926
+URL:		http://pimple.sensiolabs.org/
+BuildRequires:	%{php_name}-devel
+BuildRequires:	rpmbuild(macros) >= 1.666
+%if %{with tests}
+BuildRequires:	%{php_name}-cli
+BuildRequires:	%{php_name}-pcre
+BuildRequires:	%{php_name}-spl
+%endif
+%{?requires_php_extension}
+Provides:	php(pimple) = %{version}
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define		namespace	Pimple
+
+%description
+Pimple is a small dependency injection container for PHP that consists
+of just one file and one class.
+
+%prep
+%setup -qc
+mv Pimple-%{version}/ext/pimple/* .
+
+# failing test
+%{__rm} tests/015.phpt
+
+%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
+
+%post
+%php_webserver_restart
+
+%postun
+if [ "$1" = 0 ]; then
+	%php_webserver_restart
+fi
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%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-ext-pimple.git/commitdiff/fb41d5cfdc3cb24cc4ee4e0f2d38bf111baf7a3e



More information about the pld-cvs-commit mailing list