From cef7ef2d999f1e933eb47b5a5e108d67299f39c9 Mon Sep 17 00:00:00 2001 From: Brian Evans Date: Mon, 27 Nov 2017 14:09:00 -0500 Subject: php-ext-pecl-r3.eclass: Enable HTTPS by default --- eclass/php-ext-pecl-r3.eclass | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'eclass') diff --git a/eclass/php-ext-pecl-r3.eclass b/eclass/php-ext-pecl-r3.eclass index 43ac788c464f..8df60a372053 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 -- cgit v1.2.3-65-gdbad