# remirepo spec file for php-pecl-uuid # with SCL compatibility, from: # # Fedora spec file for php-pecl-uuid # # Copyright (c) 2012-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-uuid} %bcond_without tests %global pecl_name uuid %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global ini_name 40-%{pecl_name}.ini #global prever RC1 %global sources %{pecl_name}-%{version}%{?prever} %global _configure ../%{sources}/configure Summary: Universally Unique Identifier extension for PHP Name: %{?scl_prefix}php-pecl-uuid Version: 1.2.0 Release: 10%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} License: LGPL-2.1-or-later URL: https://pecl.php.net/package/uuid Source: https://pecl.php.net/get/%{sources}.tgz Patch0: %{pecl_name}-workaround.patch BuildRequires: make BuildRequires: %{?dtsprefix}gcc BuildRequires: %{?scl_prefix}php-devel >= 7.0 BuildRequires: %{?scl_prefix}php-pear BuildRequires: libuuid-devel Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} Requires: %{?scl_prefix}php(api) = %{php_core_api} # both provides same extension, with different API Conflicts: %{?scl_prefix}uuid-php 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 A wrapper around Universally Unique Identifier library (libuuid). 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} %patch -P0 -p1 -b .orig # Sanity check, really often broken extver=$(sed -n '/#define PHP_UUID_VERSION/{s/.* "//;s/".*$//;p}' php_uuid.h) if test "x${extver}" != "x%{version}%{?prever}"; then : Error: Upstream extension version is ${extver}, expecting %{version}%{?prever}. exit 1 fi cd .. mkdir NTS %if %{with_zts} mkdir ZTS %endif # Drop in the bit of configuration cat > %{ini_name} << 'EOF' ; Enable UUID extension module extension = %{pecl_name}.so EOF %build %{?dtsenable} export PHP_RPATH=no 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-php-config=%{__phpconfig} \ --with-libdir=%{_lib} \ --with-uuid %make_build %if %{with_zts} cd ../ZTS %configure \ --with-php-config=%{__ztsphpconfig} \ --with-libdir=%{_lib} \ --with-uuid %make_build %endif %install %{?dtsenable} # Install the NTS stuff %make_install -C NTS install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} %if %{with_zts} # Install the ZTS stuff %make_install -C ZTS install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} %endif # Install the package XML file install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml # 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}$' %if %{with tests} : Upstream test suite for NTS extension TEST_PHP_EXECUTABLE=%{__php} \ TEST_PHP_ARGS="-n -d extension=%{buildroot}%{php_extdir}/%{pecl_name}.so" \ REPORT_EXIT_STATUS=1 \ %{__php} -n run-tests.php -q --show-diff %endif %if %{with_zts} : Minimal load test for NTS extension %{__ztsphp} --no-php-ini \ --define extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \ --modules | grep '^%{pecl_name}$' %if %{with tests} : Upstream test suite for ZTS extension TEST_PHP_EXECUTABLE=%{__ztsphp} \ TEST_PHP_ARGS="-n -d extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so" \ REPORT_EXIT_STATUS=1 \ %{__ztsphp} -n run-tests.php -q --show-diff %endif %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} %{php_ztsextdir}/%{pecl_name}.so %config(noreplace) %{php_ztsinidir}/%{ini_name} %endif %changelog * Mon Sep 30 2024 Remi Collet - 1.2.0-10 - fix workaround for recent util-linux see https://bugzilla.redhat.com/2315645 * Tue Aug 27 2024 Remi Collet - 1.2.0-8 - workaround for recent util-linux * Mon Feb 19 2024 Remi Collet - 1.2.0-7 - build out of sources tree * Wed Aug 30 2023 Remi Collet - 1.2.0-6 - rebuild for PHP 8.3.0RC1 * Thu Sep 1 2022 Remi Collet - 1.2.0-5 - rebuild for PHP 8.2.0RC1 * Wed Sep 01 2021 Remi Collet - 1.2.0-4 - rebuild for 8.1.0RC1 * Fri Apr 30 2021 Remi Collet - 1.2.0-3 - F34 rebuild for https://github.com/remicollet/remirepo/issues/174 * Tue Oct 6 2020 Remi Collet - 1.2.0-1 - update to 1.2.0 * Wed Sep 30 2020 Remi Collet - 1.1.0-4 - rebuild for PHP 8.0.0RC1 * Wed Sep 2 2020 Remi Collet - 1.1.0-3 - rebuild for PHP 8.0.0beta3 * Wed Aug 5 2020 Remi Collet - 1.1.0-2 - rebuild for 8.0.0beta1 * Thu Nov 28 2019 Remi Collet - 1.1.0-1 - update to 1.1.0 * Thu Nov 28 2019 Remi Collet - 1.0.5-1 - update to 1.0.5 * Tue Sep 03 2019 Remi Collet - 1.0.4-16 - rebuild for 7.4.0RC1 * Tue Jul 23 2019 Remi Collet - 1.0.4-15 - rebuild for 7.4.0beta1 * Thu Aug 16 2018 Remi Collet - 1.0.4-14 - rebuild for 7.3.0beta2 new ABI * Wed Jul 18 2018 Remi Collet - 1.0.4-13 - rebuild for 7.3.0alpha4 new ABI * Fri Jun 22 2018 Remi Collet - 1.0.4-12 - cleanup and rebuild * Tue Jul 18 2017 Remi Collet - 1.0.4-11 - rebuild for PHP 7.2.0beta1 new API * Wed Jun 21 2017 Remi Collet - 1.0.4-10 - rebuild for 7.2.0alpha2 * Thu Dec 1 2016 Remi Collet - 1.0.4-9 - rebuild with PHP 7.1.0 GA * Wed Sep 14 2016 Remi Collet - 1.0.4-8 - rebuild for PHP 7.1 new API version * Sun Mar 6 2016 Remi Collet - 1.0.4-7 - adapt for F24 * Tue Oct 13 2015 Remi Collet - 1.0.4-6 - rebuild for PHP 7.0.0RC5 new API version * Fri Sep 18 2015 Remi Collet - 1.0.4-5 - F23 rebuild with rh_layout * Wed Jul 22 2015 Remi Collet - 1.0.4-4 - rebuild against php 7.0.0beta2 * Wed Jul 8 2015 Remi Collet - 1.0.4-3 - rebuild against php 7.0.0beta1 * Fri Jun 19 2015 Remi Collet - 1.0.4-2 - allow build against rh-php56 (as more-php56) - rebuild for "rh_layout" (php70) * Fri May 8 2015 Remi Collet - 1.0.4-1 - update to 1.0.4 (no change since RC) * Sat Apr 4 2015 Remi Collet - 1.0.4-0.1.RC1 - update to 1.0.4RC1 - drop upstream patches * Sat Mar 28 2015 Remi Collet - 1.0.3-11 - more upstream patches, fix for PHP 7 - drop runtime dependency on pear, new scriptlets - don't provide the test suite * Wed Dec 24 2014 Remi Collet - 1.0.3-10.1 - Fedora 21 SCL mass rebuild * Mon Aug 25 2014 Remi Collet - 1.0.3-10 - improve SCL build * Thu Apr 10 2014 Remi Collet - 1.0.3-9 - add numerical prefix to extension configuration file * Mon Mar 24 2014 Remi Collet - 1.0.3-8 - allow SCL build * Fri Mar 14 2014 Remi Collet - 1.0.3-7 - cleanups - install doc in pecl_docdir - install tests in pecl_testdir * Sat Nov 24 2012 Remi Collet - 1.0.3-3 - add LICENSE from upstream SVN - also provides php-uuid * Tue Nov 6 2012 Remi Collet - 1.0.3-2 - more upstream patches (build warning + phpinfo output) * Tue Nov 6 2012 Remi Collet - 1.0.3-1 - initial package, version 1.0.3 (stable)