Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 27 Nov 2017 19:09:24
Message-Id: 1511809740.cef7ef2d999f1e933eb47b5a5e108d67299f39c9.grknight@gentoo
1 commit: cef7ef2d999f1e933eb47b5a5e108d67299f39c9
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 27 19:09:00 2017 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 27 19:09:00 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cef7ef2d
7
8 php-ext-pecl-r3.eclass: Enable HTTPS by default
9
10 eclass/php-ext-pecl-r3.eclass | 8 ++++----
11 1 file changed, 4 insertions(+), 4 deletions(-)
12
13 diff --git a/eclass/php-ext-pecl-r3.eclass b/eclass/php-ext-pecl-r3.eclass
14 index 43ac788c464..8df60a37205 100644
15 --- a/eclass/php-ext-pecl-r3.eclass
16 +++ b/eclass/php-ext-pecl-r3.eclass
17 @@ -8,7 +8,7 @@
18 # @DESCRIPTION:
19 # This eclass should be used by all dev-php/pecl-* ebuilds as a uniform
20 # way of installing PECL extensions. For more information about PECL,
21 -# see http://pecl.php.net/
22 +# see https://pecl.php.net/
23
24 # @ECLASS-VARIABLE: PHP_EXT_PECL_PKG
25 # @DESCRIPTION:
26 @@ -47,15 +47,15 @@ inherit php-ext-source-r3
27 EXPORT_FUNCTIONS src_install src_test
28
29 if [[ -z "${PHP_EXT_PECL_FILENAME}" ]] ; then
30 - SRC_URI="http://pecl.php.net/get/${PHP_EXT_PECL_PKG_V}.tgz"
31 + SRC_URI="https://pecl.php.net/get/${PHP_EXT_PECL_PKG_V}.tgz"
32 else
33 - SRC_URI="http://pecl.php.net/get/${PHP_EXT_PECL_FILENAME}"
34 + SRC_URI="https://pecl.php.net/get/${PHP_EXT_PECL_FILENAME}"
35 fi
36
37 # Don't leave this laying around in the environment.
38 unset PHP_EXT_PECL_PKG_V
39
40 -HOMEPAGE="http://pecl.php.net/${PHP_EXT_PECL_PKG}"
41 +HOMEPAGE="https://pecl.php.net/${PHP_EXT_PECL_PKG}"
42
43
44 # @FUNCTION: php-ext-pecl-r3_src_install