# remirepo spec file for php-pecl-xattr # # Copyright (c) 2013-2024 Remi Collet # License: CC-BY-SA-4.0 # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %{?scl:%scl_package php-pecl-xattr} %global pecl_name xattr %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global ini_name 40-%{pecl_name}.ini %global sources %{pecl_name}-%{version} %global _configure ../%{sources}/configure Summary: Extended attributes Name: %{?scl_prefix}php-pecl-%{pecl_name} Version: 1.4.0 Release: 7%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} License: PHP-3.01 URL: https://pecl.php.net/package/%{pecl_name} Source0: https://pecl.php.net/get/%{sources}.tgz BuildRequires: %{?dtsprefix}gcc BuildRequires: make BuildRequires: %{?scl_prefix}php-devel >= 7.2 BuildRequires: %{?scl_prefix}php-pear >= 1.10 Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} Requires: %{?scl_prefix}php(api) = %{php_core_api} Provides: %{?scl_prefix}php-%{pecl_name} = %{version} Provides: %{?scl_prefix}php-%{pecl_name}%{?_isa} = %{version} Provides: %{?scl_prefix}php-pecl(%{pecl_name}) = %{version} Provides: %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} Provides: %{?scl_prefix}php-pecl-%{pecl_name} = %{version}-%{release} Provides: %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa} = %{version}-%{release} %description This package allows to manipulate extended attributes on filesystems that support them. Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}. %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 cd %{sources} # Sanity check, really often broken extver=$(sed -n '/#define PHP_XATTR_VERSION/{s/.* "//;s/".*$//;p}' php_xattr.h) if test "x${extver}" != "x%{version}%{?prever}"; then : Error: Upstream extension version is ${extver}, expecting %{version}%{?prever}. exit 1 fi cd .. mkdir NTS ZTS # Create configuration file cat > %{ini_name} << 'EOF' ; Enable %{pecl_name} extension module extension=%{pecl_name}.so EOF %build %{?dtsenable} cd %{sources} %{__phpize} [ -f Makefile.global ] && GLOBAL=Makefile.global || GLOBAL=build/Makefile.global sed -e 's/INSTALL_ROOT/DESTDIR/' -i $GLOBAL cd ../NTS %configure \ --with-libdir=%{_lib} \ --with-php-config=%{__phpconfig} %make_build %if %{with_zts} cd ../ZTS %configure \ --with-libdir=%{_lib} \ --with-php-config=%{__ztsphpconfig} %make_build %endif %install %{?dtsenable} %make_install -C NTS # 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_install -C ZTS install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} %endif # Documentation cd %{sources} for i in $(grep 'role="doc"' ../package.xml | sed -e 's/^.*name="//;s/".*$//') do install -Dpm 644 $i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i done %check cd %{sources} : 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" \ %{__php} -n run-tests.php -q --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}$' %endif %files %license %{sources}/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 * Wed Aug 30 2023 Remi Collet - 1.4.0-7 - rebuild for PHP 8.3.0RC1 * Thu Sep 1 2022 Remi Collet - 1.4.0-6 - rebuild for PHP 8.2.0RC1 * Wed Sep 01 2021 Remi Collet - 1.4.0-5 - rebuild for 8.1.0RC1 * Wed Sep 30 2020 Remi Collet - 1.4.0-4 - rebuild for PHP 8.0.0RC1 * Wed Sep 2 2020 Remi Collet - 1.4.0-3 - rebuild for PHP 8.0.0beta3 * Wed Aug 5 2020 Remi Collet - 1.4.0-2 - rebuild for 8.0.0beta1 * Fri Apr 24 2020 Remi Collet - 1.4.0-1 - update to 1.4.0 - raise dependency on PHP 7.2 * Wed Apr 22 2020 Remi Collet - 1.3.1-1 - update to 1.3.1 * Tue Sep 03 2019 Remi Collet - 1.3.0-8 - rebuild for 7.4.0RC1 * Thu Aug 16 2018 Remi Collet - 1.3.0-7 - rebuild for 7.3.0beta2 new ABI * Wed Jul 18 2018 Remi Collet - 1.3.0-6 - rebuild for 7.3.0alpha4 new ABI * Tue Jul 18 2017 Remi Collet - 1.3.0-5 - rebuild for PHP 7.2.0beta1 new API * Wed Jun 21 2017 Remi Collet - 1.3.0-4 - rebuild for 7.2.0alpha2 * Thu Dec 1 2016 Remi Collet - 1.3.0-3 - rebuild with PHP 7.1.0 GA * Wed Sep 14 2016 Remi Collet - 1.3.0-2 - rebuild for PHP 7.1 new API version * Mon Mar 7 2016 Remi Collet - 1.3.0-1 - update to 1.3.0 (stable) - no change since RC1 * Sun Mar 6 2016 Remi Collet - 1.3.0-0.3.RC1 - adapt for F24 * Tue Oct 13 2015 Remi Collet - 1.3.0-0.2.RC1 - rebuild for PHP 7.0.0RC5 new API version * Fri Sep 18 2015 Remi Collet - 1.3.0-0.1.RC1 - update to 1.3.0RC1 - drop dependency on libxattr * Fri Sep 18 2015 Remi Collet - 1.2.1-5 - F23 rebuild with rh_layout * Wed Jul 22 2015 Remi Collet - 1.2.1-4 - rebuild against php 7.0.0beta2 * Wed Jul 8 2015 Remi Collet - 1.2.1-3 - rebuild against php 7.0.0beta1 * Fri Jun 19 2015 Remi Collet - 1.2.1-2 - allow build against rh-php56 (as more-php56) - rebuild for "rh_layout" (php70) * Sun Apr 19 2015 Remi Collet - 1.2.1-1 - update to 1.2.1 - run upstream test suite during build * Mon Apr 6 2015 Remi Collet - 1.2.0-6 - add fix for PHP-7 - drop runtime dependency on pear, new scriptlets - don't install/register tests * Wed Dec 24 2014 Remi Collet - 1.2.0-5.1 - Fedora 21 SCL mass rebuild * Tue Aug 26 2014 Remi Collet - 1.2.0-5 - improve SCL build * Thu Apr 17 2014 Remi Collet - 1.2.0-4 - add numerical prefix to extension configuration file (php 5.6) * Mon Mar 24 2014 Remi Collet - 1.2.0-3 - allow SCL build * Fri Mar 14 2014 Remi Collet - 1.2.0-2 - install doc in pecl_docdir - install tests in pecl_testdir - add missing License file * Sun Oct 6 2013 Remi Collet - 1.2.0-1 - initial package