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-mysqlnd_qc/
Date: Thu, 01 Dec 2016 15:47:10
Message-Id: 1480607199.05522bed6ee4b8a4f491cb3f031988773636587c.grknight@gentoo
1 commit: 05522bed6ee4b8a4f491cb3f031988773636587c
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 1 13:56:12 2016 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 1 15:46:39 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05522bed
7
8 dev-php/pecl-mysqlnd_qc: Drop old
9
10 Package-Manager: portage-2.3.2
11
12 .../pecl-mysqlnd_qc-1.2.0-r1.ebuild | 55 ----------------------
13 1 file changed, 55 deletions(-)
14
15 diff --git a/dev-php/pecl-mysqlnd_qc/pecl-mysqlnd_qc-1.2.0-r1.ebuild b/dev-php/pecl-mysqlnd_qc/pecl-mysqlnd_qc-1.2.0-r1.ebuild
16 deleted file mode 100644
17 index f729106..00000000
18 --- a/dev-php/pecl-mysqlnd_qc/pecl-mysqlnd_qc-1.2.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,55 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=6
26 -
27 -PHP_EXT_NAME="mysqlnd_qc"
28 -PHP_EXT_INI="yes"
29 -PHP_EXT_ZENDEXT="no"
30 -
31 -USE_PHP="php5-5 php5-6"
32 -
33 -inherit php-ext-pecl-r3 flag-o-matic
34 -
35 -KEYWORDS="~amd64"
36 -
37 -DESCRIPTION="A query cache plugin for the mysqlnd library"
38 -LICENSE="PHP-3"
39 -SLOT="0"
40 -IUSE="memcached sqlite"
41 -
42 -# Specifying targets due to USE flag transition
43 -DEPEND="
44 - memcached? ( dev-libs/libmemcached )
45 - sqlite? ( dev-db/sqlite:3 )
46 - php_targets_php5-5? ( || (
47 - dev-lang/php:5.5[-libmysqlclient,mysql]
48 - dev-lang/php:5.5[-libmysqlclient,mysqli]
49 - )
50 - )
51 - php_targets_php5-6? ( || (
52 - dev-lang/php:5.6[-libmysqlclient,mysql]
53 - dev-lang/php:5.6[-libmysqlclient,mysqli]
54 - )
55 - )
56 -"
57 -RDEPEND="${DEPEND}"
58 -PATCHES=( "${FILESDIR}/${P}-php56.patch" )
59 -
60 -src_configure() {
61 - local PHP_EXT_ECONF_ARGS=()
62 - if use memcached ; then
63 - # configure does not find pthreads when memcache is enabled
64 - append-flags -pthread
65 - PHP_EXT_ECONF_ARGS+=( --enable-mysqlnd_qc_memcache --with-libmemcached-dir="${ROOT}usr" )
66 - else
67 - PHP_EXT_ECONF_ARGS+=( --disable-mysqlnd_qc_memcache )
68 - fi
69 - if use sqlite ; then
70 - PHP_EXT_ECONF_ARGS+=( --enable-mysqlnd_qc_sqlite --with-sqlite-dir="${ROOT}usr" )
71 - else
72 - PHP_EXT_ECONF_ARGS+=( --disable-mysqlnd_qc_sqlite )
73 - fi
74 - php-ext-source-r3_src_configure
75 -}