# remirepo spec file for php-patchwork-utf8, from: # # Fedora spec file for php-patchwork-utf8 # # Copyright (c) 2015-2017 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT # # Please preserve changelog entries # %global github_owner tchwork %global github_name utf8 %global github_version 1.3.1 %global github_commit 30ec6451aec7d2536f0af8fe535f70c764f2c47a %global composer_vendor patchwork %global composer_project utf8 # "php": ">=5.3.0" %global php_min_ver 5.3.0 # Build using "--without tests" to disable tests %if 0%{?rhel} == 5 %global with_tests 0%{?_with_tests:1} %else %global with_tests 0%{!?_without_tests:1} %endif %{!?phpdir: %global phpdir %{_datadir}/php} Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} Release: 3%{?github_release}%{?dist} Summary: Portable and performant UTF-8, Unicode and Grapheme Clusters for PHP Group: Development/Libraries License: ASL 2.0 or GPLv2 URL: https://github.com/%{github_owner}/%{github_name} # GitHub export does not include tests. # Run php-patchwork-utf8-get-source.sh to create full source. Source0: %{name}-%{github_version}-%{github_commit}.tar.gz Source1: %{name}-get-source.sh # Fix tests for PHP 7.1 negative string offsets # https://github.com/tchwork/utf8/pull/64 Patch0: %{name}-pull-request-64.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch # Relative paths BuildRequires: python # Tests %if %{with_tests} BuildRequires: php-composer(phpunit/phpunit) ## composer.json BuildRequires: php(language) >= %{php_min_ver} BuildRequires: php-iconv BuildRequires: php-intl BuildRequires: php-mbstring BuildRequires: php-pcre ## phpcompatinfo (computed from version 1.3.1) BuildRequires: php-date BuildRequires: php-exif BuildRequires: php-filter BuildRequires: php-json BuildRequires: php-reflection BuildRequires: php-spl BuildRequires: php-xml %endif ## Autoloader BuildRequires: php-fedora-autoloader-devel # composer.json Requires: php(language) >= %{php_min_ver} Requires: php-pcre # composer.json: optional Requires: php-iconv Requires: php-intl Requires: php-mbstring # phpcompatinfo (computed from version 1.3.1) #Requires: php-exif Requires: php-filter Requires: php-json Requires: php-spl Requires: php-xml # Autoloader Requires: php-composer(fedora/autoloader) # Composer Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} %description %{summary}. Autoloder: %{phpdir}/Patchwork/autoload-utf8.php %prep %setup -qn %{github_name}-%{github_commit} : Fix tests for PHP 7.1 negative string offsets : https://github.com/tchwork/utf8/pull/64 %patch0 -p1 : Remove Windows files rm -f \ src/Patchwork/Utf8/WindowsStreamWrapper.php \ tests/Patchwork/Tests/Utf8/WindowsStreamWrapperTest.php %build : Create autoloader %{_bindir}/phpab --template fedora --output src/Patchwork/autoload-utf8.php src/ cat <<'AUTOLOAD' | tee -a src/Patchwork/autoload-utf8.php \Patchwork\Utf8\Bootup::initAll(); AUTOLOAD : Compat autoloader ln -s autoload-utf8.php src/Patchwork/autoload.php %install rm -rf %{buildroot} : Library mkdir -p %{buildroot}%{phpdir} cp -rp src/Patchwork %{buildroot}%{phpdir}/ : Data mkdir -p %{buildroot}%{_datadir}/%{name} mv %{buildroot}%{phpdir}/Patchwork/Utf8/data %{buildroot}%{_datadir}/%{name}/ ln -s \ %(python -c "import os.path; print os.path.relpath('%{_datadir}/%{name}/data', '%{phpdir}/Patchwork/Utf8')") \ %{buildroot}%{phpdir}/Patchwork/Utf8/data mv %{buildroot}%{phpdir}/Patchwork/PHP/Shim/charset %{buildroot}%{_datadir}/%{name}/shim-charset ln -s \ %(python -c "import os.path; print os.path.relpath('%{_datadir}/%{name}/shim-charset', '%{phpdir}/Patchwork/PHP/Shim')") \ %{buildroot}%{phpdir}/Patchwork/PHP/Shim/charset mv %{buildroot}%{phpdir}/Patchwork/PHP/Shim/unidata %{buildroot}%{_datadir}/%{name}/shim-unidata ln -s \ %(python -c "import os.path; print os.path.relpath('%{_datadir}/%{name}/shim-unidata', '%{phpdir}/Patchwork/PHP/Shim')") \ %{buildroot}%{phpdir}/Patchwork/PHP/Shim/unidata %check %if %{with_tests} run=0 ret=0 if which php56; then php56 %{_bindir}/phpunit --bootstrap %{buildroot}%{phpdir}/Patchwork/autoload-utf8.php || ret=1 run=1 fi if which php70; then php70 %{_bindir}/phpunit --bootstrap %{buildroot}%{phpdir}/Patchwork/autoload-utf8.php || ret=1 run=1 fi if which php71; then php71 %{_bindir}/phpunit --bootstrap %{buildroot}%{phpdir}/Patchwork/autoload-utf8.php || : ignore run=1 fi %if 0%{?rhel} : drop failing test with 5.4 rm tests/PHP/Shim/IntlTest.php %endif if [ $run -eq 0 ]; then %{_bindir}/phpunit --verbose \ --bootstrap %{buildroot}%{phpdir}/Patchwork/autoload-utf8.php fi exit $ret %else : Tests skipped %endif %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{!?_licensedir:%global license %%doc} %license LICENSE* %doc *.md %doc composer.json %{phpdir}/Patchwork %exclude %{phpdir}/Patchwork/Utf8/Compiler.php %exclude %{phpdir}/Patchwork/Utf8/unicode-data.tbz2 %{_datadir}/%{name} %changelog * Sat Feb 25 2017 Shawn Iwinski - 1.3.1-3 - Fix FTBFS in rawhide (RHBZ #1424074) - Use php-composer(fedora/autoloader) * Sat Jul 23 2016 Shawn Iwinski - 1.3.1-1 - Updated to 1.3.1 (RHBZ #1332183) * Tue May 03 2016 Shawn Iwinski - 1.2.6-1 - Updated to 1.2.6 - Added patch "fix for php 5.5.35/5.6.21/7.0.6" * Thu Oct 15 2015 Shawn Iwinski - 1.2.5-1 - Updated to 1.2.5 (RHBZ #1271631) - Exclude Patchwork/Utf8/Compiler.php * Thu Oct 15 2015 Remi Collet - 1.2.5-1 - update to 1.2.5 * Wed Sep 23 2015 Remi Collet - 1.2.3-3 - backport for remi repository * Tue Sep 22 2015 Shawn Iwinski - 1.2.3-3 - Update patch for license files * Sat Sep 19 2015 Shawn Iwinski - 1.2.3-2 - Add patch for license files * Fri Sep 11 2015 Shawn Iwinski - 1.2.3-1 - Initial package