# remirepo spec file for php-phalcon4 # # Copyright (c) 2014-2019 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 %if 0%{?scl:1} %global sub_prefix %{scl_prefix} %scl_package php-phalcon4 %else %global pkg_name %{name} %endif %global gh_commit 95484a06ff9f1f4624b83761aba4d9222026788f %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner phalcon %global gh_project cphalcon %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global with_tests 0%{?_with_tests:1} %global ext_name phalcon # See ext/php_phalcon.h #global zephir_ver 0.12.10 # after 40-json.ini, 20-pdo.ini, 40-psr.ini %global ini_name 50-%{ext_name}.ini %global upstream_ver 4.0.0 %global upstream_pre rc.2 Name: %{?sub_prefix}php-phalcon4 Version: %{upstream_ver}%{?upstream_pre:~%{upstream_pre}} Release: 1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} Summary: Phalcon Framework License: MIT URL: https://github.com/%{gh_owner}/%{gh_project} Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{upstream_ver}%{?upstream_pre:-%{upstream_pre}}-%{gh_short}.tar.gz BuildRequires: %{?dtsprefix}gcc BuildRequires: %{?scl_prefix}php-devel > 7.2 BuildRequires: %{?scl_prefix}php-hash BuildRequires: %{?scl_prefix}php-json BuildRequires: %{?scl_prefix}php-pdo BuildRequires: %{?scl_prefix}php-psr # For sources generation %if 0%{?zephir_ver:1} BuildRequires: %{?scl_prefix}zephir = %{zephir_ver} BuildRequires: %{?scl_prefix}php-gd BuildRequires: %{?scl_prefix}php-mbstring BuildRequires: %{?scl_prefix}php-memcached BuildRequires: %{?scl_prefix}php-msgpack BuildRequires: %{?scl_prefix}php-igbinary BuildRequires: %{?scl_prefix}php-imagick BuildRequires: %{?scl_prefix}php-yaml BuildRequires: %{?scl_prefix}php-mongodb BuildRequires: %{?scl_prefix}php-redis # pull php-pecl-apcu (PHP 5) or php-pecl-apcu-bc (PHP 7) BuildRequires: %{?scl_prefix}php-apc %endif Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} Requires: %{?scl_prefix}php(api) = %{php_core_api} Requires: %{?scl_prefix}php-hash%{?_isa} Requires: %{?scl_prefix}php-json%{?_isa} Requires: %{?scl_prefix}php-pdo%{?_isa} Requires: %{?scl_prefix}php-psr%{?_isa} %{?_sclreq:Requires: %{?scl_prefix}runtime%{?_sclreq}%{?_isa}} Provides: %{?scl_prefix}php-phalcon = %{version}-%{release} Provides: %{?scl_prefix}php-phalcon%{?_isa} = %{version}-%{release} %if "%{?scl_prefix}" != "%{?sub_prefix}" Provides: %{?scl_prefix}php-phalcon4 = %{version}-%{release} Provides: %{?scl_prefix}php-phalcon4%{?_isa} = %{version}-%{release} %endif %if "%{php_version}" > "7.4" Obsoletes: %{?scl_prefix}php-phalcon < 4 Obsoletes: %{?scl_prefix}php-phalcon2 < 4 Obsoletes: %{?scl_prefix}php-phalcon3 < 4 %else # Only one version can be installed Conflicts: %{?scl_prefix}php-phalcon < 4 Conflicts: %{?scl_prefix}php-phalcon2 < 4 Conflicts: %{?scl_prefix}php-phalcon3 < 4 %endif # Don't provides php-composer(phalcon/cphalcon), not registered on packagist %if 0%{?fedora} < 20 && 0%{?rhel} < 7 # Filter shared private %{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$} %endif %{?filter_setup} %description Phalcon is a web framework implemented as a C extension offering high performance and lower resource consumption. Documentation: http://docs.phalconphp.com 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 -n %{gh_project}-%{gh_commit} # Sanity check, really often broken extver=$(sed -n '/#define PHP_PHALCON_VERSION/{s/.* "//;s/".*$//;p}' ext/php_phalcon.h) if test "x${extver}" != "x%{upstream_ver}%{?upstream_pre:-%{upstream_pre}}"; then : Error: Upstream extension version is ${extver}, expecting %{upstream_ver}%{?upstream_pre:-%{upstream_pre}}. exit 1 fi # Create configuration file cat << 'EOF' | tee %{ini_name} ; Enable '%{summary}' extension module extension=%{ext_name}.so ; Configuration ;phalcon.db.escape_identifiers = On ;phalcon.db.force_casting = Off ;phalcon.orm.case_insensitive_column_map = Off ;phalcon.orm.cast_last_insert_id_to_int = Off ;phalcon.orm.cast_on_hydrate = Off ;phalcon.orm.column_renaming = On ;phalcon.orm.disable_assign_setters = Off ;phalcon.orm.enable_implicit_joins = On ;phalcon.orm.enable_literals = On ;phalcon.orm.events = On ;phalcon.orm.exception_on_failed_save = Off ;phalcon.orm.exception_on_failed_metadata_save = On ;phalcon.orm.ignore_unknown_columns = Off ;phalcon.orm.late_state_binding = Off ;phalcon.orm.not_null_validations = On ;phalcon.orm.update_snapshot_on_save = On ;phalcon.orm.virtual_foreign_keys = On ;phalcon.warning.enable = On EOF : Check Zephir version grep PHP_PHALCON_ZEPVERSION ext/php_phalcon.h %build %{?dtsenable} peclconf() { %configure \ --enable-phalcon \ --with-libdir=%{_lib} \ --with-php-config=$1 } : Generate the SAFE sources - optimization seems no more needed %if 0%{?zephir_ver:1} %{_bindir}/zephir clean %{_bindir}/zephir fullclean %{_bindir}/zephir generate %endif %{__php} build/gen-build.php mv build/php7/safe build/NTS %if %{with_zts} : Duplicate source tree for NTS / ZTS build cp -r build/NTS build/ZTS %endif : Build NTS extension cd build/NTS %{_bindir}/phpize peclconf %{_bindir}/php-config make %{?_smp_mflags} %if %{with_zts} : Build ZTS extension cd ../ZTS %{_bindir}/zts-phpize peclconf %{_bindir}/zts-php-config make %{?_smp_mflags} %endif %install %{?dtsenable} make -C build/NTS install INSTALL_ROOT=%{buildroot} # install config file install -Dpm644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} %if %{with_zts} make -C build/ZTS install INSTALL_ROOT=%{buildroot} install -Dpm644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} %endif %check # Shared needed extensions modules="" for mod in hash json pdo psr; do if [ -f %{php_extdir}/${mod}.so ]; then modules="$modules -d extension=${mod}.so" fi done : Minimal load test for NTS extension %{__php} --no-php-ini \ $modules \ --define extension=%{buildroot}%{php_extdir}/%{ext_name}.so \ --modules | grep -i %{ext_name} %if %{with_tests} : Upstream test suite NTS extension cd build/NTS SKIP_ONLINE_TESTS=1 \ TEST_PHP_EXECUTABLE=%{__php} \ TEST_PHP_ARGS="-n $modules -d extension=$PWD/modules/%{ext_name}.so" \ NO_INTERACTION=1 \ REPORT_EXIT_STATUS=1 \ %{__php} -n run-tests.php --show-diff %endif %if %{with_zts} : Minimal load test for ZTS extension %{__ztsphp} --no-php-ini \ $modules \ --define extension=%{buildroot}%{php_ztsextdir}/%{ext_name}.so \ --modules | grep -i %{ext_name} %endif %files %{!?_licensedir:%global license %%doc} %license LICENSE*.txt %doc *.md %config(noreplace) %{php_inidir}/%{ini_name} %{php_extdir}/%{ext_name}.so %exclude %{php_incldir}/ext/%{ext_name}/php_phalcon.h %if %{with_zts} %config(noreplace) %{php_ztsinidir}/%{ini_name} %{php_ztsextdir}/%{ext_name}.so %exclude %{php_ztsincldir}/ext/%{ext_name}/php_phalcon.h %endif %changelog * Mon Oct 28 2019 Remi Collet - 4.0.0~rc.2-1 - update to 4.0.0-rc.2 * Mon Sep 23 2019 Remi Collet - 4.0.0~rc.1-1 - update to 4.0.0-rc.1 - rename to php-phalcon4 - build without zephir (use upstream generated sources) - add dependency on php-hash and php-psr - raise dependency on PHP 7.2 * Mon Jul 1 2019 Remi Collet - 3.4.4-1 - update to 3.4.4 * Fri Jun 28 2019 Remi Collet - 3.4.3-4 - rebuild using zephir 0.10.16 for https://github.com/phalcon/cphalcon/issues/14160 * Thu Jun 27 2019 Remi Collet - 3.4.3-3 - test build for https://github.com/phalcon/cphalcon/issues/14160 * Mon Feb 25 2019 Remi Collet - 3.4.3-2 - drop fake minifiers * Mon Feb 25 2019 Remi Collet - 3.4.3-1 - update to 3.4.3 using zephir 0.10.15 - make minifiers return unchanged input value backported from upstream version 4.x * Mon Dec 3 2018 Remi Collet - 3.4.2-1 - update to 3.4.2 using zephir 0.10.14 * Sat Oct 20 2018 Remi Collet - 3.4.1-3 - rebuild with zephir 0.10.12 for PHP 7.3 * Tue Aug 21 2018 Remi Collet - 3.4.1-2 - update to 3.4.1 using zephir 0.10.10 * Thu Aug 16 2018 Remi Collet - 3.4.1-1 - update to 3.4.1 using zephir 0.11.0 - open https://github.com/phalcon/cphalcon/issues/13465 * Mon May 28 2018 Remi Collet - 3.4.0-1 - update to 3.4.0 using zephir 0.10.10 * Wed Mar 7 2018 Remi Collet - 3.3.2-1 - update to 3.3.2 using zephir 0.10.7 * Wed Jan 10 2018 Remi Collet - 3.3.1-1 - Update to 3.3.1 using zephir 0.10.7 * Sun Dec 24 2017 Remi Collet - 3.3.0-1 - Update to 3.3.0 using zephir 0.10.6 * Mon Oct 23 2017 Remi Collet - 3.2.4-1 - Update to 3.2.4 using zephir 0.10.4 * Fri Oct 13 2017 Remi Collet - 3.2.3-1 - Update to 3.2.3 using zephir 0.10.3 - open https://github.com/phalcon/cphalcon/issues/13117 conflicts * Mon Aug 14 2017 Remi Collet - 3.2.2-1 - Update to 3.2.2 using zephir 0.9.11 * Tue Jul 18 2017 Remi Collet - 3.2.1-2 - rebuild for PHP 7.2.0beta1 new API * Tue Jul 11 2017 Remi Collet - 3.2.1-1 - Update to 3.2.1 * Wed Jun 21 2017 Remi Collet - 3.2.0-2 - test build with zephir 0.9.9 * Mon Jun 19 2017 Remi Collet - 3.2.0-1 - Update to 3.2.0 - open https://github.com/phalcon/cphalcon/issues/12909 - PHP 5 compat * Thu Apr 6 2017 Remi Collet - 3.1.2-1 - Update to 3.1.2 * Sun Mar 26 2017 Remi Collet - 3.1.1-1 - Update to 3.1.1 * Thu Mar 23 2017 Remi Collet - 3.1.0-1 - Update to 3.1.0 * Tue Feb 21 2017 Remi Collet - 3.0.4-1 - update to 3.0.4 * Sun Dec 25 2016 Remi Collet - 3.0.3-1 - update to 3.0.3 * Sun Nov 27 2016 Remi Collet - 3.0.2-1 - update to 3.0.2 * Fri Sep 2 2016 Remi Collet - 3.0.1-1 - update to 3.0.1 * Sat Jul 30 2016 Remi Collet - 3.0.0-2 - generate sources using zephir * Sat Jul 30 2016 Remi Collet - 3.0.0-1 - update to 3.0.0 - rename to php-phalcon3 - PHP 7 build is broken for now open https://github.com/phalcon/cphalcon/issues/12054 * Fri May 20 2016 Remi Collet - 2.0.13-1 - update to 2.0.13 * Tue May 17 2016 Remi Collet - 2.0.12-1 - update to 2.0.12 * Thu May 5 2016 Remi Collet - 2.0.11-1 - update to 2.0.11 * Sun Feb 7 2016 Remi Collet - 2.0.10-1 - update to 2.0.10 * Wed Nov 25 2015 Remi Collet - 2.0.9-1 - update to 2.0.9 * Sat Sep 26 2015 Remi Collet - 2.0.8-1 - update to 2.0.8 - allow build against rh-php56 (as more-php56) * Fri Aug 21 2015 Remi Collet - 2.0.7-1 - update to 2.0.7 * Wed Jul 22 2015 Remi Collet - 2.0.6-1 - update to 2.0.6 * Wed Jul 15 2015 Remi Collet - 2.0.5-1 - update to 2.0.5 * Mon Jul 13 2015 Remi Collet - 2.0.4-1 - update to 2.0.4 * Thu Jun 11 2015 Remi Collet - 2.0.3-1 - update to 2.0.3 * Tue May 26 2015 Remi Collet - 2.0.2-1 - update to 2.0.2 * Thu May 14 2015 Remi Collet - 2.0.1-1 - update to 2.0.1 * Tue Apr 21 2015 Remi Collet - 2.0.0-1 - update to 2.0.0 - rename to php-phalcon2 * Wed Dec 24 2014 Remi Collet - 1.3.4-1.1 - Fedora 21 SCL mass rebuild * Sat Nov 15 2014 Remi Collet - 1.3.4-1 - update to 1.3.4 * Mon Sep 29 2014 Remi Collet - 1.3.3-1 - update to 1.3.3 - drop all patches merged upstream * Sun Sep 7 2014 Remi Collet - 1.3.2-2 - use striped archive, without non-free sources - generate and use optimized sources - open https://github.com/phalcon/cphalcon/pull/2793 * Thu Sep 4 2014 Remi Collet - 1.3.2-1 - initial package, version 1.3.2 - open https://github.com/phalcon/cphalcon/pull/2772 (merged) - open https://github.com/phalcon/cphalcon/pull/2774 - open https://github.com/phalcon/cphalcon/pull/2775