# Fedora spec file for php-pecl-rpminfo # without SCL compatibility from: # # remirepo spec file for php-pecl-rpminfo # # Copyright (c) 2018-2020 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # we don't want -z defs linker flag %undefine _strict_symbol_defs_build %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global pecl_name rpminfo %global ini_name 40-%{pecl_name}.ini Summary: RPM information Name: php-pecl-%{pecl_name} Version: 0.4.0 Release: 1%{?dist} License: PHP URL: https://pecl.php.net/package/%{pecl_name} Source0: https://pecl.php.net/get/%{pecl_name}-%{version}.tgz BuildRequires: gcc BuildRequires: pkgconfig(rpm) >= 4.11.3 BuildRequires: php-devel > 7 BuildRequires: php-pear 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} %description Retrieve RPM information using librpm. Available functions: - rpmvercmp to compare 2 EVRs - rpminfo to retrieve information from a RPM file - rpmdbinfo to rerieve information from an installed RPM - rpmdbsearch to search installed RPMs %prep %setup -q -c # Don't install/register tests sed -e 's/role="test"/role="src"/' \ -e '/LICENSE/s/role="doc"/role="src"/' \ -i package.xml mv %{pecl_name}-%{version} NTS cd NTS # Sanity check, really often broken extver=$(sed -n '/#define PHP_RPMINFO_VERSION/{s/.* "//;s/".*$//;p}' php_rpminfo.h) if test "x${extver}" != "x%{version}"; then : Error: Upstream extension version is ${extver}, expecting %{version}. exit 1 fi cd .. %if %{with_zts} # Duplicate source tree for NTS / ZTS build cp -pr NTS ZTS %endif # Create configuration file cat << 'EOF' | tee %{ini_name} ; Enable '%{summary}' extension module extension=%{pecl_name}.so EOF %build cd NTS %{_bindir}/phpize %configure \ --enable-rpminfo \ --with-libdir=%{_lib} \ --with-php-config=%{_bindir}/php-config make %{?_smp_mflags} %if %{with_zts} cd ../ZTS %{_bindir}/zts-phpize %configure \ --enable-rpminfo \ --with-libdir=%{_lib} \ --with-php-config=%{_bindir}/zts-php-config make %{?_smp_mflags} %endif %install make -C NTS install INSTALL_ROOT=%{buildroot} # install config file install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} # Install XML package description install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml %if %{with_zts} make -C ZTS install INSTALL_ROOT=%{buildroot} install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} %endif # Documentation for i in $(grep 'role="doc"' package.xml | sed -e 's/^.*name="//;s/".*$//') do install -Dpm 644 NTS/$i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i done %check cd NTS # Minimal load test for NTS extension %{__php} --no-php-ini \ --define extension=%{buildroot}/%{php_extdir}/%{pecl_name}.so \ --modules | grep %{pecl_name} # Upstream test suite for NTS extension TEST_PHP_EXECUTABLE=%{__php} \ TEST_PHP_ARGS="-n -d extension=%{buildroot}/%{php_extdir}/%{pecl_name}.so" \ NO_INTERACTION=1 \ REPORT_EXIT_STATUS=1 \ %{__php} -n run-tests.php --show-diff %if %{with_zts} cd ../ZTS # Minimal load test for ZTS extension %{__ztsphp} --no-php-ini \ --define extension=%{buildroot}/%{php_ztsextdir}/%{pecl_name}.so \ --modules | grep %{pecl_name} # Upstream test suite for ZTS extension TEST_PHP_EXECUTABLE=%{__ztsphp} \ TEST_PHP_ARGS="-n -d extension=%{buildroot}/%{php_ztsextdir}/%{pecl_name}.so" \ NO_INTERACTION=1 \ REPORT_EXIT_STATUS=1 \ %{__ztsphp} -n run-tests.php --show-diff %endif %files %license NTS/LICENSE %doc %{pecl_docdir}/%{pecl_name} %{pecl_xmldir}/%{name}.xml %config(noreplace) %{php_inidir}/%{ini_name} %{php_extdir}/%{pecl_name}.so %if %{with_zts} %config(noreplace) %{php_ztsinidir}/%{ini_name} %{php_ztsextdir}/%{pecl_name}.so %endif %changelog * Fri Mar 13 2020 Remi Collet - 0.4.0-1 - update to 0.4.0 (stable) * Thu Mar 12 2020 Remi Collet - 0.3.1-1 - update to 0.3.1 * Thu Mar 12 2020 Remi Collet - 0.3.0-1 - update to 0.3.0 * Wed Mar 11 2020 Remi Collet - 0.2.3-1 - update to 0.2.3 * Wed Mar 11 2020 Remi Collet - 0.2.2-1 - update to 0.2.2 * Tue Sep 03 2019 Remi Collet - 0.2.1-5 - rebuild for 7.4.0RC1 * Tue Jul 23 2019 Remi Collet - 0.2.1-4 - rebuild for 7.4.0beta1 * Thu Aug 16 2018 Remi Collet - 0.2.1-3 - rebuild for 7.3.0beta2 new ABI * Wed Jul 18 2018 Remi Collet - 0.2.1-2 - rebuild for 7.3.0alpha4 new ABI * Mon Feb 12 2018 Remi Collet - 0.2.1-1 - update to 0.2.1 (beta) * Thu Feb 8 2018 Remi Collet - 0.2.0-1 - update to 0.2.0 (beta) * Thu Feb 8 2018 Remi Collet - 0.1.2-1 - update to 0.1.2 * Fri Jan 26 2018 Remi Collet - 0.1.1-1 - initial package, version 0.1.1 (alpha)