Gentoo Archives: gentoo-commits

From: "Brian Evans (grknight)" <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/pecl-htscanner: pecl-htscanner-1.0.1-r2.ebuild ChangeLog pecl-htscanner-1.0.1-r1.ebuild
Date: Wed, 29 Apr 2015 01:08:04
Message-Id: 20150429010758.1F57D998@oystercatcher.gentoo.org
1 grknight 15/04/29 01:07:57
2
3 Modified: ChangeLog
4 Added: pecl-htscanner-1.0.1-r2.ebuild
5 Removed: pecl-htscanner-1.0.1-r1.ebuild
6 Log:
7 Revbump to make dependencies more specific and silence repoman
8
9 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xD1F781EFF9F4A3B6)
10
11 Revision Changes Path
12 1.8 dev-php/pecl-htscanner/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-htscanner/ChangeLog?rev=1.8&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-htscanner/ChangeLog?rev=1.8&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-htscanner/ChangeLog?r1=1.7&r2=1.8
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-php/pecl-htscanner/ChangeLog,v
21 retrieving revision 1.7
22 retrieving revision 1.8
23 diff -u -r1.7 -r1.8
24 --- ChangeLog 9 Oct 2014 20:49:52 -0000 1.7
25 +++ ChangeLog 29 Apr 2015 01:07:56 -0000 1.8
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-php/pecl-htscanner
28 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-htscanner/ChangeLog,v 1.7 2014/10/09 20:49:52 grknight Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-htscanner/ChangeLog,v 1.8 2015/04/29 01:07:56 grknight Exp $
32 +
33 +*pecl-htscanner-1.0.1-r2 (29 Apr 2015)
34 +
35 + 29 Apr 2015; Brian Evans <grknight@g.o>
36 + +pecl-htscanner-1.0.1-r2.ebuild, -pecl-htscanner-1.0.1-r1.ebuild:
37 + Revbump to make dependencies more specific and silence repoman
38
39 *pecl-htscanner-1.0.1-r1 (30 Sep 2014)
40
41
42
43
44 1.1 dev-php/pecl-htscanner/pecl-htscanner-1.0.1-r2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-htscanner/pecl-htscanner-1.0.1-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pecl-htscanner/pecl-htscanner-1.0.1-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: pecl-htscanner-1.0.1-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2015 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-htscanner/pecl-htscanner-1.0.1-r2.ebuild,v 1.1 2015/04/29 01:07:56 grknight Exp $
54
55 EAPI=5
56
57 PHP_EXT_NAME="htscanner"
58 PHP_EXT_INI="yes"
59 PHP_EXT_ZENDEXT="no"
60 DOCS="README"
61 PHPSAPILIST="cgi"
62
63 USE_PHP="php5-6 php5-5 php5-4"
64
65 inherit php-ext-pecl-r2
66
67 KEYWORDS="~amd64 ~x86"
68
69 DESCRIPTION="Enables .htaccess options for php-scripts running as cgi"
70 LICENSE="PHP-3"
71 SLOT="0"
72 IUSE=""
73
74 for target in ${USE_PHP}; do
75 slot=${target/php}
76 slot=${slot/-/.}
77 PHPUSEDEPEND="${PHPUSEDEPEND}
78 php_targets_${target}? ( dev-lang/php:${slot}[cgi] )"
79 done
80
81 DEPEND="${PHPUSEDEPEND}"
82 RDEPEND="${DEPEND}"
83
84 my_conf="--enable-htscanner"
85
86 src_install() {
87 php-ext-pecl-r2_src_install
88
89 php-ext-source-r2_addtoinifiles "config_file" ".htaccess"
90 php-ext-source-r2_addtoinifiles "default_docroot" "/"
91 php-ext-source-r2_addtoinifiles "default_ttl" "300"
92 php-ext-source-r2_addtoinifiles "stop_on_error" "0"
93 }