diff options
author | Brian Evans <grknight@gentoo.org> | 2017-11-27 14:09:00 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2017-11-27 14:09:00 -0500 |
commit | cef7ef2d999f1e933eb47b5a5e108d67299f39c9 (patch) | |
tree | 108e701dcebb3b2e615fd7aa340d19ed1ae358ab /eclass | |
parent | app-cdr/xfburn: remove obsolete xfconf.eclass, migrate to EAPI6 (diff) | |
download | gentoo-cef7ef2d999f1e933eb47b5a5e108d67299f39c9.tar.gz gentoo-cef7ef2d999f1e933eb47b5a5e108d67299f39c9.tar.bz2 gentoo-cef7ef2d999f1e933eb47b5a5e108d67299f39c9.zip |
php-ext-pecl-r3.eclass: Enable HTTPS by default
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/php-ext-pecl-r3.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
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 |