# remirepo/fedora spec file for php-alcaeus-mongo-php-adapter # # Copyright (c) 2016-2019 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %global gh_commit 93b81ebef1b3a4d3ceb72f13a35057fe08a5048f %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner alcaeus %global gh_project mongo-php-adapter # disabled for https://fedoraproject.org/wiki/Changes/MongoDB_Removal %global with_tests 0%{?_with_tests:1} %global ns_vendor Alcaeus Name: php-%{gh_owner}-%{gh_project} Version: 1.1.9 Release: 1%{?dist} Summary: Mongo PHP Adapter License: MIT URL: https://github.com/%{gh_owner}/%{gh_project} Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{name}-%{version}%{?prever}-%{?gh_short}.tar.gz BuildArch: noarch BuildRequires: php-fedora-autoloader-devel BuildRequires: php(language) >= 5.6 %if %{with_tests} BuildRequires: php-ctype BuildRequires: php-hash BuildRequires: php-composer(mongodb/mongodb) >= 1.0.1 BuildRequires: php-reflection BuildRequires: php-date BuildRequires: php-json BuildRequires: php-mbstring BuildRequires: php-pcre BuildRequires: php-spl # from composer.json, require-dev": { # "phpunit/phpunit": "^5.7.27 || ^6.0 || ^7.0", # "squizlabs/php_codesniffer": "^3.2" BuildRequires: mongodb-server >= 3.4 BuildRequires: phpunit7 %endif # From composer.json, "require": { # "php": "^5.6 || ^7.0", # "ext-ctype": "*", # "ext-hash": "*", # "ext-mongodb": "^1.2.0", # "mongodb/mongodb": "^1.0.1" Requires: php(language) >= 5.6 Requires: php-ctype Requires: php-hash Requires: php-pecl(mongodb) >= 1.2.0 Requires: php-composer(mongodb/mongodb) >= 1.0.1 # From phpcompatinfo report for 1.1.7 Requires: php-reflection Requires: php-date Requires: php-json Requires: php-mbstring Requires: php-pcre Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) # Composer Provides: php-composer(%{gh_owner}/%{gh_project}) = %{version} Provides: php-composer(ext-mongo) = 1.6.14 %description The Mongo PHP Adapter is a userland library designed to act as an adapter between applications relying on ext-mongo and the new driver (ext-mongodb). It provides the API of ext-mongo built on top of mongo-php-library, thus being compatible with PHP 7. Autoloader: %{_datadir}/php/%{ns_vendor}/MongoDbAdapter/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} mv lib/Mongo lib/%{ns_vendor}/Mongo %build : Create a classmap autoloader %{_bindir}/phpab \ --template fedora \ --output lib/%{ns_vendor}/MongoDbAdapter/autoload.php \ lib/%{ns_vendor} cat << 'EOF' | tee -a lib/%{ns_vendor}/MongoDbAdapter/autoload.php \Fedora\Autoloader\Dependencies::required(array( dirname(__DIR__) . '/Mongo/functions.php', '%{_datadir}/php/MongoDB/autoload.php', )); EOF %install mkdir -p %{buildroot}%{_datadir}/php cp -pr lib/%{ns_vendor} %{buildroot}%{_datadir}/php/%{ns_vendor} %check %if %{with_tests} cat << 'EOF' | tee bs.php - 1.1.9-1 - update to 1.1.9 * Mon Jul 15 2019 Remi Collet - 1.1.8-1 - update to 1.1.8 * Mon Apr 8 2019 Remi Collet - 1.1.7-1 - update to 1.1.7 * Fri Feb 8 2019 Remi Collet - 1.1.6-1 - update to 1.1.6 - drop patch merged upstream * Tue Feb 5 2019 Remi Collet - 1.1.5-5 - disable test suite and so mongodb-server build dependency for https://fedoraproject.org/wiki/Changes/MongoDB_Removal * Mon Jul 9 2018 Remi Collet - 1.1.5-2 - add upstream for ext-mongodb 1.5 * Tue Mar 6 2018 Remi Collet - 1.1.5-1 - Update to 1.1.5 - switch to phpunit7 * Thu Jan 25 2018 Remi Collet - 1.1.4-1 - Update to 1.1.4 * Sun Sep 24 2017 Remi Collet - 1.1.3-1 - Update to 1.1.3 * Sat Aug 5 2017 Remi Collet - 1.1.2-1 - Update to 1.1.2 * Fri Jun 30 2017 Remi Collet - 1.1.1-1 - Update to 1.1.1 * Sun May 14 2017 Remi Collet - 1.1.0-1 - Update to 1.1.0 - raise dependency on PHP >= 5.6 - add dependency on pecl/mongodb >= 1.2.0 - only run test with MongoDB 3.4 * Thu Apr 27 2017 Remi Collet - 1.0.11-1 - Update to 1.0.11 * Wed Apr 12 2017 Remi Collet - 1.0.10-2 - add patch from https://github.com/alcaeus/mongo-php-adapter/pull/167 - enable test suite with mongodb 3.1 (F26) * Thu Mar 30 2017 Remi Collet - 1.0.10-1 - Update to 1.0.10 * Sun Jan 29 2017 Remi Collet - 1.0.9-1 - update to 1.0.9 - switch to fedora autoloader * Thu Jan 12 2017 Remi Collet - 1.0.8-1 - update to 1.0.8 * Tue Dec 20 2016 Remi Collet - 1.0.7-1 - update to 1.0.7 * Fri Oct 7 2016 Remi Collet - 1.0.6-1 - update to 1.0.6 * Thu Jul 28 2016 Remi Collet - 1.0.5-2 - only run upstream test suite when build --with tests * Mon Jul 4 2016 Remi Collet - 1.0.5-1 - update to 1.0.5 * Wed Jun 22 2016 Remi Collet - 1.0.4-1 - update to 1.0.4 * Wed Jun 15 2016 Remi Collet - 1.0.3-1 - initial package