From 005343f7fb9e31bc12dcf6a85adb9eaea38d8e37 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 15 Jun 2016 16:12:51 +0200 Subject: php-alcaeus-mongo-php-adapter: 1.0.3 (new package) --- Makefile | 4 + composer.json | 39 +++++++++ php-alcaeus-mongo-php-adapter.spec | 161 +++++++++++++++++++++++++++++++++++++ 3 files changed, 204 insertions(+) create mode 100644 Makefile create mode 100644 composer.json create mode 100644 php-alcaeus-mongo-php-adapter.spec diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..91b0fd5 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../common/Makefile + diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..35c083b --- /dev/null +++ b/composer.json @@ -0,0 +1,39 @@ +{ + "name": "alcaeus/mongo-php-adapter", + "type": "library", + "description": "Adapter to provide ext-mongo interface on top of mongo-php-libary", + "keywords": ["mongodb", "database"], + "license": "MIT", + "authors": [ + { "name": "alcaeus", "email": "alcaeus@alcaeus.org" }, + { "name": "Olivier Lechevalier", "email": "olivier.lechevalier@gmail.com" } + ], + "require": { + "php": "^5.5 || ^7.0", + "ext-hash": "*", + "mongodb/mongodb": "^1.0.1" + }, + "require-dev": { + "phpunit/phpunit": "^4.8 || ^5.0" + }, + "provide": { + "ext-mongo": "1.6.13" + }, + "autoload": { + "psr-0": { + "Mongo": "lib/Mongo" + }, + "psr-4": { + "Alcaeus\\MongoDbAdapter\\": "lib/Alcaeus/MongoDbAdapter" + }, + "files": [ "lib/Mongo/functions.php" ] + }, + "autoload-dev": { + "psr-4": { "Alcaeus\\MongoDbAdapter\\Tests\\": "tests/Alcaeus/MongoDbAdapter" } + }, + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + } +} diff --git a/php-alcaeus-mongo-php-adapter.spec b/php-alcaeus-mongo-php-adapter.spec new file mode 100644 index 0000000..8823514 --- /dev/null +++ b/php-alcaeus-mongo-php-adapter.spec @@ -0,0 +1,161 @@ +# remirepo/fedora spec file for php-mongodb +# +# Copyright (c) 2015-2016 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please, preserve the changelog entries +# +%global gh_commit f3b879fadc0f5271f054b87b525b3945c9abd608 +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner alcaeus +%global gh_project mongo-php-adapter +%if 0%{?fedora} >= 21 || 0%{?rhel} >= 6 +%global with_tests 0%{!?_without_tests:1} +%else +%global with_tests 0%{?_with_tests:1} +%endif +%global ns_vendor Alcaeus + + +Name: php-%{gh_owner}-%{gh_project} +Version: 1.0.3 +Release: 1%{?dist} +Summary: Mongo PHP Adapter + +Group: Development/Libraries +License: MIT +URL: https://github.com/%{gh_owner}/%{gh_project} +Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}%{?prever}-%{?gh_short}.tar.gz + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: php-composer(theseer/autoload) +%if %{with_tests} +BuildRequires: php(language) >= 5.5 +BuildRequires: php-hash +BuildRequires: php-composer(mongodb/mongodb) >= 1.0.1 +BuildRequires: php-date +BuildRequires: php-mbstring +BuildRequires: php-pcre +BuildRequires: php-spl +# from composer.json, require-dev": { +# "phpunit/phpunit": "^4.8 || ^5.0" +BuildRequires: php-composer(phpunit/phpunit) +BuildRequires: mongodb-server >= 2.4 +%endif + +# From composer.json, "require": { +# "php": "^5.5 || ^7.0", +# "ext-hash": "*", +# "mongodb/mongodb": "^1.0.1" +Requires: php(language) >= 5.5 +Requires: php-hash +Requires: php-composer(mongodb/mongodb) >= 1.0.1 +# From phpcompatinfo report for 1.0.3 +Requires: php-date +Requires: php-mbstring +Requires: php-pcre +Requires: php-spl + +# Composer +Provides: php-composer(%{gh_owner}/%{gh_project}) = %{version} +Provides: php-composer(ext-mongo) = 1.6.13 + + +%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 \ + --output lib/%{ns_vendor}/MongoDbAdapter/autoload.php \ + lib/%{ns_vendor} + +cat << 'EOF' | tee -a lib/%{ns_vendor}/MongoDbAdapter/autoload.php + +require_once dirname(__DIR__) . '/Mongo/functions.php'; + +// Dependencies +require_once "%{_datadir}/php/MongoDB/autoload.php"; +EOF + + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}%{_datadir}/php +cp -pr lib/%{ns_vendor} %{buildroot}%{_datadir}/php/%{ns_vendor} + + +%check +%if %{with_tests} +# ignore know to fail tests (different error code) +sed -e 's/testDeleteIndexUsingIndexName/SKIP_testDeleteIndexUsingIndexName/' \ + -e 's/testDeleteIndexesForNonExistingCollection/SKIP_testDeleteIndexesForNonExistingCollection/' \ + -i tests/%{ns_vendor}/MongoDbAdapter/Mongo/MongoCollectionTest.php + +: Run a server +mkdir dbtest + +: Choose a port to allow parallel build + +mongod \ + --journal \ + --logpath $PWD/server.log \ + --pidfilepath $PWD/server.pid \ + --dbpath $PWD/dbtest \ + --fork + +cat << 'EOF' | tee bs.php + - 1.0.3-1 +- initial package + -- cgit