# remirepo/fedora spec file php-felixfbecker-advanced-json-rpc3 # # Copyright (c) 2017-2018 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %global gh_commit 29f1d8c2c17f8c04f9768d382b72aeeb0715ebb8 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner felixfbecker %global gh_project php-advanced-json-rpc %global pk_vendor %{gh_owner} %global pk_project advanced-json-rpc %global ns_vendor %nil %global ns_project AdvancedJsonRpc %global major 3 %global php_home %{_datadir}/php %global with_tests 0%{!?_without_tests:1} Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.1 Release: 2%{?dist} Summary: A more advanced JSONRPC implementation License: ISC URL: https://github.com/%{gh_owner}/%{gh_project} Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{name}-%{version}-%{gh_short}.tar.gz BuildArch: noarch %if %{with_tests} # For tests BuildRequires: php(language) >= 7.0 BuildRequires: php-reflection BuildRequires: php-json %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 BuildRequires: (php-composer(netresearch/jsonmapper) >= 1.0 with php-composer(netresearch/jsonmapper) < 2) BuildRequires: (php-composer(phpdocumentor/reflection-docblock) >= 4.0 with php-composer(phpdocumentor/reflection-docblock) < 5) %else BuildRequires: php-netresearch-jsonmapper BuildRequires: php-phpdocumentor-reflection-docblock4 %endif # From composer.json, "require-dev": { # "phpunit/phpunit": "^6.0.0" BuildRequires: phpunit6 # Required by autoloader BuildRequires: php-composer(fedora/autoloader) %endif # From composer.json, "require": { # "php": ">=7.0", # "netresearch/jsonmapper": "^1.0", # "phpdocumentor/reflection-docblock": "^3.1" Requires: php(language) >= 7.0 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 Requires: (php-composer(netresearch/jsonmapper) >= 1.0 with php-composer(netresearch/jsonmapper) < 2) Requires: (php-composer(phpdocumentor/reflection-docblock) >= 4.0 with php-composer(phpdocumentor/reflection-docblock) < 5) %else Requires: php-netresearch-jsonmapper Requires: php-phpdocumentor-reflection-docblock4 %endif # From phpcompatinfo report for version 3.0.1 Requires: php-reflection Requires: php-json # Required by autoloader Requires: php-composer(fedora/autoloader) Provides: php-composer(%{pk_vendor}/%{pk_project}) = %{version} %description Advanced JSONRPC Provides basic classes for requests and responses in JSONRPC and a Dispatcher class that can decode a JSONRPC request and call appropiate methods on a target, coercing types of parameters by type-hints and @param tags. Supports nested targets: If the method is something like myNestedTarget->theMethod, the dispatcher will look for a myNestedTarget property on the target and call theMethod on it. The delimiter is configurable and defaults to the PHP object operator ->. Autoloader: %{php_home}/%{ns_project}%{major}/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} cat << 'EOF' | tee lib/autoload.php - 3.0.1-2 - missing dependencies * Mon Jan 22 2018 Remi Collet - 3.0.1-1 - Update to 3.0.1 - rename to php-felixfbecker-advanced-json-rpc3 - move to /usr/share/php/AdvancedJsonRpc3 - raise dependency on phpdocumentor/reflection-docblock 4.0 - use phpunit6 * Sat Oct 21 2017 Remi Collet - 2.0.3-1 - initial package, version 2.0.3 - open https://github.com/felixfbecker/php-advanced-json-rpc/issues/11 - LICENSE