[packages/php-pecl-grpc: 1/2] new, version 0.15.0

glen glen at pld-linux.org
Wed Jul 20 21:27:18 CEST 2016


commit 29d530d6b17f0478a3169ac50c04eddb9a750e91
Author: Elan Ruusamäe <glen at delfi.ee>
Date:   Wed Jul 20 22:26:17 2016 +0300

    new, version 0.15.0

 php-pecl-grpc.spec | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 87 insertions(+)
---
diff --git a/php-pecl-grpc.spec b/php-pecl-grpc.spec
new file mode 100644
index 0000000..0c755f7
--- /dev/null
+++ b/php-pecl-grpc.spec
@@ -0,0 +1,87 @@
+# TODO
+# - use system openssl instead of boringssl
+# - use system nanopb package
+#
+# Conditional build:
+%bcond_without	tests		# build without tests
+
+%define		php_name	php%{?php_suffix}
+%define		modname	grpc
+Summary:	A high performance, general RPC framework that puts mobile and HTTP/2 first
+Name:		%{php_name}-pecl-%{modname}
+Version:	0.15.0
+Release:	1
+License:	BSD
+Group:		Development/Languages/PHP
+Source0:	http://pecl.php.net/get/%{modname}-%{version}.tgz
+# Source0-md5:	ba80ec5aa995d7b9e3df7d6d299bbd4b
+URL:		http://pecl.php.net/package/grpc/
+%{?with_tests:BuildRequires:    %{php_name}-cli}
+BuildRequires:	%{php_name}-devel >= 4:5.5
+BuildRequires:	rpmbuild(macros) >= 1.666
+%if %{with tests}
+BuildRequires:	%{php_name}-cli
+BuildRequires:	%{php_name}-spl
+%endif
+%{?requires_php_extension}
+Provides:	php(grpc) = %{version}
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Remote Procedure Calls (RPCs) provide a useful abstraction for
+building distributed applications and services. The libraries in this
+repository provide a concrete implementation of the gRPC protocol,
+layered over HTTP/2. These libraries enable communication between
+clients and servers using any combination of the supported languages.
+
+%prep
+%setup -qc
+mv %{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)
+%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-grpc.git/commitdiff/3c3ee2716c79bb04ba0e5ec2260c1e7a6fc67f56



More information about the pld-cvs-commit mailing list