# remirepo/fedora spec file for php-nette-deprecated # # Copyright (c) 2015-2017 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %global gh_commit 348e284192f6f6451692b1763b6ed235c28b25ae #global gh_date 20150728 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner nette %global gh_project deprecated %global ns_vendor Nette %global ns_project Deprecated %global php_home %{_datadir}/php %global with_tests 0%{!?_without_tests:1} Name: php-%{gh_owner}-%{gh_project} Version: 2.4.2 %global specrel 1 Release: %{?gh_date:1%{specrel}.%{?prever}%{!?prever:%{gh_date}git%{gh_short}}}%{!?gh_date:%{specrel}}%{?dist} Summary: APIs and features removed from Nette Framework Group: Development/Libraries License: BSD or GPLv2 or GPLv3 URL: https://github.com/%{gh_owner}/%{gh_project} Source0: %{name}-%{version}-%{gh_short}.tgz # pull a git snapshot to get test sutie Source1: makesrc.sh Patch0: %{name}-php72.patch BuildArch: noarch BuildRequires: php-composer(theseer/autoload) %if %{with_tests} BuildRequires: php-fileinfo BuildRequires: php-spl BuildRequires: php-tokenizer # From composer.json, "require-dev": { # "nette/application": "^2.2", # "nette/bootstrap": "^2.2.1", # "nette/caching": "^2.2", # "nette/forms": "^2.2", # "nette/mail": "^2.2", # "nette/robot-loader": "^2.2", # "nette/safe-stream": "^2.2", # "nette/utils": "^2.2", # "nette/security": "^2.2", # "latte/latte": "^2.2", # "tracy/tracy": "^2.2", # "nette/tester": "^1.1" BuildRequires: php-composer(%{gh_owner}/application) >= 2.2 BuildRequires: php-composer(%{gh_owner}/bootstrap) >= 2.2.1 BuildRequires: php-composer(%{gh_owner}/caching) >= 2.2 BuildRequires: php-composer(%{gh_owner}/forms) >= 2.2 BuildRequires: php-composer(%{gh_owner}/mail) >= 2.2 BuildRequires: php-composer(%{gh_owner}/robot-loader) >= 2.2 BuildRequires: php-composer(%{gh_owner}/safe-stream) >= 2.2 BuildRequires: php-composer(%{gh_owner}/utils) >= 2.2 BuildRequires: php-composer(%{gh_owner}/security) >= 2.2 BuildRequires: php-composer(latte/latte) >= 2.2 BuildRequires: php-composer(tracy/tracy) >= 2.2 BuildRequires: php-composer(%{gh_owner}/tester) >= 1.1 %endif # from phpcompatinfo report for version 2.4.0 Requires: php-fileinfo Requires: php-spl Requires: php-tokenizer Provides: php-composer(%{gh_owner}/%{gh_project}) = %{version} %description %{summary}. To use this library, you just have to add, in your project: require_once '%{php_home}/%{ns_vendor}/%{ns_project}/autoload.php'; %prep %setup -q -n %{gh_project}-%{gh_commit} %patch0 -p0 mkdir src/%{ns_project} %build : Generate a classmap autoloader phpab --output src/%{ns_project}/autoload.php src cat << 'EOF' | tee -a src/%{ns_project}/autoload.php require_once dirname(__DIR__) . '/loader.php'; EOF %install mkdir -p %{buildroot}%{php_home}/%{ns_vendor} cp -pr src/* %{buildroot}%{php_home}/%{ns_vendor}/ %check %if %{with_tests} export LANG=fr_FR.utf8 : Generate autoloader mkdir -p vendor/nette/tester ln -s %{php_home}/Tester vendor/nette/tester/Tester cat << 'EOF' | tee vendor/autoload.php - 2.4.2-1 - Update to 2.4.2 (no change) * Thu Nov 9 2017 Remi Collet - 2.4.1-2 - fix FTBFS from Koschei, add patch for PHP 7.2 * Sun Aug 6 2017 Remi Collet - 2.4.1-1 - Update to 2.4.1 * Fri Aug 5 2016 Remi Collet - 2.4.0-2 - fix test suite autoloader * Thu Aug 4 2016 Remi Collet - 2.4.0-1 - update to 2.4.0 - add dependency on nette/security >= 2.2 * Sun Nov 8 2015 Remi Collet - 2.3.2-1 - update to 2.3.2 * Sun Nov 1 2015 Remi Collet - 2.3.1-2 - improve installation tree to avoid file conflicts with nette/utils and nette/nette * Sat Oct 31 2015 Remi Collet - 2.3.1-1 - initial package