Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 25 Sep 2015 07:11:33
Message-Id: 1443165082.0fb6e70c611fd2ead2bfe7a9ecdfb43fd3bfae47.jlec@gentoo
1 commit: 0fb6e70c611fd2ead2bfe7a9ecdfb43fd3bfae47
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 25 06:13:03 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 07:11:22 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fb6e70c
7
8 eclass: gentoo.org has https per default
9
10 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
11
12 eclass/ant-tasks.eclass | 12 ++++++------
13 eclass/apache-2.eclass | 4 ++--
14 eclass/common-lisp-common-3.eclass | 2 +-
15 eclass/cron.eclass | 2 +-
16 eclass/emul-linux-x86.eclass | 6 +++---
17 eclass/eutils.eclass | 6 +++---
18 eclass/games.eclass | 2 +-
19 eclass/gnatbuild.eclass | 2 +-
20 eclass/gnome.org.eclass | 2 +-
21 eclass/gst-plugins10.eclass | 4 ++--
22 eclass/gstreamer.eclass | 4 ++--
23 eclass/java-utils-2.eclass | 6 +++---
24 eclass/kde4-base.eclass | 2 +-
25 eclass/kernel-2.eclass | 2 +-
26 eclass/mozilla-launcher.eclass | 6 +++---
27 eclass/mysql-multilib.eclass | 6 +++---
28 eclass/mysql-v2.eclass | 6 +++---
29 eclass/nvidia-driver.eclass | 2 +-
30 eclass/qmail.eclass | 2 +-
31 eclass/ruby-ng.eclass | 2 +-
32 eclass/selinux-policy-2.eclass | 2 +-
33 eclass/subversion.eclass | 2 +-
34 eclass/toolchain-binutils.eclass | 4 ++--
35 eclass/toolchain-funcs.eclass | 2 +-
36 eclass/toolchain.eclass | 6 +++---
37 eclass/unpacker.eclass | 2 +-
38 eclass/vim-plugin.eclass | 2 +-
39 eclass/vim-spell.eclass | 2 +-
40 eclass/webapp.eclass | 10 +++++-----
41 29 files changed, 56 insertions(+), 56 deletions(-)
42
43 diff --git a/eclass/ant-tasks.eclass b/eclass/ant-tasks.eclass
44 index fe9405d..0b7293f 100644
45 --- a/eclass/ant-tasks.eclass
46 +++ b/eclass/ant-tasks.eclass
47 @@ -63,12 +63,12 @@ ANT_TASK_PV="${PV}"
48 if [[ ${PV} == *beta2* ]]; then
49 MY_PV=${PV/_beta2/beta}
50 UPSTREAM_PREFIX="http://people.apache.org/dist/ant/v1.7.1beta2/src"
51 - GENTOO_PREFIX="http://dev.gentoo.org/~caster/distfiles"
52 + GENTOO_PREFIX="https://dev.gentoo.org/~caster/distfiles"
53 ANT_TASK_PV=$(get_version_component_range 1-3)
54 elif [[ ${PV} == *_rc* ]]; then
55 MY_PV=${PV/_rc/RC}
56 - UPSTREAM_PREFIX="http://dev.gentoo.org/~caster/distfiles"
57 - GENTOO_PREFIX="http://dev.gentoo.org/~caster/distfiles"
58 + UPSTREAM_PREFIX="https://dev.gentoo.org/~caster/distfiles"
59 + GENTOO_PREFIX="https://dev.gentoo.org/~caster/distfiles"
60 ANT_TASK_PV=$(get_version_component_range 1-3)
61 else
62 # default for final releases
63 @@ -76,13 +76,13 @@ else
64 UPSTREAM_PREFIX="mirror://apache/ant/source"
65 case ${PV} in
66 1.9.*)
67 - GENTOO_PREFIX="http://dev.gentoo.org/~tomwij/files/dist"
68 + GENTOO_PREFIX="https://dev.gentoo.org/~tomwij/files/dist"
69 ;;
70 1.8.4)
71 - GENTOO_PREFIX="http://dev.gentoo.org/~sera/distfiles"
72 + GENTOO_PREFIX="https://dev.gentoo.org/~sera/distfiles"
73 ;;
74 *)
75 - GENTOO_PREFIX="http://dev.gentoo.org/~caster/distfiles"
76 + GENTOO_PREFIX="https://dev.gentoo.org/~caster/distfiles"
77 ;;
78 esac
79 fi
80
81 diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass
82 index 549b43a..d062152 100644
83 --- a/eclass/apache-2.eclass
84 +++ b/eclass/apache-2.eclass
85 @@ -71,7 +71,7 @@ esac
86 [[ -n "$GENTOO_PATCH_A" ]] || GENTOO_PATCH_A="${GENTOO_PATCHNAME}-${GENTOO_PATCHSTAMP}.tar.bz2"
87
88 SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2
89 - http://dev.gentoo.org/~${GENTOO_DEVELOPER}/dist/apache/${GENTOO_PATCH_A}"
90 + https://dev.gentoo.org/~${GENTOO_DEVELOPER}/dist/apache/${GENTOO_PATCH_A}"
91
92 # @VARIABLE: IUSE_MPMS_FORK
93 # @DESCRIPTION:
94 @@ -365,7 +365,7 @@ check_upgrade() {
95 eerror "(${EROOT}etc/apache2/apache2-builtin-mods) exists on your"
96 eerror "system."
97 eerror
98 - eerror "Please read http://www.gentoo.org/doc/en/apache-upgrading.xml"
99 + eerror "Please read https://www.gentoo.org/doc/en/apache-upgrading.xml"
100 eerror "for detailed information how to convert this file to the new"
101 eerror "APACHE2_MODULES USE_EXPAND variable."
102 eerror
103
104 diff --git a/eclass/common-lisp-common-3.eclass b/eclass/common-lisp-common-3.eclass
105 index b652b83..f8d62cd 100644
106 --- a/eclass/common-lisp-common-3.eclass
107 +++ b/eclass/common-lisp-common-3.eclass
108 @@ -32,7 +32,7 @@ do-debian-credits() {
109 # The following `impl-*-timestamp-hack' functions SHOULD NOT be used
110 # outside of this eclass.
111
112 -# Bug http://bugs.gentoo.org/show_bug.cgi?id=16162 should remove the
113 +# Bug https://bugs.gentoo.org/show_bug.cgi?id=16162 should remove the
114 # need for this hack.
115
116 impl-save-timestamp-hack() {
117
118 diff --git a/eclass/cron.eclass b/eclass/cron.eclass
119 index 57ab446..8395d41 100644
120 --- a/eclass/cron.eclass
121 +++ b/eclass/cron.eclass
122 @@ -156,6 +156,6 @@ cron_pkg_postinst() {
123
124 einfo "You may wish to read the Gentoo Linux Cron Guide, which can be"
125 einfo "found online at:"
126 - einfo " http://www.gentoo.org/doc/en/cron-guide.xml"
127 + einfo " https://www.gentoo.org/doc/en/cron-guide.xml"
128 echo
129 }
130
131 diff --git a/eclass/emul-linux-x86.eclass b/eclass/emul-linux-x86.eclass
132 index 80f6faf..18849c6 100644
133 --- a/eclass/emul-linux-x86.eclass
134 +++ b/eclass/emul-linux-x86.eclass
135 @@ -18,9 +18,9 @@ case "${EAPI:-0}" in
136 esac
137
138 DESCRIPTION="Provides precompiled 32bit libraries"
139 -#HOMEPAGE="http://amd64.gentoo.org/emul/content.xml"
140 -HOMEPAGE="http://dev.gentoo.org/~pacho/emul.html"
141 -SRC_URI="http://dev.gentoo.org/~pacho/emul/${P}.tar.xz"
142 +#HOMEPAGE="https://amd64.gentoo.org/emul/content.xml"
143 +HOMEPAGE="https://dev.gentoo.org/~pacho/emul.html"
144 +SRC_URI="https://dev.gentoo.org/~pacho/emul/${P}.tar.xz"
145
146 IUSE="+development"
147
148
149 diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass
150 index fecd375..b7f0970 100644
151 --- a/eclass/eutils.eclass
152 +++ b/eclass/eutils.eclass
153 @@ -55,11 +55,11 @@ ebeep() {
154 else
155
156 ebeep() {
157 - ewarn "QA Notice: ebeep is not defined in EAPI=${EAPI}, please file a bug at http://bugs.gentoo.org"
158 + ewarn "QA Notice: ebeep is not defined in EAPI=${EAPI}, please file a bug at https://bugs.gentoo.org"
159 }
160
161 epause() {
162 - ewarn "QA Notice: epause is not defined in EAPI=${EAPI}, please file a bug at http://bugs.gentoo.org"
163 + ewarn "QA Notice: epause is not defined in EAPI=${EAPI}, please file a bug at https://bugs.gentoo.org"
164 }
165
166 fi
167 @@ -1402,7 +1402,7 @@ built_with_use() {
168 # Many configure scripts wrongly bail when a C++ compiler could not be
169 # detected. If dir is not specified, then it defaults to ${S}.
170 #
171 -# http://bugs.gentoo.org/73450
172 +# https://bugs.gentoo.org/73450
173 epunt_cxx() {
174 local dir=$1
175 [[ -z ${dir} ]] && dir=${S}
176
177 diff --git a/eclass/games.eclass b/eclass/games.eclass
178 index f9721d7..03421b3 100644
179 --- a/eclass/games.eclass
180 +++ b/eclass/games.eclass
181 @@ -343,7 +343,7 @@ games_pkg_postinst() {
182 esac
183 echo
184 einfo "For more info about Gentoo gaming in general, see our website:"
185 - einfo " http://games.gentoo.org/"
186 + einfo " https://games.gentoo.org/"
187 echo
188 fi
189 }
190
191 diff --git a/eclass/gnatbuild.eclass b/eclass/gnatbuild.eclass
192 index da8986a..43f7e59 100644
193 --- a/eclass/gnatbuild.eclass
194 +++ b/eclass/gnatbuild.eclass
195 @@ -246,7 +246,7 @@ do_gnat_config() {
196 elog "Ada handling in Gentoo allows you to have multiple gnat variants"
197 elog "installed in parallel and automatically manage Ada libs."
198 elog "Please take a look at the Ada project page for some documentation:"
199 - elog "http://www.gentoo.org/proj/en/prog_lang/ada/index.xml"
200 + elog "https://www.gentoo.org/proj/en/prog_lang/ada/index.xml"
201 }
202
203
204
205 diff --git a/eclass/gnome.org.eclass b/eclass/gnome.org.eclass
206 index eb84e1b..3eeb4ef 100644
207 --- a/eclass/gnome.org.eclass
208 +++ b/eclass/gnome.org.eclass
209 @@ -27,7 +27,7 @@ else
210 fi
211
212 # Even though xz-utils are in @system, they must still be added to DEPEND; see
213 -# http://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
214 +# https://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
215 if [[ ${GNOME_TARBALL_SUFFIX} == "xz" ]]; then
216 DEPEND="${DEPEND} app-arch/xz-utils"
217 fi
218
219 diff --git a/eclass/gst-plugins10.eclass b/eclass/gst-plugins10.eclass
220 index 0a6b0db..1d4f4f7 100644
221 --- a/eclass/gst-plugins10.eclass
222 +++ b/eclass/gst-plugins10.eclass
223 @@ -79,7 +79,7 @@ else
224 fi
225
226 # Even though xz-utils are in @system, they must still be added to DEPEND; see
227 -# http://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
228 +# https://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
229 if [[ ${GST_TARBALL_SUFFIX} == "xz" ]]; then
230 DEPEND="${DEPEND} app-arch/xz-utils"
231 fi
232 @@ -254,7 +254,7 @@ gst-plugins10_src_configure() {
233 einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..."
234 econf \
235 --with-package-name="Gentoo GStreamer ebuild" \
236 - --with-package-origin="http://www.gentoo.org" \
237 + --with-package-origin="https://www.gentoo.org" \
238 ${gst_conf} $@
239 }
240
241
242 diff --git a/eclass/gstreamer.eclass b/eclass/gstreamer.eclass
243 index aef8bf5..0163493 100644
244 --- a/eclass/gstreamer.eclass
245 +++ b/eclass/gstreamer.eclass
246 @@ -58,7 +58,7 @@ esac
247 : ${GST_TARBALL_SUFFIX:="xz"}
248
249 # Even though xz-utils are in @system, they must still be added to DEPEND; see
250 -# http://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
251 +# https://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
252 if [[ ${GST_TARBALL_SUFFIX} == "xz" ]]; then
253 DEPEND="${DEPEND} app-arch/xz-utils"
254 fi
255 @@ -236,7 +236,7 @@ gstreamer_multilib_src_configure() {
256 einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..."
257 econf \
258 --with-package-name="Gentoo GStreamer ebuild" \
259 - --with-package-origin="http://www.gentoo.org" \
260 + --with-package-origin="https://www.gentoo.org" \
261 "${gst_conf[@]}" "${@}"
262 }
263
264
265 diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass
266 index 6e33311..9b67097 100644
267 --- a/eclass/java-utils-2.eclass
268 +++ b/eclass/java-utils-2.eclass
269 @@ -2102,7 +2102,7 @@ java-pkg_init() {
270 }
271
272 # People do all kinds of weird things.
273 - # http://forums.gentoo.org/viewtopic-p-3943166.html
274 + # https://forums.gentoo.org/viewtopic-p-3943166.html
275 local silence="${SILENCE_JAVA_OPTIONS_WARNING}"
276 local accept="${I_WANT_GLOBAL_JAVA_OPTIONS}"
277 if [[ -n ${_JAVA_OPTIONS} && -z ${accept} && -z ${silence} ]]; then
278 @@ -2765,7 +2765,7 @@ java-pkg_ensure-dep() {
279 eqawarn "java-pkg_ensure-dep: ${dev_error}"
280 # eerror "Because you have ${target_pkg} installed,"
281 # eerror "the package will build without problems, but please"
282 -# eerror "report this to http://bugs.gentoo.org."
283 +# eerror "report this to https://bugs.gentoo.org."
284 # fi
285 elif [[ ${limit_to} != build && ! ( "${RDEPEND}${PDEPEND}" =~ ${stripped_pkg} ) ]]; then
286 dev_error="The ebuild is attempting to use ${target_pkg}, which is not "
287 @@ -2776,7 +2776,7 @@ java-pkg_ensure-dep() {
288 eqawarn "java-pkg_ensure-dep: ${dev_error}"
289 # eerror "The package will build without problems, but may fail to run"
290 # eerror "if you don't have ${target_pkg} installed,"
291 -# eerror "so please report this to http://bugs.gentoo.org."
292 +# eerror "so please report this to https://bugs.gentoo.org."
293 # fi
294 fi
295 }
296
297 diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass
298 index 8b9226a..477a544 100644
299 --- a/eclass/kde4-base.eclass
300 +++ b/eclass/kde4-base.eclass
301 @@ -433,7 +433,7 @@ _calculate_src_uri() {
302 4.4.20*)
303 # KDEPIM 4.4 no-akonadi branch, special case
304 # TODO: Remove this part when KDEPIM 4.4 gets out of the tree
305 - SRC_URI="http://dev.gentoo.org/~dilfridge/distfiles/${_kmname_pv}.tar.xz" ;;
306 + SRC_URI="https://dev.gentoo.org/~dilfridge/distfiles/${_kmname_pv}.tar.xz" ;;
307 4.?.[6-9]? | 4.??.[6-9]?)
308 # Unstable KDE SC releases
309 SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.xz" ;;
310
311 diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass
312 index 50f318c..94231ec 100644
313 --- a/eclass/kernel-2.eclass
314 +++ b/eclass/kernel-2.eclass
315 @@ -102,7 +102,7 @@ if [[ ${CTARGET} == ${CHOST} && ${CATEGORY/cross-} != ${CATEGORY} ]]; then
316 export CTARGET=${CATEGORY/cross-}
317 fi
318
319 -HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/ ${HOMEPAGE}"
320 +HOMEPAGE="https://www.kernel.org/ https://www.gentoo.org/ ${HOMEPAGE}"
321 : ${LICENSE:="GPL-2"}
322
323 # This is the latest KV_PATCH of the deblob tool available from the
324
325 diff --git a/eclass/mozilla-launcher.eclass b/eclass/mozilla-launcher.eclass
326 index 0d70638..11c3fdb 100644
327 --- a/eclass/mozilla-launcher.eclass
328 +++ b/eclass/mozilla-launcher.eclass
329 @@ -87,7 +87,7 @@ install_mozilla_launcher_stub() {
330 #
331 # Stub script to run mozilla-launcher. We used to use a symlink here
332 # but OOo brokenness makes it necessary to use a stub instead:
333 -# http://bugs.gentoo.org/show_bug.cgi?id=78890
334 +# https://bugs.gentoo.org/show_bug.cgi?id=78890
335
336 export MOZILLA_LAUNCHER=${appname}
337 export MOZILLA_LIBDIR=${libdir}
338 @@ -101,7 +101,7 @@ EOF
339 #
340 # Stub script to run mozilla-launcher. We used to use a symlink here
341 # but OOo brokenness makes it necessary to use a stub instead:
342 -# http://bugs.gentoo.org/show_bug.cgi?id=78890
343 +# https://bugs.gentoo.org/show_bug.cgi?id=78890
344
345 export MOZILLA_LAUNCHER=${appname}
346 export MOZILLA_LIBDIR=${libdir}
347 @@ -117,7 +117,7 @@ EOF
348 warn_mozilla_launcher_stub() {
349 elog "Not all locales support the disabling of pango."
350 elog "If your locale does not support disabling pango,"
351 - elog "please open a bug report on http://bugs.gentoo.org"
352 + elog "please open a bug report on https://bugs.gentoo.org"
353 elog "Then we can filter around the problem with those"
354 elog "specific locales."
355 }
356
357 diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass
358 index ff701df..da5594b 100644
359 --- a/eclass/mysql-multilib.eclass
360 +++ b/eclass/mysql-multilib.eclass
361 @@ -170,9 +170,9 @@ SRC_URI="${SERVER_URI}"
362 if [[ ${MY_EXTRAS_VER} != "live" && ${MY_EXTRAS_VER} != "none" ]]; then
363 SRC_URI="${SRC_URI}
364 mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
365 - http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
366 - http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
367 - http://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2"
368 + https://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
369 + https://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
370 + https://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2"
371 fi
372
373 DESCRIPTION="A fast, multi-threaded, multi-user SQL database server"
374
375 diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass
376 index b317be4..8d38939 100644
377 --- a/eclass/mysql-v2.eclass
378 +++ b/eclass/mysql-v2.eclass
379 @@ -184,9 +184,9 @@ if [[ ${MY_EXTRAS_VER} != "live" && ${MY_EXTRAS_VER} != "none" ]]; then
380 SRC_URI="${SRC_URI}
381 mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
382 http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
383 - http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
384 - http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
385 - http://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2"
386 + https://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
387 + https://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
388 + https://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2"
389 fi
390
391 DESCRIPTION="A fast, multi-threaded, multi-user SQL database server"
392
393 diff --git a/eclass/nvidia-driver.eclass b/eclass/nvidia-driver.eclass
394 index 44ef003..647c32a 100644
395 --- a/eclass/nvidia-driver.eclass
396 +++ b/eclass/nvidia-driver.eclass
397 @@ -21,7 +21,7 @@ DEPEND="sys-apps/pciutils"
398 DISABLE_AUTOFORMATTING="yes"
399 DOC_CONTENTS="You must be in the video group to use the NVIDIA device
400 For more info, read the docs at
401 -http://www.gentoo.org/doc/en/nvidia-guide.xml#doc_chap3_sect6
402 +https://www.gentoo.org/doc/en/nvidia-guide.xml#doc_chap3_sect6
403
404 This ebuild installs a kernel module and X driver. Both must
405 match explicitly in their version. This means, if you restart
406
407 diff --git a/eclass/qmail.eclass b/eclass/qmail.eclass
408 index eb6e012..e6694b0 100644
409 --- a/eclass/qmail.eclass
410 +++ b/eclass/qmail.eclass
411 @@ -475,7 +475,7 @@ qmail_config_fast() {
412 eerror
413 eerror "Cannot determine your fully-qualified hostname"
414 eerror "Please setup your /etc/hosts as described in"
415 - eerror "http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=1&chap=8#doc_chap2_sect4"
416 + eerror "https://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=1&chap=8#doc_chap2_sect4"
417 eerror
418 die "cannot determine FQDN"
419 fi
420
421 diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass
422 index 4b99b39..d560ba8 100644
423 --- a/eclass/ruby-ng.eclass
424 +++ b/eclass/ruby-ng.eclass
425 @@ -369,7 +369,7 @@ _ruby_each_implementation() {
426 eerror "You need to select at least one compatible Ruby installation target via RUBY_TARGETS in make.conf."
427 eerror "Compatible targets for this package are: ${USE_RUBY}"
428 eerror
429 - eerror "See http://www.gentoo.org/proj/en/prog_lang/ruby/index.xml#doc_chap3 for more information."
430 + eerror "See https://www.gentoo.org/proj/en/prog_lang/ruby/index.xml#doc_chap3 for more information."
431 eerror
432 die "No compatible Ruby target selected."
433 fi
434
435 diff --git a/eclass/selinux-policy-2.eclass b/eclass/selinux-policy-2.eclass
436 index 92f2f82..eb27c89 100644
437 --- a/eclass/selinux-policy-2.eclass
438 +++ b/eclass/selinux-policy-2.eclass
439 @@ -90,7 +90,7 @@ HOMEPAGE="https://wiki.gentoo.org/wiki/Project:SELinux"
440 if [[ -n ${BASEPOL} ]] && [[ "${BASEPOL}" != "9999" ]];
441 then
442 SRC_URI="https://raw.githubusercontent.com/wiki/TresysTechnology/refpolicy/files/refpolicy-${PV}.tar.bz2
443 - http://dev.gentoo.org/~swift/patches/selinux-base-policy/patchbundle-selinux-base-policy-${BASEPOL}.tar.bz2"
444 + https://dev.gentoo.org/~swift/patches/selinux-base-policy/patchbundle-selinux-base-policy-${BASEPOL}.tar.bz2"
445 elif [[ "${BASEPOL}" != "9999" ]];
446 then
447 SRC_URI="https://raw.githubusercontent.com/wiki/TresysTechnology/refpolicy/files/refpolicy-${PV}.tar.bz2"
448
449 diff --git a/eclass/subversion.eclass b/eclass/subversion.eclass
450 index f0f3379..c45c725 100644
451 --- a/eclass/subversion.eclass
452 +++ b/eclass/subversion.eclass
453 @@ -343,7 +343,7 @@ subversion_fetch() {
454 mkdir -p "${S}"
455
456 # export to the ${WORKDIR}
457 - #* "svn export" has a bug. see http://bugs.gentoo.org/119236
458 + #* "svn export" has a bug. see https://bugs.gentoo.org/119236
459 #* svn export . "${S}" || die "${ESVN}: can't export to ${S}."
460 rsync -rlpgo --exclude=".svn/" . "${S}" || die "${ESVN}: can't export to ${S}."
461 fi
462
463 diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass
464 index f135060..cb2b4ad 100644
465 --- a/eclass/toolchain-binutils.eclass
466 +++ b/eclass/toolchain-binutils.eclass
467 @@ -76,7 +76,7 @@ add_src_uri() {
468 else
469 a+=".bz2"
470 fi
471 - set -- mirror://gentoo http://dev.gentoo.org/~vapier/dist
472 + set -- mirror://gentoo https://dev.gentoo.org/~vapier/dist
473 SRC_URI="${SRC_URI} ${@/%//${a}}"
474 }
475 add_src_uri binutils-${BVER}-patches-${PATCHVER}.tar ${PATCHVER}
476 @@ -210,7 +210,7 @@ _eprefix_init() {
477
478 # Intended for ebuilds to override to set their own versioning information.
479 toolchain-binutils_bugurl() {
480 - printf "http://bugs.gentoo.org/"
481 + printf "https://bugs.gentoo.org/"
482 }
483 toolchain-binutils_pkgversion() {
484 printf "Gentoo ${BVER}"
485
486 diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
487 index 19a1cd8..b6d1ab0 100644
488 --- a/eclass/toolchain-funcs.eclass
489 +++ b/eclass/toolchain-funcs.eclass
490 @@ -825,7 +825,7 @@ gen_usr_ldscript() {
491 redirects the linker to the real lib. And yes, this works in the cross-
492 compiling scenario as the sysroot-ed linker will prepend the real path.
493
494 - See bug http://bugs.gentoo.org/4411 for more info.
495 + See bug https://bugs.gentoo.org/4411 for more info.
496 */
497 ${output_format}
498 GROUP ( ${EPREFIX}/${libdir}/${tlib} )
499
500 diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
501 index d93f51d..c8d547d 100644
502 --- a/eclass/toolchain.eclass
503 +++ b/eclass/toolchain.eclass
504 @@ -238,7 +238,7 @@ S=$(
505 gentoo_urls() {
506 local devspace="HTTP~vapier/dist/URI HTTP~rhill/dist/URI
507 HTTP~zorry/patches/gcc/URI HTTP~blueness/dist/URI"
508 - devspace=${devspace//HTTP/http:\/\/dev.gentoo.org\/}
509 + devspace=${devspace//HTTP/https:\/\/dev.gentoo.org\/}
510 echo mirror://gentoo/$1 ${devspace//URI/$1}
511 }
512
513 @@ -1617,7 +1617,7 @@ toolchain_src_install() {
514 # We remove the generated fixincludes, as they can cause things to break
515 # (ncurses, openssl, etc). We do not prevent them from being built, as
516 # in the following commit which we revert:
517 - # http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?r1=1.647&r2=1.648
518 + # https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?r1=1.647&r2=1.648
519 # This is because bsd userland needs fixedincludes to build gcc, while
520 # linux does not. Both can dispose of them afterwards.
521 while read x ; do
522 @@ -1957,7 +1957,7 @@ toolchain_pkg_postinst() {
523 echo
524 ewarn "You might want to review the GCC upgrade guide when moving between"
525 ewarn "major versions (like 4.2 to 4.3):"
526 - ewarn "http://www.gentoo.org/doc/en/gcc-upgrading.xml"
527 + ewarn "https://www.gentoo.org/doc/en/gcc-upgrading.xml"
528 echo
529
530 # Clean up old paths
531
532 diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass
533 index 9aacf65..7ff0068 100644
534 --- a/eclass/unpacker.eclass
535 +++ b/eclass/unpacker.eclass
536 @@ -212,7 +212,7 @@ unpack_makeself() {
537 eerror "I'm sorry, but I was unable to support the Makeself file."
538 eerror "The version I detected was '${ver}'."
539 eerror "Please file a bug about the file ${src##*/} at"
540 - eerror "http://bugs.gentoo.org/ so that support can be added."
541 + eerror "https://bugs.gentoo.org/ so that support can be added."
542 die "makeself version '${ver}' not supported"
543 ;;
544 esac
545
546 diff --git a/eclass/vim-plugin.eclass b/eclass/vim-plugin.eclass
547 index 4da8bd3..7779cd5 100644
548 --- a/eclass/vim-plugin.eclass
549 +++ b/eclass/vim-plugin.eclass
550 @@ -17,7 +17,7 @@ DEPEND="|| ( >=app-editors/vim-${VIM_PLUGIN_VIM_VERSION}
551 RDEPEND="${DEPEND}"
552 if [[ ${PV} != 9999* ]] ; then
553 SRC_URI="mirror://gentoo/${P}.tar.bz2
554 - http://dev.gentoo.org/~radhermit/vim/${P}.tar.bz2"
555 + https://dev.gentoo.org/~radhermit/vim/${P}.tar.bz2"
556 fi
557 SLOT="0"
558
559
560 diff --git a/eclass/vim-spell.eclass b/eclass/vim-spell.eclass
561 index 05c38da..60ae8bb 100644
562 --- a/eclass/vim-spell.eclass
563 +++ b/eclass/vim-spell.eclass
564 @@ -36,7 +36,7 @@
565 # files):
566 #
567 # <?xml version="1.0" encoding="UTF-8"?>
568 -# <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
569 +# <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
570 # <pkgmetadata>
571 # <herd>vim</herd>
572 # <maintainer>
573
574 diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass
575 index 1dddec1..d14d922 100644
576 --- a/eclass/webapp.eclass
577 +++ b/eclass/webapp.eclass
578 @@ -78,7 +78,7 @@ webapp_checkfileexists() {
579 if [[ ! -e "${my_prefix}${1}" ]]; then
580 msg="ebuild fault: file '${1}' not found"
581 eerror "$msg"
582 - eerror "Please report this as a bug at http://bugs.gentoo.org/"
583 + eerror "Please report this as a bug at https://bugs.gentoo.org/"
584 die "$msg"
585 fi
586 }
587 @@ -338,12 +338,12 @@ webapp_src_preinst() {
588 eerror "This ebuild did not call webapp_pkg_setup() at the beginning"
589 eerror "of the pkg_setup() function"
590 eerror
591 - eerror "Please log a bug on http://bugs.gentoo.org"
592 + eerror "Please log a bug on https://bugs.gentoo.org"
593 eerror
594 eerror "You should use emerge -C to remove this package, as the"
595 eerror "installation is incomplete"
596 eerror
597 - die "Ebuild did not call webapp_pkg_setup() - report to http://bugs.gentoo.org"
598 + die "Ebuild did not call webapp_pkg_setup() - report to https://bugs.gentoo.org"
599 fi
600
601 # Hint, see the webapp_read_config() function to find where these are
602 @@ -473,12 +473,12 @@ webapp_pkg_postinst() {
603 eerror "This ebuild did not call webapp_src_install() at the end"
604 eerror "of the src_install() function"
605 eerror
606 - eerror "Please log a bug on http://bugs.gentoo.org"
607 + eerror "Please log a bug on https://bugs.gentoo.org"
608 eerror
609 eerror "You should use emerge -C to remove this package, as the"
610 eerror "installation is incomplete"
611 eerror
612 - die "Ebuild did not call webapp_src_install() - report to http://bugs.gentoo.org"
613 + die "Ebuild did not call webapp_src_install() - report to https://bugs.gentoo.org"
614 fi
615
616 if has vhosts ${IUSE}; then