diff options
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | php-pecl-jsonc-dev.spec | 233 | ||||
| -rw-r--r-- | php-pecl-jsonc.spec | 168 | 
3 files changed, 405 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..13af741 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../../common/Makefile + diff --git a/php-pecl-jsonc-dev.spec b/php-pecl-jsonc-dev.spec new file mode 100644 index 0000000..a953b64 --- /dev/null +++ b/php-pecl-jsonc-dev.spec @@ -0,0 +1,233 @@ +%{!?php_inidir:  %{expand: %%global php_inidir  %{_sysconfdir}/php.d}} +%{!?php_incldir: %{expand: %%global php_incldir %{_includedir}/php}} +%{!?__pecl:      %{expand: %%global __pecl      %{_bindir}/pecl}} + +%global pecl_name  json +%global proj_name  jsonc +%global with_zts   0%{?__ztsphp:1} + +%if 0%{?fedora} < 20 +%global ext_name     jsonc +%else +%global ext_name     json +%endif +%if 0%{?fedora} < 19 +%global with_libjson 0 +%else +%global with_libjson 1 +%endif + + +Summary:       Support for JSON serialization +Name:          php-pecl-%{proj_name} +Version:       1.3.1 +Release:       1%{?dist} +License:       PHP +Group:         Development/Languages +URL:           http://pecl.php.net/package/%{proj_name} +Source0:       http://pecl.php.net/get/%{proj_name}-%{version}.tgz + +BuildRoot:     %{_tmppath}/%{name}-%{version}-%{release}-root +BuildRequires: php-devel >= 5.4 +BuildRequires: php-pear +BuildRequires: pcre-devel +%if %{with_libjson} +BuildRequires: json-c-devel >= 0.11 +%endif + +Requires(post): %{__pecl} +Requires(postun): %{__pecl} +Requires:      php(zend-abi) = %{php_zend_api} +Requires:      php(api) = %{php_core_api} + +Provides:      php-%{pecl_name} = %{version} +Provides:      php-%{pecl_name}%{?_isa} = %{version} +Provides:      php-pecl(%{pecl_name}) = %{version} +Provides:      php-pecl(%{pecl_name})%{?_isa} = %{version} +Provides:      php-pecl(%{proj_name}) = %{version} +Provides:      php-pecl(%{proj_name})%{?_isa} = %{version} + +# Other third party repo stuff +Obsoletes:     php53-pecl-%{pecl_name} +Obsoletes:     php53u-pecl-%{pecl_name} +%if "%{php_version}" > "5.4" +Obsoletes:     php54-pecl-%{pecl_name} +%endif +%if "%{php_version}" > "5.5" +Obsoletes:     php55-pecl-%{pecl_name} +%endif + +# Filter private shared +%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$} +%{?filter_setup} + + +%description +The php-Json module will add support for JSON (JavaScript Object Notation) +serialization to PHP. + +This is a dropin alternative to standard PHP JSON extension which +use the json-c library parser. + + +%package devel +Summary:       JSON developer files (header) +Group:         Development/Libraries +Requires:      %{name}%{?_isa} = %{version}-%{release} +Requires:      php-devel%{?_isa} + +%description devel +These are the files needed to compile programs using JSON serializer. + + +%prep +%setup -q -c  +cd %{proj_name}-%{version} + +# Sanity check, really often broken +extver=$(sed -n '/#define PHP_JSON_VERSION/{s/.* "//;s/".*$//;p}' php_json.h ) +if test "x${extver}" != "x%{version}%{?prever:-%{prever}}"; then +   : Error: Upstream extension version is ${extver}, expecting %{version}%{?prever:-%{prever}}. +   exit 1 +fi +cd .. + +cat << 'EOF' | tee %{ext_name}.ini +; Enable %{ext_name} extension module +%if "%{ext_name}" == "json" +extension = %{pecl_name}.so +%else +; You must disable standard %{pecl_name}.so before you enable %{proj_name}.so +;extension = %{proj_name}.so +%endif +EOF + +%if %{with_zts} +# duplicate for ZTS build +cp -pr %{proj_name}-%{version} %{proj_name}-zts +%endif + + +%build +cd %{proj_name}-%{version} +%{_bindir}/phpize +%configure \ +%if %{with_libjson} +  --with-libjson \ +%endif +%if "%{ext_name}" == "jsonc" +  --with-jsonc \ +%endif +  --with-php-config=%{_bindir}/php-config +make %{?_smp_mflags} + +%if %{with_zts} +cd ../%{proj_name}-zts +%{_bindir}/zts-phpize +%configure \ +%if %{with_libjson} +  --with-libjson \ +%endif +%if "%{ext_name}" == "jsonc" +  --with-jsonc \ +%endif +  --with-php-config=%{_bindir}/zts-php-config +make %{?_smp_mflags} +%endif + + +%install +rm -rf %{buildroot} +# Install the NTS stuff +make -C %{proj_name}-%{version} \ +     install INSTALL_ROOT=%{buildroot} +install -D -m 644 %{ext_name}.ini %{buildroot}%{php_inidir}/%{ext_name}.ini + +# Install the ZTS stuff +%if %{with_zts} +make -C %{proj_name}-zts \ +     install INSTALL_ROOT=%{buildroot} +install -D -m 644 %{ext_name}.ini %{buildroot}%{php_ztsinidir}/%{ext_name}.ini +%endif + +# Install the package XML file +install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml + + +%check +cd %{proj_name}-%{version} + +TEST_PHP_EXECUTABLE=%{_bindir}/php \ +TEST_PHP_ARGS="-n -d extension_dir=$PWD/modules -d extension=%{ext_name}.so" \ +NO_INTERACTION=1 \ +REPORT_EXIT_STATUS=1 \ +%{_bindir}/php -n run-tests.php + +%if %{with_zts} +cd ../%{proj_name}-zts + +TEST_PHP_EXECUTABLE=%{__ztsphp} \ +TEST_PHP_ARGS="-n -d extension_dir=$PWD/modules -d extension=%{ext_name}.so" \ +NO_INTERACTION=1 \ +REPORT_EXIT_STATUS=1 \ +%{__ztsphp} -n run-tests.php +%endif + + +%post +%{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : + + +%postun +if [ $1 -eq 0 ] ; then +    %{pecl_uninstall} %{proj_name} >/dev/null || : +fi + + +%clean +rm -rf %{buildroot} + + +%files +%defattr(-,root,root,-) +%doc %{proj_name}-%{version}%{?prever}/{LICENSE,CREDITS,README.md} + +%config(noreplace) %{php_inidir}/%{ext_name}.ini +%{php_extdir}/%{ext_name}.so +%{pecl_xmldir}/%{name}.xml + +%if %{with_zts} +%{php_ztsextdir}/%{ext_name}.so +%config(noreplace) %{php_ztsinidir}/%{ext_name}.ini +%endif + + +%files devel +%defattr(-,root,root,-) +%{php_incldir}/ext/json + +%if %{with_zts} +%{php_ztsincldir}/ext/json +%endif + + +%changelog +* Wed Jun 12 2013 Remi Collet <rcollet@redhat.com> - 1.3.1-1 +- release 1.3.1 (beta) +- rename to php-pecl-jsonc + +* Tue Jun  4 2013 Remi Collet <rcollet@redhat.com> - 1.3.0-1 +- release 1.3.0 (beta) +- use system json-c when available (fedora >= 20) +- use jsonc name for module and configuration + +* Mon Apr 29 2013 Remi Collet <rcollet@redhat.com> - 1.3.0-0.3 +- rebuild with latest changes +- use system json-c library +- temporarily rename to jsonc-c.so + +* Sat Apr 27 2013 Remi Collet <rcollet@redhat.com> - 1.3.0-0.2 +- rebuild with latest changes + +* Sat Apr 27 2013 Remi Collet <rcollet@redhat.com> - 1.3.0-0.1 +- initial package diff --git a/php-pecl-jsonc.spec b/php-pecl-jsonc.spec new file mode 100644 index 0000000..abfe7da --- /dev/null +++ b/php-pecl-jsonc.spec @@ -0,0 +1,168 @@ +%{!?__pecl:      %{expand: %%global __pecl      %{_bindir}/pecl}} + +%global pecl_name  json +%global proj_name  jsonc + +Summary:       Support for JSON serialization +Name:          php-pecl-%{proj_name} +Version:       1.3.1 +Release:       1%{?dist} +License:       PHP +Group:         Development/Languages +URL:           http://pecl.php.net/package/%{proj_name} +Source0:       http://pecl.php.net/get/%{proj_name}-%{version}.tgz + +BuildRequires: php-devel >= 5.4 +BuildRequires: php-pear +BuildRequires: pcre-devel +BuildRequires: json-c-devel >= 0.11 + +Requires(post): %{__pecl} +Requires(postun): %{__pecl} +Requires:      php(zend-abi) = %{php_zend_api} +Requires:      php(api) = %{php_core_api} + +Provides:      php-%{pecl_name} = %{version} +Provides:      php-%{pecl_name}%{?_isa} = %{version} +Provides:      php-pecl(%{pecl_name}) = %{version} +Provides:      php-pecl(%{pecl_name})%{?_isa} = %{version} +Provides:      php-pecl(%{proj_name}) = %{version} +Provides:      php-pecl(%{proj_name})%{?_isa} = %{version} + +# Filter private shared +%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$} +%{?filter_setup} + + +%description +The php-Json module will add support for JSON (JavaScript Object Notation) +serialization to PHP. + +This is a dropin alternative to standard PHP JSON extension which +use the json-c library parser. + + +%package devel +Summary:       JSON developer files (header) +Group:         Development/Libraries +Requires:      %{name}%{?_isa} = %{version}-%{release} +Requires:      php-devel%{?_isa} + +%description devel +These are the files needed to compile programs using JSON serializer. + + +%prep +%setup -q -c  +cd %{proj_name}-%{version} + +# Sanity check, really often broken +extver=$(sed -n '/#define PHP_JSON_VERSION/{s/.* "//;s/".*$//;p}' php_json.h ) +if test "x${extver}" != "x%{version}%{?prever:-%{prever}}"; then +   : Error: Upstream extension version is ${extver}, expecting %{version}%{?prever:-%{prever}}. +   exit 1 +fi +cd .. + +cat << 'EOF' | tee %{pecl_name}.ini +; Enable %{pecl_name} extension module +extension = %{pecl_name}.so +EOF + +# duplicate for ZTS build +cp -pr %{proj_name}-%{version} %{proj_name}-zts + + +%build +cd %{proj_name}-%{version} +%{_bindir}/phpize +%configure \ +  --with-libjson \ +  --with-php-config=%{_bindir}/php-config +make %{?_smp_mflags} + +cd ../%{proj_name}-zts +%{_bindir}/zts-phpize +%configure \ +  --with-libjson \ +  --with-php-config=%{_bindir}/zts-php-config +make %{?_smp_mflags} + + +%install +# Install the NTS stuff +make -C %{proj_name}-%{version} \ +     install INSTALL_ROOT=%{buildroot} +install -D -m 644 %{pecl_name}.ini %{buildroot}%{php_inidir}/%{pecl_name}.ini + +# Install the ZTS stuff +make -C %{proj_name}-zts \ +     install INSTALL_ROOT=%{buildroot} +install -D -m 644 %{pecl_name}.ini %{buildroot}%{php_ztsinidir}/%{pecl_name}.ini + +# Install the package XML file +install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml + + +%check +cd %{proj_name}-%{version} + +TEST_PHP_EXECUTABLE=%{_bindir}/php \ +TEST_PHP_ARGS="-n -d extension_dir=$PWD/modules -d extension=%{pecl_name}.so" \ +NO_INTERACTION=1 \ +REPORT_EXIT_STATUS=1 \ +%{_bindir}/php -n run-tests.php + +cd ../%{proj_name}-zts + +TEST_PHP_EXECUTABLE=%{__ztsphp} \ +TEST_PHP_ARGS="-n -d extension_dir=$PWD/modules -d extension=%{pecl_name}.so" \ +NO_INTERACTION=1 \ +REPORT_EXIT_STATUS=1 \ +%{__ztsphp} -n run-tests.php + + +%post +%{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : + + +%postun +if [ $1 -eq 0 ] ; then +    %{pecl_uninstall} %{proj_name} >/dev/null || : +fi + + +%files +%doc %{proj_name}-%{version}%{?prever}/{LICENSE,CREDITS,README.md} +%config(noreplace) %{php_inidir}/%{pecl_name}.ini +%config(noreplace) %{php_ztsinidir}/%{pecl_name}.ini +%{php_extdir}/%{pecl_name}.so +%{pecl_xmldir}/%{name}.xml +%{php_ztsextdir}/%{pecl_name}.so + + +%files devel +%{php_incldir}/ext/json +%{php_ztsincldir}/ext/json + + +%changelog +* Wed Jun 12 2013 Remi Collet <rcollet@redhat.com> - 1.3.1-1 +- release 1.3.1 (beta) +- rename to php-pecl-jsonc + +* Tue Jun  4 2013 Remi Collet <rcollet@redhat.com> - 1.3.0-1 +- release 1.3.0 (beta) +- use system json-c when available (fedora >= 20) +- use jsonc name for module and configuration + +* Mon Apr 29 2013 Remi Collet <rcollet@redhat.com> - 1.3.0-0.3 +- rebuild with latest changes +- use system json-c library +- temporarily rename to jsonc-c.so + +* Sat Apr 27 2013 Remi Collet <rcollet@redhat.com> - 1.3.0-0.2 +- rebuild with latest changes + +* Sat Apr 27 2013 Remi Collet <rcollet@redhat.com> - 1.3.0-0.1 +- initial package  | 
