commit:     cef7ef2d999f1e933eb47b5a5e108d67299f39c9
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 27 19:09:00 2017 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Mon Nov 27 19:09:00 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cef7ef2d

php-ext-pecl-r3.eclass: Enable HTTPS by default

 eclass/php-ext-pecl-r3.eclass | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/eclass/php-ext-pecl-r3.eclass b/eclass/php-ext-pecl-r3.eclass
index 43ac788c464..8df60a37205 100644
--- a/eclass/php-ext-pecl-r3.eclass
+++ b/eclass/php-ext-pecl-r3.eclass
@@ -8,7 +8,7 @@
 # @DESCRIPTION:
 # This eclass should be used by all dev-php/pecl-* ebuilds as a uniform
 # way of installing PECL extensions. For more information about PECL,
-# see http://pecl.php.net/
+# see https://pecl.php.net/
 
 # @ECLASS-VARIABLE: PHP_EXT_PECL_PKG
 # @DESCRIPTION:
@@ -47,15 +47,15 @@ inherit php-ext-source-r3
 EXPORT_FUNCTIONS src_install src_test
 
 if [[ -z "${PHP_EXT_PECL_FILENAME}" ]] ; then
-       SRC_URI="http://pecl.php.net/get/${PHP_EXT_PECL_PKG_V}.tgz";
+       SRC_URI="https://pecl.php.net/get/${PHP_EXT_PECL_PKG_V}.tgz";
 else
-       SRC_URI="http://pecl.php.net/get/${PHP_EXT_PECL_FILENAME}";
+       SRC_URI="https://pecl.php.net/get/${PHP_EXT_PECL_FILENAME}";
 fi
 
 # Don't leave this laying around in the environment.
 unset PHP_EXT_PECL_PKG_V
 
-HOMEPAGE="http://pecl.php.net/${PHP_EXT_PECL_PKG}";
+HOMEPAGE="https://pecl.php.net/${PHP_EXT_PECL_PKG}";
 
 
 # @FUNCTION: php-ext-pecl-r3_src_install

Reply via email to