# remirepo spec file for php-amqplib, from: # # Fedora spec file for php-amqplib # # Copyright (c) 2017-2019 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT # # Please preserve changelog entries # %global github_owner php-amqplib %global github_name php-amqplib %global github_version 2.9.2 %global github_commit 76faddcd668dabb8d4f7c00e86b8a9decd781a59 %global composer_vendor php-amqplib %global composer_project php-amqplib # "php": ">=5.4.0" %global php_min_ver 5.4.0 # Build using "--without tests" to disable tests %global with_tests 0%{!?_without_tests:1} %{!?phpdir: %global phpdir %{_datadir}/php} Name: %{composer_project} Version: %{github_version} Release: 1%{?github_release}%{?dist} Summary: Pure PHP implementation of the AMQP protocol License: LGPLv2+ URL: https://github.com/%{github_owner}/%{github_name} # GitHub export does not include tests. # Run php-php-amqplib-php-amqplib-get-source.sh to create full source. Source0: %{name}-%{github_version}-%{github_commit}.tar.gz Source1: %{name}-get-source.sh BuildArch: noarch # Tests %if %{with_tests} ## composer.json BuildRequires: php(language) >= %{php_min_ver} BuildRequires: php-composer(phpunit/phpunit) BuildRequires: php-bcmath BuildRequires: php-sockets ## phpcompatinfo for version 2.9.2 BuildRequires: php-date BuildRequires: php-json BuildRequires: php-mbstring BuildRequires: php-pcntl BuildRequires: php-pcre BuildRequires: php-reflection BuildRequires: php-spl ## Autoloader BuildRequires: php-composer(fedora/autoloader) %endif # composer.json Requires: php(language) >= %{php_min_ver} Requires: php-bcmath Requires: php-sockets # phpcompatinfo for version 2.9.2 Requires: php-date Requires: php-mbstring Requires: php-pcntl Requires: php-pcre Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) # Weak dependencies %if 0%{?fedora} >= 21 Suggests: php-pcntl %endif # Standard "php-{COMPOSER_VENDOR}-{COMPOSER_PROJECT}" naming Provides: php-%{composer_vendor}-%{composer_project} = %{version}-%{release} Provides: %{composer_vendor}-%{composer_project} = %{version}-%{release} # Composer Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} %description This library is a pure PHP implementation of the AMQP 0-9-1 protocol [1]. It's been tested against RabbitMQ [2]. Autoloader: %{phpdir}/PhpAmqpLib/autoload.php [1] http://www.rabbitmq.com/tutorials/amqp-concepts.html [2] http://www.rabbitmq.com/ %prep %setup -qn %{github_name}-%{github_commit} %build : Create autoloader cat <<'AUTOLOAD' | tee PhpAmqpLib/autoload.php - 2.9.2-1 - Update to 2.9.2 (RHBZ #1535736) * Fri May 10 2019 Shawn Iwinski - 2.7.3-1 - Update to 2.7.3 - Update license from LGPLv2 to LGPLv2+ * Fri Nov 03 2017 Shawn Iwinski - 2.7.0-2 - Set default timezone in tests' bootstrap * Wed Oct 25 2017 Shawn Iwinski - 2.7.0-1 - Initial package