Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-mongodb/
Date: Thu, 30 Jun 2016 17:00:05
Message-Id: 1467305993.fa3c5545191529a7a91e205e2973c4b74265fbfe.grknight@gentoo
1 commit: fa3c5545191529a7a91e205e2973c4b74265fbfe
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 30 16:57:01 2016 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 30 16:59:53 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa3c5545
7
8 dev-php/pecl-mongodb: New package - Official driver for MongoDB
9
10 This driver API is not compabitible with the Legacy dev-php/peccl-mongo
11
12 Package-Manager: portage-2.3.0
13
14 dev-php/pecl-mongodb/Manifest | 1 +
15 dev-php/pecl-mongodb/metadata.xml | 8 +++++
16 dev-php/pecl-mongodb/pecl-mongodb-1.1.7.ebuild | 43 ++++++++++++++++++++++++++
17 3 files changed, 52 insertions(+)
18
19 diff --git a/dev-php/pecl-mongodb/Manifest b/dev-php/pecl-mongodb/Manifest
20 new file mode 100644
21 index 0000000..d61d580
22 --- /dev/null
23 +++ b/dev-php/pecl-mongodb/Manifest
24 @@ -0,0 +1 @@
25 +DIST mongodb-1.1.7.tgz 806777 SHA256 65bfb564d9a53a7642a02f07085bd9055b43522250649886ed65a37771cf9b49 SHA512 306e738dc19efd88cb3759130837c4870773969f71aed9932a6449dde1421df60042638a55ac2ce5f1d713fdb05a47eb5de6b478fe5a695042f149ca9110f6a9 WHIRLPOOL 8c690a436519422b9502104df9a694c64cbe12cecfc138d1c6ccb0916aa0743ed00021e79dca396b9dbb8e5f227076f3e7d5b0b203a1603093aa21311727cb4a
26
27 diff --git a/dev-php/pecl-mongodb/metadata.xml b/dev-php/pecl-mongodb/metadata.xml
28 new file mode 100644
29 index 0000000..b86acf6
30 --- /dev/null
31 +++ b/dev-php/pecl-mongodb/metadata.xml
32 @@ -0,0 +1,8 @@
33 +<?xml version="1.0" encoding="UTF-8"?>
34 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
35 +<pkgmetadata>
36 + <maintainer type="project">
37 + <email>php-bugs@g.o</email>
38 + <name>PHP</name>
39 + </maintainer>
40 +</pkgmetadata>
41
42 diff --git a/dev-php/pecl-mongodb/pecl-mongodb-1.1.7.ebuild b/dev-php/pecl-mongodb/pecl-mongodb-1.1.7.ebuild
43 new file mode 100644
44 index 0000000..f8016de
45 --- /dev/null
46 +++ b/dev-php/pecl-mongodb/pecl-mongodb-1.1.7.ebuild
47 @@ -0,0 +1,43 @@
48 +# Copyright 1999-2016 Gentoo Foundation
49 +# Distributed under the terms of the GNU General Public License v2
50 +# $Id$
51 +
52 +EAPI=5
53 +
54 +PHP_EXT_NAME="mongodb"
55 +USE_PHP="php5-6 php7-0"
56 +DOCS="README.md"
57 +
58 +inherit php-ext-pecl-r2
59 +
60 +DESCRIPTION="MongoDB database driver for PHP"
61 +
62 +LICENSE="Apache-2.0"
63 +SLOT="0"
64 +KEYWORDS="~amd64 ~x86"
65 +IUSE="libressl pcre sasl"
66 +
67 +for target in ${USE_PHP}; do
68 + slot=${target/php}
69 + slot=${slot/-/.}
70 + PHPUSEDEPEND="${PHPUSEDEPEND}
71 + php_targets_${target}? ( dev-lang/php:${slot}[json,ssl,zlib] )"
72 +done
73 +unset target slot
74 +RDEPEND="
75 + ${PHPUSEDEPEND}
76 + >=dev-libs/libbson-1.3.3
77 + >=dev-libs/mongo-c-driver-1.3.3[sasl?,ssl]
78 + !libressl? ( dev-libs/openssl:0= )
79 + libressl? ( dev-libs/libressl:0= )
80 + pcre? ( dev-libs/libpcre )
81 + sasl? ( dev-libs/cyrus-sasl )
82 +"
83 +# pkgconfig needed if system libraries are used for bson and libmongoc
84 +DEPEND="${RDEPEND} virtual/pkgconfig"
85 +
86 +src_configure() {
87 + local my_conf="--enable-mongodb --with-libbson --with-libmongoc "
88 + my_conf+="--with-pcre-dir=$(usex pcre yes no) --with-mongodb-sasl=$(usex sasl yes no)"
89 + php-ext-source-r2_src_configure
90 +}