From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 25 Sep 2015 07:11:26 +0000 (UTC) [thread overview]
Message-ID: <1443165082.0fb6e70c611fd2ead2bfe7a9ecdfb43fd3bfae47.jlec@gentoo> (raw)
commit: 0fb6e70c611fd2ead2bfe7a9ecdfb43fd3bfae47
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 25 06:13:03 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Sep 25 07:11:22 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fb6e70c
eclass: gentoo.org has https per default
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
eclass/ant-tasks.eclass | 12 ++++++------
eclass/apache-2.eclass | 4 ++--
eclass/common-lisp-common-3.eclass | 2 +-
eclass/cron.eclass | 2 +-
eclass/emul-linux-x86.eclass | 6 +++---
eclass/eutils.eclass | 6 +++---
eclass/games.eclass | 2 +-
eclass/gnatbuild.eclass | 2 +-
eclass/gnome.org.eclass | 2 +-
eclass/gst-plugins10.eclass | 4 ++--
eclass/gstreamer.eclass | 4 ++--
eclass/java-utils-2.eclass | 6 +++---
eclass/kde4-base.eclass | 2 +-
eclass/kernel-2.eclass | 2 +-
eclass/mozilla-launcher.eclass | 6 +++---
eclass/mysql-multilib.eclass | 6 +++---
eclass/mysql-v2.eclass | 6 +++---
eclass/nvidia-driver.eclass | 2 +-
eclass/qmail.eclass | 2 +-
eclass/ruby-ng.eclass | 2 +-
eclass/selinux-policy-2.eclass | 2 +-
eclass/subversion.eclass | 2 +-
eclass/toolchain-binutils.eclass | 4 ++--
eclass/toolchain-funcs.eclass | 2 +-
eclass/toolchain.eclass | 6 +++---
eclass/unpacker.eclass | 2 +-
eclass/vim-plugin.eclass | 2 +-
eclass/vim-spell.eclass | 2 +-
eclass/webapp.eclass | 10 +++++-----
29 files changed, 56 insertions(+), 56 deletions(-)
diff --git a/eclass/ant-tasks.eclass b/eclass/ant-tasks.eclass
index fe9405d..0b7293f 100644
--- a/eclass/ant-tasks.eclass
+++ b/eclass/ant-tasks.eclass
@@ -63,12 +63,12 @@ ANT_TASK_PV="${PV}"
if [[ ${PV} == *beta2* ]]; then
MY_PV=${PV/_beta2/beta}
UPSTREAM_PREFIX="http://people.apache.org/dist/ant/v1.7.1beta2/src"
- GENTOO_PREFIX="http://dev.gentoo.org/~caster/distfiles"
+ GENTOO_PREFIX="https://dev.gentoo.org/~caster/distfiles"
ANT_TASK_PV=$(get_version_component_range 1-3)
elif [[ ${PV} == *_rc* ]]; then
MY_PV=${PV/_rc/RC}
- UPSTREAM_PREFIX="http://dev.gentoo.org/~caster/distfiles"
- GENTOO_PREFIX="http://dev.gentoo.org/~caster/distfiles"
+ UPSTREAM_PREFIX="https://dev.gentoo.org/~caster/distfiles"
+ GENTOO_PREFIX="https://dev.gentoo.org/~caster/distfiles"
ANT_TASK_PV=$(get_version_component_range 1-3)
else
# default for final releases
@@ -76,13 +76,13 @@ else
UPSTREAM_PREFIX="mirror://apache/ant/source"
case ${PV} in
1.9.*)
- GENTOO_PREFIX="http://dev.gentoo.org/~tomwij/files/dist"
+ GENTOO_PREFIX="https://dev.gentoo.org/~tomwij/files/dist"
;;
1.8.4)
- GENTOO_PREFIX="http://dev.gentoo.org/~sera/distfiles"
+ GENTOO_PREFIX="https://dev.gentoo.org/~sera/distfiles"
;;
*)
- GENTOO_PREFIX="http://dev.gentoo.org/~caster/distfiles"
+ GENTOO_PREFIX="https://dev.gentoo.org/~caster/distfiles"
;;
esac
fi
diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass
index 549b43a..d062152 100644
--- a/eclass/apache-2.eclass
+++ b/eclass/apache-2.eclass
@@ -71,7 +71,7 @@ esac
[[ -n "$GENTOO_PATCH_A" ]] || GENTOO_PATCH_A="${GENTOO_PATCHNAME}-${GENTOO_PATCHSTAMP}.tar.bz2"
SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2
- http://dev.gentoo.org/~${GENTOO_DEVELOPER}/dist/apache/${GENTOO_PATCH_A}"
+ https://dev.gentoo.org/~${GENTOO_DEVELOPER}/dist/apache/${GENTOO_PATCH_A}"
# @VARIABLE: IUSE_MPMS_FORK
# @DESCRIPTION:
@@ -365,7 +365,7 @@ check_upgrade() {
eerror "(${EROOT}etc/apache2/apache2-builtin-mods) exists on your"
eerror "system."
eerror
- eerror "Please read http://www.gentoo.org/doc/en/apache-upgrading.xml"
+ eerror "Please read https://www.gentoo.org/doc/en/apache-upgrading.xml"
eerror "for detailed information how to convert this file to the new"
eerror "APACHE2_MODULES USE_EXPAND variable."
eerror
diff --git a/eclass/common-lisp-common-3.eclass b/eclass/common-lisp-common-3.eclass
index b652b83..f8d62cd 100644
--- a/eclass/common-lisp-common-3.eclass
+++ b/eclass/common-lisp-common-3.eclass
@@ -32,7 +32,7 @@ do-debian-credits() {
# The following `impl-*-timestamp-hack' functions SHOULD NOT be used
# outside of this eclass.
-# Bug http://bugs.gentoo.org/show_bug.cgi?id=16162 should remove the
+# Bug https://bugs.gentoo.org/show_bug.cgi?id=16162 should remove the
# need for this hack.
impl-save-timestamp-hack() {
diff --git a/eclass/cron.eclass b/eclass/cron.eclass
index 57ab446..8395d41 100644
--- a/eclass/cron.eclass
+++ b/eclass/cron.eclass
@@ -156,6 +156,6 @@ cron_pkg_postinst() {
einfo "You may wish to read the Gentoo Linux Cron Guide, which can be"
einfo "found online at:"
- einfo " http://www.gentoo.org/doc/en/cron-guide.xml"
+ einfo " https://www.gentoo.org/doc/en/cron-guide.xml"
echo
}
diff --git a/eclass/emul-linux-x86.eclass b/eclass/emul-linux-x86.eclass
index 80f6faf..18849c6 100644
--- a/eclass/emul-linux-x86.eclass
+++ b/eclass/emul-linux-x86.eclass
@@ -18,9 +18,9 @@ case "${EAPI:-0}" in
esac
DESCRIPTION="Provides precompiled 32bit libraries"
-#HOMEPAGE="http://amd64.gentoo.org/emul/content.xml"
-HOMEPAGE="http://dev.gentoo.org/~pacho/emul.html"
-SRC_URI="http://dev.gentoo.org/~pacho/emul/${P}.tar.xz"
+#HOMEPAGE="https://amd64.gentoo.org/emul/content.xml"
+HOMEPAGE="https://dev.gentoo.org/~pacho/emul.html"
+SRC_URI="https://dev.gentoo.org/~pacho/emul/${P}.tar.xz"
IUSE="+development"
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass
index fecd375..b7f0970 100644
--- a/eclass/eutils.eclass
+++ b/eclass/eutils.eclass
@@ -55,11 +55,11 @@ ebeep() {
else
ebeep() {
- ewarn "QA Notice: ebeep is not defined in EAPI=${EAPI}, please file a bug at http://bugs.gentoo.org"
+ ewarn "QA Notice: ebeep is not defined in EAPI=${EAPI}, please file a bug at https://bugs.gentoo.org"
}
epause() {
- ewarn "QA Notice: epause is not defined in EAPI=${EAPI}, please file a bug at http://bugs.gentoo.org"
+ ewarn "QA Notice: epause is not defined in EAPI=${EAPI}, please file a bug at https://bugs.gentoo.org"
}
fi
@@ -1402,7 +1402,7 @@ built_with_use() {
# Many configure scripts wrongly bail when a C++ compiler could not be
# detected. If dir is not specified, then it defaults to ${S}.
#
-# http://bugs.gentoo.org/73450
+# https://bugs.gentoo.org/73450
epunt_cxx() {
local dir=$1
[[ -z ${dir} ]] && dir=${S}
diff --git a/eclass/games.eclass b/eclass/games.eclass
index f9721d7..03421b3 100644
--- a/eclass/games.eclass
+++ b/eclass/games.eclass
@@ -343,7 +343,7 @@ games_pkg_postinst() {
esac
echo
einfo "For more info about Gentoo gaming in general, see our website:"
- einfo " http://games.gentoo.org/"
+ einfo " https://games.gentoo.org/"
echo
fi
}
diff --git a/eclass/gnatbuild.eclass b/eclass/gnatbuild.eclass
index da8986a..43f7e59 100644
--- a/eclass/gnatbuild.eclass
+++ b/eclass/gnatbuild.eclass
@@ -246,7 +246,7 @@ do_gnat_config() {
elog "Ada handling in Gentoo allows you to have multiple gnat variants"
elog "installed in parallel and automatically manage Ada libs."
elog "Please take a look at the Ada project page for some documentation:"
- elog "http://www.gentoo.org/proj/en/prog_lang/ada/index.xml"
+ elog "https://www.gentoo.org/proj/en/prog_lang/ada/index.xml"
}
diff --git a/eclass/gnome.org.eclass b/eclass/gnome.org.eclass
index eb84e1b..3eeb4ef 100644
--- a/eclass/gnome.org.eclass
+++ b/eclass/gnome.org.eclass
@@ -27,7 +27,7 @@ else
fi
# Even though xz-utils are in @system, they must still be added to DEPEND; see
-# http://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
+# https://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
if [[ ${GNOME_TARBALL_SUFFIX} == "xz" ]]; then
DEPEND="${DEPEND} app-arch/xz-utils"
fi
diff --git a/eclass/gst-plugins10.eclass b/eclass/gst-plugins10.eclass
index 0a6b0db..1d4f4f7 100644
--- a/eclass/gst-plugins10.eclass
+++ b/eclass/gst-plugins10.eclass
@@ -79,7 +79,7 @@ else
fi
# Even though xz-utils are in @system, they must still be added to DEPEND; see
-# http://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
+# https://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
if [[ ${GST_TARBALL_SUFFIX} == "xz" ]]; then
DEPEND="${DEPEND} app-arch/xz-utils"
fi
@@ -254,7 +254,7 @@ gst-plugins10_src_configure() {
einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..."
econf \
--with-package-name="Gentoo GStreamer ebuild" \
- --with-package-origin="http://www.gentoo.org" \
+ --with-package-origin="https://www.gentoo.org" \
${gst_conf} $@
}
diff --git a/eclass/gstreamer.eclass b/eclass/gstreamer.eclass
index aef8bf5..0163493 100644
--- a/eclass/gstreamer.eclass
+++ b/eclass/gstreamer.eclass
@@ -58,7 +58,7 @@ esac
: ${GST_TARBALL_SUFFIX:="xz"}
# Even though xz-utils are in @system, they must still be added to DEPEND; see
-# http://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
+# https://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
if [[ ${GST_TARBALL_SUFFIX} == "xz" ]]; then
DEPEND="${DEPEND} app-arch/xz-utils"
fi
@@ -236,7 +236,7 @@ gstreamer_multilib_src_configure() {
einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..."
econf \
--with-package-name="Gentoo GStreamer ebuild" \
- --with-package-origin="http://www.gentoo.org" \
+ --with-package-origin="https://www.gentoo.org" \
"${gst_conf[@]}" "${@}"
}
diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass
index 6e33311..9b67097 100644
--- a/eclass/java-utils-2.eclass
+++ b/eclass/java-utils-2.eclass
@@ -2102,7 +2102,7 @@ java-pkg_init() {
}
# People do all kinds of weird things.
- # http://forums.gentoo.org/viewtopic-p-3943166.html
+ # https://forums.gentoo.org/viewtopic-p-3943166.html
local silence="${SILENCE_JAVA_OPTIONS_WARNING}"
local accept="${I_WANT_GLOBAL_JAVA_OPTIONS}"
if [[ -n ${_JAVA_OPTIONS} && -z ${accept} && -z ${silence} ]]; then
@@ -2765,7 +2765,7 @@ java-pkg_ensure-dep() {
eqawarn "java-pkg_ensure-dep: ${dev_error}"
# eerror "Because you have ${target_pkg} installed,"
# eerror "the package will build without problems, but please"
-# eerror "report this to http://bugs.gentoo.org."
+# eerror "report this to https://bugs.gentoo.org."
# fi
elif [[ ${limit_to} != build && ! ( "${RDEPEND}${PDEPEND}" =~ ${stripped_pkg} ) ]]; then
dev_error="The ebuild is attempting to use ${target_pkg}, which is not "
@@ -2776,7 +2776,7 @@ java-pkg_ensure-dep() {
eqawarn "java-pkg_ensure-dep: ${dev_error}"
# eerror "The package will build without problems, but may fail to run"
# eerror "if you don't have ${target_pkg} installed,"
-# eerror "so please report this to http://bugs.gentoo.org."
+# eerror "so please report this to https://bugs.gentoo.org."
# fi
fi
}
diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass
index 8b9226a..477a544 100644
--- a/eclass/kde4-base.eclass
+++ b/eclass/kde4-base.eclass
@@ -433,7 +433,7 @@ _calculate_src_uri() {
4.4.20*)
# KDEPIM 4.4 no-akonadi branch, special case
# TODO: Remove this part when KDEPIM 4.4 gets out of the tree
- SRC_URI="http://dev.gentoo.org/~dilfridge/distfiles/${_kmname_pv}.tar.xz" ;;
+ SRC_URI="https://dev.gentoo.org/~dilfridge/distfiles/${_kmname_pv}.tar.xz" ;;
4.?.[6-9]? | 4.??.[6-9]?)
# Unstable KDE SC releases
SRC_URI="mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.xz" ;;
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass
index 50f318c..94231ec 100644
--- a/eclass/kernel-2.eclass
+++ b/eclass/kernel-2.eclass
@@ -102,7 +102,7 @@ if [[ ${CTARGET} == ${CHOST} && ${CATEGORY/cross-} != ${CATEGORY} ]]; then
export CTARGET=${CATEGORY/cross-}
fi
-HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/ ${HOMEPAGE}"
+HOMEPAGE="https://www.kernel.org/ https://www.gentoo.org/ ${HOMEPAGE}"
: ${LICENSE:="GPL-2"}
# This is the latest KV_PATCH of the deblob tool available from the
diff --git a/eclass/mozilla-launcher.eclass b/eclass/mozilla-launcher.eclass
index 0d70638..11c3fdb 100644
--- a/eclass/mozilla-launcher.eclass
+++ b/eclass/mozilla-launcher.eclass
@@ -87,7 +87,7 @@ install_mozilla_launcher_stub() {
#
# Stub script to run mozilla-launcher. We used to use a symlink here
# but OOo brokenness makes it necessary to use a stub instead:
-# http://bugs.gentoo.org/show_bug.cgi?id=78890
+# https://bugs.gentoo.org/show_bug.cgi?id=78890
export MOZILLA_LAUNCHER=${appname}
export MOZILLA_LIBDIR=${libdir}
@@ -101,7 +101,7 @@ EOF
#
# Stub script to run mozilla-launcher. We used to use a symlink here
# but OOo brokenness makes it necessary to use a stub instead:
-# http://bugs.gentoo.org/show_bug.cgi?id=78890
+# https://bugs.gentoo.org/show_bug.cgi?id=78890
export MOZILLA_LAUNCHER=${appname}
export MOZILLA_LIBDIR=${libdir}
@@ -117,7 +117,7 @@ EOF
warn_mozilla_launcher_stub() {
elog "Not all locales support the disabling of pango."
elog "If your locale does not support disabling pango,"
- elog "please open a bug report on http://bugs.gentoo.org"
+ elog "please open a bug report on https://bugs.gentoo.org"
elog "Then we can filter around the problem with those"
elog "specific locales."
}
diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass
index ff701df..da5594b 100644
--- a/eclass/mysql-multilib.eclass
+++ b/eclass/mysql-multilib.eclass
@@ -170,9 +170,9 @@ SRC_URI="${SERVER_URI}"
if [[ ${MY_EXTRAS_VER} != "live" && ${MY_EXTRAS_VER} != "none" ]]; then
SRC_URI="${SRC_URI}
mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
- http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
- http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
- http://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2"
+ https://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+ https://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+ https://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2"
fi
DESCRIPTION="A fast, multi-threaded, multi-user SQL database server"
diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass
index b317be4..8d38939 100644
--- a/eclass/mysql-v2.eclass
+++ b/eclass/mysql-v2.eclass
@@ -184,9 +184,9 @@ if [[ ${MY_EXTRAS_VER} != "live" && ${MY_EXTRAS_VER} != "none" ]]; then
SRC_URI="${SRC_URI}
mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
- http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
- http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
- http://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2"
+ https://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+ https://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+ https://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2"
fi
DESCRIPTION="A fast, multi-threaded, multi-user SQL database server"
diff --git a/eclass/nvidia-driver.eclass b/eclass/nvidia-driver.eclass
index 44ef003..647c32a 100644
--- a/eclass/nvidia-driver.eclass
+++ b/eclass/nvidia-driver.eclass
@@ -21,7 +21,7 @@ DEPEND="sys-apps/pciutils"
DISABLE_AUTOFORMATTING="yes"
DOC_CONTENTS="You must be in the video group to use the NVIDIA device
For more info, read the docs at
-http://www.gentoo.org/doc/en/nvidia-guide.xml#doc_chap3_sect6
+https://www.gentoo.org/doc/en/nvidia-guide.xml#doc_chap3_sect6
This ebuild installs a kernel module and X driver. Both must
match explicitly in their version. This means, if you restart
diff --git a/eclass/qmail.eclass b/eclass/qmail.eclass
index eb6e012..e6694b0 100644
--- a/eclass/qmail.eclass
+++ b/eclass/qmail.eclass
@@ -475,7 +475,7 @@ qmail_config_fast() {
eerror
eerror "Cannot determine your fully-qualified hostname"
eerror "Please setup your /etc/hosts as described in"
- eerror "http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=1&chap=8#doc_chap2_sect4"
+ eerror "https://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=1&chap=8#doc_chap2_sect4"
eerror
die "cannot determine FQDN"
fi
diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass
index 4b99b39..d560ba8 100644
--- a/eclass/ruby-ng.eclass
+++ b/eclass/ruby-ng.eclass
@@ -369,7 +369,7 @@ _ruby_each_implementation() {
eerror "You need to select at least one compatible Ruby installation target via RUBY_TARGETS in make.conf."
eerror "Compatible targets for this package are: ${USE_RUBY}"
eerror
- eerror "See http://www.gentoo.org/proj/en/prog_lang/ruby/index.xml#doc_chap3 for more information."
+ eerror "See https://www.gentoo.org/proj/en/prog_lang/ruby/index.xml#doc_chap3 for more information."
eerror
die "No compatible Ruby target selected."
fi
diff --git a/eclass/selinux-policy-2.eclass b/eclass/selinux-policy-2.eclass
index 92f2f82..eb27c89 100644
--- a/eclass/selinux-policy-2.eclass
+++ b/eclass/selinux-policy-2.eclass
@@ -90,7 +90,7 @@ HOMEPAGE="https://wiki.gentoo.org/wiki/Project:SELinux"
if [[ -n ${BASEPOL} ]] && [[ "${BASEPOL}" != "9999" ]];
then
SRC_URI="https://raw.githubusercontent.com/wiki/TresysTechnology/refpolicy/files/refpolicy-${PV}.tar.bz2
- http://dev.gentoo.org/~swift/patches/selinux-base-policy/patchbundle-selinux-base-policy-${BASEPOL}.tar.bz2"
+ https://dev.gentoo.org/~swift/patches/selinux-base-policy/patchbundle-selinux-base-policy-${BASEPOL}.tar.bz2"
elif [[ "${BASEPOL}" != "9999" ]];
then
SRC_URI="https://raw.githubusercontent.com/wiki/TresysTechnology/refpolicy/files/refpolicy-${PV}.tar.bz2"
diff --git a/eclass/subversion.eclass b/eclass/subversion.eclass
index f0f3379..c45c725 100644
--- a/eclass/subversion.eclass
+++ b/eclass/subversion.eclass
@@ -343,7 +343,7 @@ subversion_fetch() {
mkdir -p "${S}"
# export to the ${WORKDIR}
- #* "svn export" has a bug. see http://bugs.gentoo.org/119236
+ #* "svn export" has a bug. see https://bugs.gentoo.org/119236
#* svn export . "${S}" || die "${ESVN}: can't export to ${S}."
rsync -rlpgo --exclude=".svn/" . "${S}" || die "${ESVN}: can't export to ${S}."
fi
diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass
index f135060..cb2b4ad 100644
--- a/eclass/toolchain-binutils.eclass
+++ b/eclass/toolchain-binutils.eclass
@@ -76,7 +76,7 @@ add_src_uri() {
else
a+=".bz2"
fi
- set -- mirror://gentoo http://dev.gentoo.org/~vapier/dist
+ set -- mirror://gentoo https://dev.gentoo.org/~vapier/dist
SRC_URI="${SRC_URI} ${@/%//${a}}"
}
add_src_uri binutils-${BVER}-patches-${PATCHVER}.tar ${PATCHVER}
@@ -210,7 +210,7 @@ _eprefix_init() {
# Intended for ebuilds to override to set their own versioning information.
toolchain-binutils_bugurl() {
- printf "http://bugs.gentoo.org/"
+ printf "https://bugs.gentoo.org/"
}
toolchain-binutils_pkgversion() {
printf "Gentoo ${BVER}"
diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
index 19a1cd8..b6d1ab0 100644
--- a/eclass/toolchain-funcs.eclass
+++ b/eclass/toolchain-funcs.eclass
@@ -825,7 +825,7 @@ gen_usr_ldscript() {
redirects the linker to the real lib. And yes, this works in the cross-
compiling scenario as the sysroot-ed linker will prepend the real path.
- See bug http://bugs.gentoo.org/4411 for more info.
+ See bug https://bugs.gentoo.org/4411 for more info.
*/
${output_format}
GROUP ( ${EPREFIX}/${libdir}/${tlib} )
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index d93f51d..c8d547d 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -238,7 +238,7 @@ S=$(
gentoo_urls() {
local devspace="HTTP~vapier/dist/URI HTTP~rhill/dist/URI
HTTP~zorry/patches/gcc/URI HTTP~blueness/dist/URI"
- devspace=${devspace//HTTP/http:\/\/dev.gentoo.org\/}
+ devspace=${devspace//HTTP/https:\/\/dev.gentoo.org\/}
echo mirror://gentoo/$1 ${devspace//URI/$1}
}
@@ -1617,7 +1617,7 @@ toolchain_src_install() {
# We remove the generated fixincludes, as they can cause things to break
# (ncurses, openssl, etc). We do not prevent them from being built, as
# in the following commit which we revert:
- # http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?r1=1.647&r2=1.648
+ # https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?r1=1.647&r2=1.648
# This is because bsd userland needs fixedincludes to build gcc, while
# linux does not. Both can dispose of them afterwards.
while read x ; do
@@ -1957,7 +1957,7 @@ toolchain_pkg_postinst() {
echo
ewarn "You might want to review the GCC upgrade guide when moving between"
ewarn "major versions (like 4.2 to 4.3):"
- ewarn "http://www.gentoo.org/doc/en/gcc-upgrading.xml"
+ ewarn "https://www.gentoo.org/doc/en/gcc-upgrading.xml"
echo
# Clean up old paths
diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass
index 9aacf65..7ff0068 100644
--- a/eclass/unpacker.eclass
+++ b/eclass/unpacker.eclass
@@ -212,7 +212,7 @@ unpack_makeself() {
eerror "I'm sorry, but I was unable to support the Makeself file."
eerror "The version I detected was '${ver}'."
eerror "Please file a bug about the file ${src##*/} at"
- eerror "http://bugs.gentoo.org/ so that support can be added."
+ eerror "https://bugs.gentoo.org/ so that support can be added."
die "makeself version '${ver}' not supported"
;;
esac
diff --git a/eclass/vim-plugin.eclass b/eclass/vim-plugin.eclass
index 4da8bd3..7779cd5 100644
--- a/eclass/vim-plugin.eclass
+++ b/eclass/vim-plugin.eclass
@@ -17,7 +17,7 @@ DEPEND="|| ( >=app-editors/vim-${VIM_PLUGIN_VIM_VERSION}
RDEPEND="${DEPEND}"
if [[ ${PV} != 9999* ]] ; then
SRC_URI="mirror://gentoo/${P}.tar.bz2
- http://dev.gentoo.org/~radhermit/vim/${P}.tar.bz2"
+ https://dev.gentoo.org/~radhermit/vim/${P}.tar.bz2"
fi
SLOT="0"
diff --git a/eclass/vim-spell.eclass b/eclass/vim-spell.eclass
index 05c38da..60ae8bb 100644
--- a/eclass/vim-spell.eclass
+++ b/eclass/vim-spell.eclass
@@ -36,7 +36,7 @@
# files):
#
# <?xml version="1.0" encoding="UTF-8"?>
-# <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+# <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
# <pkgmetadata>
# <herd>vim</herd>
# <maintainer>
diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass
index 1dddec1..d14d922 100644
--- a/eclass/webapp.eclass
+++ b/eclass/webapp.eclass
@@ -78,7 +78,7 @@ webapp_checkfileexists() {
if [[ ! -e "${my_prefix}${1}" ]]; then
msg="ebuild fault: file '${1}' not found"
eerror "$msg"
- eerror "Please report this as a bug at http://bugs.gentoo.org/"
+ eerror "Please report this as a bug at https://bugs.gentoo.org/"
die "$msg"
fi
}
@@ -338,12 +338,12 @@ webapp_src_preinst() {
eerror "This ebuild did not call webapp_pkg_setup() at the beginning"
eerror "of the pkg_setup() function"
eerror
- eerror "Please log a bug on http://bugs.gentoo.org"
+ eerror "Please log a bug on https://bugs.gentoo.org"
eerror
eerror "You should use emerge -C to remove this package, as the"
eerror "installation is incomplete"
eerror
- die "Ebuild did not call webapp_pkg_setup() - report to http://bugs.gentoo.org"
+ die "Ebuild did not call webapp_pkg_setup() - report to https://bugs.gentoo.org"
fi
# Hint, see the webapp_read_config() function to find where these are
@@ -473,12 +473,12 @@ webapp_pkg_postinst() {
eerror "This ebuild did not call webapp_src_install() at the end"
eerror "of the src_install() function"
eerror
- eerror "Please log a bug on http://bugs.gentoo.org"
+ eerror "Please log a bug on https://bugs.gentoo.org"
eerror
eerror "You should use emerge -C to remove this package, as the"
eerror "installation is incomplete"
eerror
- die "Ebuild did not call webapp_src_install() - report to http://bugs.gentoo.org"
+ die "Ebuild did not call webapp_src_install() - report to https://bugs.gentoo.org"
fi
if has vhosts ${IUSE}; then
next reply other threads:[~2015-09-25 7:11 UTC|newest]
Thread overview: 6674+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-25 7:11 Justin Lecher [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-05-03 11:43 [gentoo-commits] repo/gentoo:master commit in: eclass/ Sam James
2024-05-03 11:43 Sam James
2024-05-04 19:57 Michał Górny
2024-05-04 19:57 Michał Górny
2024-05-06 4:39 Sam James
2024-05-06 17:11 Ionen Wolkens
2024-05-06 17:28 Ulrich Müller
2024-05-06 17:28 Ulrich Müller
2024-05-07 7:57 Andreas K. Hüttel
2024-05-08 8:06 Ulrich Müller
2024-05-09 19:54 Conrad Kostecki
2024-05-09 19:54 Conrad Kostecki
2024-05-10 17:28 Sam James
2024-05-10 17:28 Sam James
2024-05-10 17:28 Sam James
2024-05-10 17:28 Sam James
2024-05-10 17:28 Sam James
2024-05-11 0:55 Sam James
2024-05-11 1:58 Sam James
2024-05-11 6:21 Hans de Graaff
2024-05-11 6:44 Joonas Niilola
2024-05-11 13:39 Michał Górny
2024-05-12 4:51 Sam James
2024-05-13 7:07 Miroslav Šulc
2024-05-13 8:35 Florian Schmaus
2024-05-13 13:22 Michael Orlitzky
2024-05-13 13:22 Michael Orlitzky
2024-05-13 13:22 Michael Orlitzky
2024-05-13 13:22 Michael Orlitzky
2024-05-13 21:53 Sam James
2024-05-14 8:20 Florian Schmaus
2024-05-14 9:19 Florian Schmaus
2024-05-15 14:20 Michał Górny
2024-05-15 18:02 Michał Górny
2024-05-17 6:25 Michał Górny
2024-05-17 12:07 Andrew Ammerlaan
2024-05-17 12:07 Andrew Ammerlaan
2024-05-17 12:07 Andrew Ammerlaan
2024-05-17 23:05 Ionen Wolkens
2024-05-17 23:05 Ionen Wolkens
2024-05-18 3:50 Benda XU
2024-05-18 13:25 Michał Górny
2024-05-20 17:02 Michał Górny
2024-05-20 17:02 Michał Górny
2024-05-20 17:02 Michał Górny
2024-05-20 17:02 Michał Górny
2024-05-20 17:02 Michał Górny
2024-05-20 17:02 Michał Górny
2024-05-20 17:02 Michał Górny
2024-05-20 17:02 Michał Górny
2024-05-21 8:58 Florian Schmaus
2024-05-21 8:58 Florian Schmaus
2024-05-21 8:58 Florian Schmaus
2024-05-22 1:44 Sam James
2024-05-25 5:55 Sam James
2024-05-25 8:35 Michał Górny
2024-05-26 8:18 Miroslav Šulc
2024-05-31 12:42 Michał Górny
2024-06-01 6:19 Hans de Graaff
2024-06-01 6:19 Hans de Graaff
2024-06-01 6:19 Hans de Graaff
2024-06-01 21:11 Alfredo Tupone
2024-06-01 21:34 Alfredo Tupone
2024-06-02 8:22 Ionen Wolkens
2024-06-06 20:37 Mike Gilbert
2024-06-08 3:53 Ulrich Müller
2024-06-08 3:53 Ulrich Müller
2024-06-08 10:29 Michał Górny
2024-06-08 15:47 Michał Górny
2024-06-10 12:46 Joonas Niilola
2024-06-10 14:23 Ulrich Müller
2024-06-10 14:23 Ulrich Müller
2024-06-12 10:24 Arthur Zamarin
2024-06-12 13:20 James Le Cuirot
2024-06-12 13:20 James Le Cuirot
2024-06-12 14:27 Patrick Lauer
2024-06-12 16:36 Patrick Lauer
2024-06-12 17:13 James Le Cuirot
2024-06-13 13:21 Miroslav Šulc
2024-06-13 18:35 Ulrich Müller
2024-06-13 18:35 Ulrich Müller
2024-06-13 20:43 Andreas Sturmlechner
2024-06-14 10:00 Miroslav Šulc
2024-06-14 10:00 Miroslav Šulc
2024-06-14 10:00 Miroslav Šulc
2024-06-14 10:00 Miroslav Šulc
2024-06-14 10:00 Miroslav Šulc
2024-06-14 12:19 Miroslav Šulc
2024-06-14 12:26 Michał Górny
2024-06-14 12:26 Michał Górny
2024-06-14 12:26 Michał Górny
2024-06-14 12:26 Michał Górny
2024-06-14 12:26 Michał Górny
2024-06-14 12:26 Michał Górny
2024-06-14 12:26 Michał Górny
2024-06-14 12:26 Michał Górny
2024-06-15 7:58 Sam James
2024-06-15 11:01 Michał Górny
2024-06-17 0:53 Sam James
2024-06-17 9:39 James Le Cuirot
2024-06-17 17:13 Andreas Sturmlechner
2024-06-19 3:16 Andreas K. Hüttel
2024-06-20 7:29 Florian Schmaus
2024-06-20 7:29 Florian Schmaus
2024-06-20 9:57 Sam James
2024-06-23 1:00 Ionen Wolkens
2024-06-23 17:33 Michał Górny
2024-06-24 11:58 Ulrich Müller
2024-06-26 6:24 Florian Schmaus
2024-06-27 7:33 Andrew Ammerlaan
2024-06-28 8:23 Miroslav Šulc
2024-06-29 8:39 Andrew Ammerlaan
2024-06-29 8:39 Andrew Ammerlaan
2024-06-29 8:39 Andrew Ammerlaan
2024-06-30 18:27 Sam James
2024-07-02 17:49 Sam James
2024-07-03 0:54 Sam James
2024-07-03 0:59 Sam James
2024-07-03 5:30 Joonas Niilola
2024-07-05 11:03 Arthur Zamarin
2024-07-05 11:03 Arthur Zamarin
2024-07-05 11:03 Arthur Zamarin
2024-07-05 20:50 Luca Barbato
2024-07-06 11:19 Michał Górny
2024-07-07 6:45 Matthew Smith
2024-07-08 10:03 Ulrich Müller
2024-07-08 10:03 Ulrich Müller
2024-07-08 10:03 Ulrich Müller
2024-07-08 10:03 Ulrich Müller
2024-07-09 16:44 Ulrich Müller
2024-07-11 14:35 Michał Górny
2024-07-11 20:54 Ulrich Müller
2024-07-11 20:54 Ulrich Müller
2024-07-12 6:27 Sam James
2024-07-12 7:38 Sam James
2024-07-12 17:43 Ulrich Müller
2024-07-13 7:46 Michał Górny
2024-07-13 14:14 Michał Górny
2024-07-14 17:45 Florian Schmaus
2024-07-14 17:45 Florian Schmaus
2024-07-15 7:17 David Seifert
2024-07-15 7:17 David Seifert
2024-07-15 7:17 David Seifert
2024-07-15 19:18 Andrew Ammerlaan
2024-07-15 19:18 Andrew Ammerlaan
2024-07-15 19:18 Andrew Ammerlaan
2024-07-15 19:18 Andrew Ammerlaan
2024-07-15 19:18 Andrew Ammerlaan
2024-07-16 9:16 James Le Cuirot
2024-07-16 9:16 James Le Cuirot
2024-07-16 9:16 James Le Cuirot
2024-07-16 9:16 James Le Cuirot
2024-07-16 9:16 James Le Cuirot
2024-07-16 9:16 James Le Cuirot
2024-07-16 9:16 James Le Cuirot
2024-07-18 16:15 Michał Górny
2024-07-20 12:09 Ulrich Müller
2024-07-21 13:31 Andrew Ammerlaan
2024-07-21 13:31 Andrew Ammerlaan
2024-07-21 13:31 Andrew Ammerlaan
2024-07-21 15:14 Andrew Ammerlaan
2024-07-21 15:45 Andrew Ammerlaan
2024-07-22 15:09 Michał Górny
2024-07-22 15:09 Michał Górny
2024-07-22 15:09 Michał Górny
2024-07-23 10:03 Miroslav Šulc
2024-07-23 14:07 Michał Górny
2024-07-23 14:07 Michał Górny
2024-07-23 14:07 Michał Górny
2024-07-23 14:13 Michał Górny
2024-07-24 8:58 Florian Schmaus
2024-07-24 8:58 Florian Schmaus
2024-07-24 17:18 Andrew Ammerlaan
2024-07-24 17:18 Andrew Ammerlaan
2024-07-24 17:18 Andrew Ammerlaan
2024-07-26 9:00 Miroslav Šulc
2024-07-26 17:18 Ulrich Müller
2024-07-27 7:27 Michał Górny
2024-07-27 22:00 Andrew Ammerlaan
2024-07-28 17:40 Florian Schmaus
2024-07-31 0:02 Sam James
2024-08-01 7:32 Miroslav Šulc
2024-08-01 20:20 Michał Górny
2024-08-04 7:27 Sam James
2024-08-04 7:30 Andrew Ammerlaan
2024-08-04 8:28 Sam James
2024-08-06 1:46 Sam James
2024-08-06 8:47 Michał Górny
2024-08-06 8:47 Michał Górny
2024-08-06 8:47 Michał Górny
2024-08-06 8:47 Michał Górny
2024-08-06 8:47 Michał Górny
2024-08-06 8:47 Michał Górny
2024-08-06 8:47 Michał Górny
2024-08-06 8:47 Michał Górny
2024-08-06 8:47 Michał Górny
2024-08-06 8:47 Michał Górny
2024-08-06 8:47 Michał Górny
2024-08-06 8:47 Michał Górny
2024-08-06 16:39 Florian Schmaus
2024-08-07 3:03 Sam James
2024-08-07 8:58 Andrew Ammerlaan
2024-08-07 8:58 Andrew Ammerlaan
2024-08-07 9:21 Sam James
2024-08-07 9:25 Sam James
2024-08-07 9:41 Sam James
2024-08-07 15:13 Sam James
2024-08-08 9:00 James Le Cuirot
2024-08-08 10:05 Sam James
2024-08-08 10:30 Sam James
2024-08-08 10:30 Sam James
2024-08-08 10:49 Sam James
2024-08-08 14:38 James Le Cuirot
2024-08-08 16:46 Andrew Ammerlaan
2024-08-08 19:26 Michał Górny
2024-08-09 11:39 Sam James
2024-08-09 11:50 Sam James
2024-08-09 14:30 Sam James
2024-08-09 15:50 Andrew Ammerlaan
2024-08-10 14:06 Fabian Groffen
2024-08-10 17:24 Sam James
2024-08-11 20:56 Sam James
2024-08-12 1:19 Sam James
2024-08-12 1:19 Sam James
2024-08-12 1:19 Sam James
2024-08-12 1:19 Sam James
2024-08-12 19:02 Ulrich Müller
2024-08-12 19:02 Ulrich Müller
2024-08-15 17:48 Andreas Sturmlechner
2024-08-15 17:48 Andreas Sturmlechner
2024-08-15 17:48 Andreas Sturmlechner
2024-08-15 17:48 Andreas Sturmlechner
2024-08-15 17:48 Andreas Sturmlechner
2024-08-15 17:48 Andreas Sturmlechner
2024-08-15 17:48 Andreas Sturmlechner
2024-08-15 17:48 Andreas Sturmlechner
2024-08-15 20:01 Michał Górny
2024-08-15 21:18 Sam James
2024-08-15 21:24 Sam James
2024-08-16 5:55 Arthur Zamarin
2024-08-16 10:15 Arthur Zamarin
2024-08-16 17:21 Sam James
2024-08-16 17:21 Sam James
2024-08-16 17:21 Sam James
2024-08-16 17:21 Sam James
2024-08-16 17:21 Sam James
2024-08-16 17:21 Sam James
2024-08-16 17:21 Sam James
2024-08-16 17:21 Sam James
2024-08-18 17:44 Arsen Arsenović
2024-08-18 17:44 Arsen Arsenović
2024-08-18 17:44 Arsen Arsenović
2024-08-19 6:02 Viorel Munteanu
2024-08-19 18:17 Robin H. Johnson
2024-08-20 20:07 Mike Gilbert
2024-08-20 20:17 Mike Gilbert
2024-08-21 21:51 Andreas Sturmlechner
2024-08-22 11:23 Michał Górny
2024-08-22 17:00 Andreas Sturmlechner
2024-08-23 19:25 Michał Górny
2024-08-23 19:25 Michał Górny
2024-08-25 0:49 Jason Zaman
2024-08-25 15:37 Andrew Ammerlaan
2024-08-26 6:34 Andreas Sturmlechner
2024-08-26 13:04 Ulrich Müller
2024-08-26 13:04 Ulrich Müller
2024-08-26 13:04 Ulrich Müller
2024-08-26 13:04 Ulrich Müller
2024-08-30 19:10 Andrew Ammerlaan
2024-08-30 19:43 Andrew Ammerlaan
2024-08-31 8:33 Michał Górny
2024-09-01 9:59 Miroslav Šulc
2024-09-01 9:59 Miroslav Šulc
2024-09-01 9:59 Miroslav Šulc
2024-09-01 9:59 Miroslav Šulc
2024-09-01 11:05 Sam James
2024-09-01 11:05 Sam James
2024-09-01 11:05 Sam James
2024-09-01 11:05 Sam James
2024-09-03 4:22 Ionen Wolkens
2024-09-03 8:58 Sam James
2024-09-03 9:40 Sam James
2024-09-04 20:33 Michał Górny
2024-09-05 12:10 Sam James
2024-09-07 18:21 Sam James
2024-09-07 18:23 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-08 18:21 Sam James
2024-09-09 18:20 Sam James
2024-09-10 6:46 Miroslav Šulc
2024-09-10 8:54 Michał Górny
2024-09-10 12:58 Michał Górny
2024-09-10 19:11 Miroslav Šulc
2024-09-11 22:21 Sam James
2024-09-12 22:08 Sam James
2024-09-17 11:58 Andrew Ammerlaan
2024-09-17 12:13 Michał Górny
2024-09-18 15:51 Sam James
2024-09-19 22:57 Sam James
2024-09-23 12:06 Ulrich Müller
2024-09-23 15:11 Michał Górny
2024-09-24 6:41 Michał Górny
2024-09-24 11:52 Sam James
2024-09-24 18:02 Michał Górny
2024-09-24 18:02 Michał Górny
2024-09-25 4:39 Michał Górny
2024-09-25 4:51 Ulrich Müller
2024-09-25 11:12 Sam James
2024-09-25 11:12 Sam James
2024-09-25 11:12 Sam James
2024-09-25 19:29 Eli Schwartz
2024-09-29 0:18 Sam James
2024-09-29 0:18 Sam James
2024-09-29 0:18 Sam James
2024-09-29 1:07 Sam James
2024-09-29 1:07 Sam James
2024-09-29 1:13 Sam James
2024-09-29 1:13 Sam James
2024-09-29 11:22 Sam James
2024-09-29 11:22 Sam James
2024-09-29 11:22 Sam James
2024-09-29 11:28 Sam James
2024-09-30 1:52 Sam James
2024-09-30 1:52 Sam James
2024-09-30 1:52 Sam James
2024-09-30 1:52 Sam James
2024-09-30 2:02 Sam James
2024-09-30 2:02 Sam James
2024-09-30 2:02 Sam James
2024-09-30 2:15 Sam James
2024-09-30 2:15 Sam James
2024-09-30 2:20 Sam James
2024-09-30 3:02 Sam James
2024-09-30 3:03 Sam James
2024-09-30 5:57 Sam James
2024-10-01 1:11 Sam James
2024-10-01 1:46 Sam James
2024-10-01 1:58 Sam James
2024-10-01 1:58 Sam James
2024-10-01 2:06 Sam James
2024-10-01 2:14 Sam James
2024-10-01 2:16 Sam James
2024-10-01 6:59 Sam James
2024-10-01 7:47 Sam James
2024-10-01 10:18 Sam James
2024-10-01 19:38 Eli Schwartz
2024-10-01 20:40 James Le Cuirot
2024-10-01 23:13 Eli Schwartz
2024-10-01 23:13 Eli Schwartz
2024-10-02 0:57 Sam James
2024-10-02 9:01 Miroslav Šulc
2024-10-02 9:01 Miroslav Šulc
2024-10-02 9:01 Miroslav Šulc
2024-10-02 9:01 Miroslav Šulc
2024-10-03 3:43 Sam James
2024-10-03 4:02 Sam James
2024-10-04 11:49 Sam James
2024-10-07 2:40 Sam James
2024-10-07 4:13 Sam James
2024-10-07 4:13 Sam James
2024-10-07 4:13 Sam James
2024-10-07 4:13 Sam James
2024-10-08 7:09 Florian Schmaus
2024-10-08 15:29 Ulrich Müller
2024-10-08 15:29 Ulrich Müller
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-08 15:32 David Seifert
2024-10-09 11:45 Michał Górny
2024-10-10 14:47 Andrew Ammerlaan
2024-10-15 7:17 Michał Górny
2024-10-15 13:13 Michał Górny
2024-10-16 4:54 Michał Górny
2024-10-16 4:54 Michał Górny
2024-10-16 4:54 Michał Górny
2024-10-16 16:13 Andreas Sturmlechner
2024-10-18 17:54 Ulrich Müller
2024-10-18 17:54 Ulrich Müller
2024-10-18 17:54 Ulrich Müller
2024-10-19 13:47 Ionen Wolkens
2024-10-21 9:32 Sam James
2024-10-23 12:18 Michał Górny
2024-10-29 13:01 Michał Górny
2024-10-29 23:22 Maciej Barć
2024-10-29 23:22 Maciej Barć
2024-10-30 2:27 Sam James
2024-10-30 11:43 Miroslav Šulc
2024-10-30 20:50 Sam James
2024-11-01 9:03 Michał Górny
2024-11-03 9:35 Sam James
2024-11-05 10:47 Florian Schmaus
2024-11-05 10:47 Florian Schmaus
2024-11-06 11:27 Sam James
2024-11-07 5:28 Michał Górny
2024-11-07 5:28 Michał Górny
2024-11-09 6:26 Matt Jolly
2024-11-09 6:26 Matt Jolly
2024-11-09 6:26 Matt Jolly
2024-11-09 7:21 Sam James
2024-11-09 7:31 Matt Jolly
2024-11-09 9:02 Matt Jolly
2024-11-09 10:50 Matt Jolly
2024-11-10 17:24 Sam James
2024-11-11 8:53 Matt Jolly
2024-11-11 8:53 Matt Jolly
2024-11-11 19:28 Sam James
2024-11-11 23:48 Matt Jolly
2024-11-11 23:48 Matt Jolly
2024-11-12 8:09 Andrew Ammerlaan
2024-11-12 9:09 Matt Jolly
2024-11-12 19:19 Sam James
2024-11-13 6:16 Matt Jolly
2024-11-13 18:21 Michał Górny
2024-11-13 19:22 Sam James
2024-11-14 0:36 Sam James
2024-11-17 5:27 Matt Jolly
2024-11-17 5:27 Matt Jolly
2024-11-18 9:28 Sam James
2024-11-18 11:11 Sam James
2024-11-18 16:44 Mike Gilbert
2024-11-18 19:32 Michał Górny
2024-11-19 14:50 Sam James
2024-11-19 15:01 Sam James
2024-11-20 12:05 Sam James
2024-11-20 12:15 Sam James
2024-11-20 12:20 Sam James
2024-11-20 12:37 Sam James
2024-11-22 19:25 Sam James
2024-11-23 13:15 Michał Górny
2024-11-24 19:01 Michał Górny
2024-11-26 1:45 Maciej Barć
2024-11-26 1:45 Maciej Barć
2024-11-26 17:28 Florian Schmaus
2024-11-27 9:21 Nowa Ammerlaan
2024-11-29 21:18 Eli Schwartz
2024-11-29 21:18 Eli Schwartz
2024-11-29 21:18 Eli Schwartz
2024-11-29 21:18 Eli Schwartz
2024-11-29 21:18 Eli Schwartz
2024-11-30 2:08 Sam James
2024-11-30 5:10 Sam James
2024-11-30 5:10 Sam James
2024-11-30 7:17 Michał Górny
2024-11-30 7:17 Michał Górny
2024-11-30 13:09 Sam James
2024-11-30 14:36 Sam James
2024-12-01 8:53 Sam James
2024-12-01 9:25 Sam James
2024-12-01 12:12 Sam James
2024-12-02 8:46 Matt Jolly
2024-12-02 8:46 Matt Jolly
2024-12-04 11:33 Matt Jolly
2024-12-04 11:34 Matt Jolly
2024-12-06 5:10 Ionen Wolkens
2024-12-06 7:43 Miroslav Šulc
2024-12-06 7:43 Miroslav Šulc
2024-12-06 7:44 Miroslav Šulc
2024-12-06 11:33 Nowa Ammerlaan
2024-12-06 21:55 Sam James
2024-12-07 23:23 Sam James
2024-12-08 1:11 Sam James
2024-12-08 23:34 Matt Jolly
2024-12-08 23:34 Matt Jolly
2024-12-09 18:49 Ulrich Müller
2024-12-10 5:21 Ionen Wolkens
2024-12-11 11:52 Ionen Wolkens
2024-12-11 11:52 Ionen Wolkens
2024-12-11 11:52 Ionen Wolkens
2024-12-12 7:47 Sam James
2024-12-12 7:47 Sam James
2024-12-12 7:47 Sam James
2024-12-12 17:03 Florian Schmaus
2024-12-12 17:03 Florian Schmaus
2024-12-12 17:03 Florian Schmaus
2024-12-13 10:02 Florian Schmaus
2024-12-13 13:11 Hans de Graaff
2024-12-14 12:47 Sam James
2024-12-14 16:33 Sam James
2024-12-14 18:43 Sam James
2024-12-15 3:08 Sam James
2024-12-15 9:47 Sam James
2024-12-15 12:48 Sam James
2024-12-16 5:57 Michał Górny
2024-12-16 15:17 Sam James
2024-12-16 18:45 Ulrich Müller
2024-12-16 18:45 Ulrich Müller
2024-12-17 17:14 Sam James
2024-12-17 17:34 Sam James
2024-12-17 21:44 Andreas Sturmlechner
2024-12-17 22:14 Andreas Sturmlechner
2024-12-18 2:46 Sam James
2024-12-18 3:00 Matt Turner
2024-12-18 3:00 Matt Turner
2024-12-21 10:28 Michał Górny
2024-12-22 1:30 Sam James
2024-12-22 3:20 Matt Jolly
2024-12-22 19:41 Sam James
2024-12-23 17:10 Andreas Sturmlechner
2024-12-25 15:08 Hans de Graaff
2024-12-26 10:59 Sam James
2024-12-27 21:25 Michał Górny
2024-12-28 14:51 Sam James
2024-12-28 19:43 Alfredo Tupone
2024-12-29 9:22 Ulrich Müller
2024-12-30 11:35 Michał Górny
2024-12-30 11:35 Michał Górny
2024-12-30 11:35 Michał Górny
2024-12-30 11:35 Michał Górny
2024-12-30 11:35 Michał Górny
2024-12-30 11:35 Michał Górny
2024-12-30 11:35 Michał Górny
2024-12-30 11:35 Michał Górny
2024-12-30 11:35 Michał Górny
2024-12-30 11:35 Michał Górny
2025-01-01 10:06 James Le Cuirot
2025-01-01 15:45 Miroslav Šulc
2025-01-02 17:08 Michał Górny
2025-01-02 17:08 Michał Górny
2025-01-02 17:08 Michał Górny
2025-01-02 18:33 Sam James
2025-01-02 23:32 Sam James
2025-01-02 23:34 Sam James
2025-01-03 0:59 Sam James
2025-01-03 17:54 James Le Cuirot
2025-01-04 15:28 Michał Górny
2025-01-04 15:28 Michał Górny
2025-01-04 21:34 Sam James
2025-01-04 21:34 Sam James
2025-01-05 13:39 Nowa Ammerlaan
2025-01-05 13:39 Nowa Ammerlaan
2025-01-06 14:37 Nowa Ammerlaan
2025-01-06 20:25 Nowa Ammerlaan
2025-01-06 20:25 Nowa Ammerlaan
2025-01-06 20:25 Nowa Ammerlaan
2025-01-07 11:34 Miroslav Šulc
2025-01-08 2:18 Ionen Wolkens
2025-01-08 6:33 Joonas Niilola
2025-01-10 13:15 Michał Górny
2025-01-10 16:44 Nowa Ammerlaan
2025-01-11 8:10 Arthur Zamarin
2025-01-11 18:12 Michał Górny
2025-01-14 4:53 Sam James
2025-01-14 17:07 Maciej Barć
2025-01-15 14:39 Ulrich Müller
2025-01-15 19:38 Sam James
2025-01-16 8:21 Sam James
2025-01-16 14:06 Michał Górny
2025-01-18 8:21 Michał Górny
2025-01-18 15:09 Michał Górny
2025-01-18 23:51 Sam James
2025-01-18 23:51 Sam James
2025-01-18 23:51 Sam James
2025-01-19 1:16 Sam James
2025-01-20 9:44 Petr Vaněk
2025-01-20 9:44 Petr Vaněk
2025-01-21 23:13 Sam James
2025-01-22 19:15 Michał Górny
2025-01-22 19:15 Michał Górny
2025-01-25 13:33 Michał Górny
2025-01-28 7:22 Sam James
2025-01-28 12:15 Sam James
2025-01-29 23:22 Matt Jolly
2025-01-30 1:31 Sam James
2025-01-31 21:51 Michał Górny
2025-01-31 21:51 Michał Górny
2025-02-01 0:40 Ionen Wolkens
2025-02-01 13:14 Michał Górny
2025-02-05 20:37 Sam James
2025-02-06 16:40 Sam James
2025-02-07 18:04 Sam James
2025-02-07 18:33 Sam James
2025-02-08 11:51 Michał Górny
2025-02-09 19:13 Andreas Sturmlechner
2025-02-09 19:13 Andreas Sturmlechner
2025-02-09 19:13 Andreas Sturmlechner
2025-02-10 6:43 Sam James
2025-02-11 8:39 Sam James
2025-02-11 11:29 Michał Górny
2025-02-13 8:49 Patrick Lauer
2025-02-13 17:18 Ulrich Müller
2025-02-13 17:51 Sam James
2025-02-15 7:38 Michał Górny
2025-02-15 9:04 Hans de Graaff
2025-02-15 9:04 Hans de Graaff
2025-02-15 9:04 Hans de Graaff
2025-02-16 18:41 Mike Gilbert
2025-02-17 21:52 Mike Gilbert
2025-02-21 7:25 Petr Vaněk
2025-02-21 11:14 Arthur Zamarin
2025-02-21 11:14 Arthur Zamarin
2025-02-22 15:19 Michał Górny
2025-02-22 22:08 Matt Jolly
2025-02-25 9:16 Matt Jolly
2025-02-25 14:03 Michał Górny
2025-02-25 16:36 Florian Schmaus
2025-02-25 16:36 Florian Schmaus
2025-02-26 8:47 Ionen Wolkens
2025-02-26 22:05 Andreas Sturmlechner
2025-03-01 12:58 Michał Górny
2025-03-03 17:47 Nowa Ammerlaan
2025-03-03 17:47 Nowa Ammerlaan
2025-03-03 19:27 Sam James
2025-03-03 19:27 Sam James
2025-03-04 22:09 Sam James
2025-03-04 22:32 Andreas Sturmlechner
2025-03-04 22:32 Andreas Sturmlechner
2025-03-07 0:58 Sam James
2025-03-07 1:23 Sam James
2025-03-07 1:23 Sam James
2025-03-07 1:25 Sam James
2025-03-07 18:32 Sam James
2025-03-08 14:02 Arthur Zamarin
2025-03-08 14:02 Arthur Zamarin
2025-03-08 14:02 Arthur Zamarin
2025-03-08 14:02 Arthur Zamarin
2025-03-08 14:02 Arthur Zamarin
2025-03-08 16:59 Michał Górny
2025-03-10 1:55 Sam James
2025-03-11 9:04 Ionen Wolkens
2025-03-11 13:23 Sam James
2025-03-11 13:23 Sam James
2025-03-11 14:56 Michał Górny
2025-03-11 22:15 Sam James
2025-03-12 10:14 Ionen Wolkens
2025-03-12 20:02 Sam James
2025-03-13 13:18 Sam James
2025-03-13 17:21 Sam James
2025-03-13 18:02 Sam James
2025-03-13 18:11 Sam James
2025-03-14 2:50 Sam James
2025-03-17 20:13 Michał Górny
2025-03-22 0:52 Sam James
2025-03-22 10:43 Michał Górny
2025-03-24 6:53 Sam James
2025-03-24 6:55 Sam James
2025-03-25 8:15 Sam James
2025-03-26 22:54 Sam James
2025-03-28 9:24 Nowa Ammerlaan
2025-03-28 15:06 Sam James
2025-03-29 10:27 Michał Górny
2025-03-29 15:58 James Le Cuirot
2025-04-01 13:58 Florian Schmaus
2025-04-02 7:06 Michał Górny
2025-04-02 7:06 Michał Górny
2025-04-02 7:06 Michał Górny
2025-04-02 7:06 Michał Górny
2025-04-02 7:06 Michał Górny
2025-04-02 7:06 Michał Górny
2025-04-02 7:06 Michał Górny
2025-04-02 7:06 Michał Górny
2025-04-04 17:08 Sam James
2025-04-05 12:24 Michał Górny
2025-04-07 20:48 Sam James
2025-04-10 9:18 Sam James
2025-04-10 9:28 Sam James
2025-04-10 14:23 Sam James
2025-04-12 8:59 Michał Górny
2025-04-12 16:34 Sam James
2025-04-12 16:34 Sam James
2025-04-13 9:14 Sam James
2025-04-13 11:45 Sam James
2025-04-14 16:07 Sam James
2025-04-15 10:15 Michał Górny
2025-04-15 14:24 Michał Górny
2025-04-15 14:24 Michał Górny
2025-04-15 14:24 Michał Górny
2025-04-15 14:24 Michał Górny
2025-04-15 14:24 Michał Górny
2025-04-15 14:24 Michał Górny
2025-04-16 2:42 Sam James
2025-04-17 1:27 Sam James
2025-04-19 1:31 Sam James
2025-04-19 1:31 Sam James
2025-04-19 8:37 Hans de Graaff
2025-04-19 10:28 Michał Górny
2025-04-19 19:16 Sam James
2025-04-20 11:50 Michał Górny
2025-04-21 2:38 Ionen Wolkens
2025-04-22 11:24 Ionen Wolkens
2025-04-23 11:37 Matt Jolly
2025-04-23 15:09 Ulrich Müller
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-23 15:18 Sam James
2025-04-24 20:44 Sam James
2025-04-26 17:52 Sam James
2025-04-26 18:03 Sam James
2025-04-26 18:09 Sam James
2025-04-27 8:27 Ionen Wolkens
2025-04-27 8:27 Ionen Wolkens
2025-04-27 10:52 Ionen Wolkens
2025-04-27 13:17 Ionen Wolkens
2025-04-27 22:53 Sam James
2025-05-01 11:36 Michał Górny
2025-05-02 16:01 Michał Górny
2025-05-03 5:28 Sam James
2025-05-03 19:42 Michał Górny
2025-05-05 15:32 Sam James
2025-05-05 15:45 Sam James
2025-05-05 15:56 Sam James
2025-05-06 17:41 Eli Schwartz
2025-05-08 12:35 Michał Górny
2025-05-08 12:35 Michał Górny
2025-05-08 12:35 Michał Górny
2025-05-08 12:35 Michał Górny
2025-05-10 1:54 Sam James
2025-05-10 12:57 Michał Górny
2025-05-10 12:57 Michał Górny
2025-05-10 13:03 Michał Górny
2025-05-10 20:04 Sam James
2025-05-11 4:34 Sam James
2025-05-15 7:11 Arsen Arsenović
2025-05-15 7:11 Arsen Arsenović
2025-05-15 7:11 Sam James
2025-05-16 2:00 Ionen Wolkens
2025-05-16 9:31 Michał Górny
2025-05-16 9:59 Sam James
2025-05-17 12:59 Michał Górny
2025-05-17 12:59 Michał Górny
2025-05-19 15:22 Matt Turner
2025-05-20 22:55 Ionen Wolkens
2025-05-21 19:21 Andreas Sturmlechner
2025-05-22 19:39 Mike Gilbert
2025-05-23 15:42 Ionen Wolkens
2025-05-24 11:11 Andreas K. Hüttel
2025-05-24 11:56 Michał Górny
2025-05-24 17:08 Mike Gilbert
2025-05-24 23:50 Mike Gilbert
2025-05-25 16:41 Mike Gilbert
2025-05-26 9:43 Sam James
2025-05-27 18:17 Mike Gilbert
2025-05-27 18:17 Mike Gilbert
2025-05-27 18:17 Mike Gilbert
2025-05-28 3:36 Sam James
2025-05-28 11:54 Michał Górny
2025-05-28 11:54 Michał Górny
2025-05-29 2:47 Ionen Wolkens
2025-05-29 12:24 Sam James
2025-05-30 6:33 Hans de Graaff
2025-06-01 15:13 Ionen Wolkens
2025-06-03 1:32 Sam James
2025-06-03 17:01 Andreas Sturmlechner
2025-06-03 17:01 Andreas Sturmlechner
2025-06-03 17:01 Andreas Sturmlechner
2025-06-04 8:48 Hans de Graaff
2025-06-05 10:56 James Le Cuirot
2025-06-05 10:56 James Le Cuirot
2025-06-05 10:56 James Le Cuirot
2025-06-05 10:56 James Le Cuirot
2025-06-05 10:56 James Le Cuirot
2025-06-05 10:56 James Le Cuirot
2025-06-05 11:11 James Le Cuirot
2025-06-05 11:11 James Le Cuirot
2025-06-07 11:18 Ionen Wolkens
2025-06-07 18:05 Michał Górny
2025-06-07 18:05 Michał Górny
2025-06-08 12:03 Sam James
2025-06-09 8:07 Ionen Wolkens
2025-06-09 20:30 James Le Cuirot
2025-06-09 20:47 Andreas Sturmlechner
2025-06-10 8:02 Ionen Wolkens
2025-06-11 1:48 Sam James
2025-06-11 15:30 Andreas Sturmlechner
2025-06-12 11:58 Sam James
2025-06-12 19:20 Andreas K. Hüttel
2025-06-13 23:11 Mike Gilbert
2025-06-14 9:06 Nowa Ammerlaan
2025-06-14 9:06 Nowa Ammerlaan
2025-06-14 14:26 Sam James
2025-06-14 14:26 Sam James
2025-06-15 17:39 Andreas Sturmlechner
2025-06-18 7:26 Sam James
2025-06-21 10:07 David Seifert
2025-06-21 10:07 David Seifert
2025-06-22 10:58 Andreas Sturmlechner
2025-06-22 10:58 Andreas Sturmlechner
2025-06-22 10:58 Andreas Sturmlechner
2025-06-22 10:58 Andreas Sturmlechner
2025-06-24 19:44 Andreas Sturmlechner
2025-06-25 4:35 Michał Górny
2025-06-25 4:35 Michał Górny
2025-06-25 4:35 Michał Górny
2025-06-25 4:35 Michał Górny
2025-06-28 15:03 Michał Górny
2025-06-28 15:03 Michał Górny
2025-06-29 3:20 Michał Górny
2025-06-29 22:57 Sam James
2025-06-30 6:09 Ionen Wolkens
2025-07-02 8:20 Michał Górny
2025-07-02 10:53 Michał Górny
2025-07-02 17:38 Andreas Sturmlechner
2025-07-04 3:26 Eli Schwartz
2025-07-05 7:16 Sam James
2025-07-05 7:16 Sam James
2025-07-05 7:16 Sam James
2025-07-05 7:59 Sam James
2025-07-05 8:18 Sam James
2025-07-05 12:44 Ionen Wolkens
2025-07-05 22:35 Ionen Wolkens
2025-07-07 11:46 Louis Sautier
2025-07-07 20:58 Sam James
2025-07-07 22:25 Sam James
2025-07-07 22:51 Sam James
2025-07-08 23:35 Sam James
2025-07-09 11:22 James Le Cuirot
2025-07-09 11:22 James Le Cuirot
2025-07-10 7:51 Miroslav Šulc
2025-07-12 5:05 Michał Górny
2025-07-12 5:05 Michał Górny
2025-07-12 5:05 Michał Górny
2025-07-13 5:08 Sam James
2025-07-13 5:08 Sam James
2025-07-13 11:20 Nowa Ammerlaan
2025-07-13 20:03 Michał Górny
2025-07-14 18:55 Andreas K. Hüttel
2025-07-18 4:39 Michał Górny
2025-07-18 4:39 Michał Górny
2025-07-19 11:35 Sam James
2025-07-19 11:35 Sam James
2025-07-20 18:10 Nowa Ammerlaan
2025-07-23 11:57 Petr Vaněk
2025-07-23 20:38 Sam James
2025-07-24 16:03 Michał Górny
2025-07-25 5:57 Michał Górny
2025-07-25 8:21 Nowa Ammerlaan
2025-07-25 12:48 Alfredo Tupone
2025-07-26 19:53 Michał Górny
2025-07-27 1:51 Sam James
2025-07-27 12:39 Florian Schmaus
2025-07-28 5:00 Sam James
2025-07-29 5:34 Ionen Wolkens
2025-07-29 8:36 Matt Jolly
2025-07-30 5:06 Eli Schwartz
2025-08-02 10:29 Michał Górny
2025-08-02 10:29 Michał Górny
2025-08-09 9:47 Michał Górny
2025-08-09 16:49 Michał Górny
2025-08-11 5:38 Eli Schwartz
2025-08-11 5:38 Eli Schwartz
2025-08-13 11:01 Sam James
2025-08-13 11:01 Sam James
2025-08-13 11:01 Sam James
2025-08-13 12:03 Sam James
2025-08-13 12:03 Sam James
2025-08-14 8:09 Sam James
2025-08-14 16:33 Mike Gilbert
2025-08-14 16:33 Mike Gilbert
2025-08-16 13:51 Michał Górny
2025-08-18 17:58 Andreas Sturmlechner
2025-08-18 17:58 Andreas Sturmlechner
2025-08-20 22:29 James Le Cuirot
2025-08-21 8:18 Michał Górny
2025-08-21 8:22 Michał Górny
2025-08-22 5:31 Sam James
2025-08-22 5:36 Sam James
2025-08-26 22:10 James Le Cuirot
2025-08-30 13:07 Ionen Wolkens
2025-08-31 13:28 Michał Górny
2025-08-31 13:28 Michał Górny
2025-09-01 10:31 Sam James
2025-09-02 20:05 Eli Schwartz
2025-09-03 1:28 Ionen Wolkens
2025-09-03 1:32 Ionen Wolkens
2025-09-03 16:48 Jason Zaman
2025-09-03 16:48 Jason Zaman
2025-09-06 7:01 Michał Górny
2025-09-06 7:01 Michał Górny
2025-09-06 7:01 Michał Górny
2025-09-06 15:13 Sam James
2025-09-06 20:02 Sam James
2025-09-06 20:02 Sam James
2025-09-06 20:43 Ionen Wolkens
2025-09-06 21:32 Sam James
2025-09-07 19:47 Michał Górny
2025-09-08 18:15 Arthur Zamarin
2025-09-11 9:51 Sam James
2025-09-11 16:49 Nowa Ammerlaan
2025-09-11 19:48 Michał Górny
2025-09-11 20:19 Nowa Ammerlaan
2025-09-11 20:19 Nowa Ammerlaan
2025-09-19 3:13 Ionen Wolkens
2025-09-24 2:27 Michał Górny
2025-09-24 2:27 Michał Górny
2025-09-25 13:38 Patrick Lauer
2025-09-25 16:53 Nowa Ammerlaan
2025-09-26 5:52 Alfredo Tupone
2025-09-26 6:37 Patrick Lauer
2025-09-26 10:10 Nowa Ammerlaan
2025-09-30 17:34 Alfredo Tupone
2025-10-01 6:35 Michał Górny
2025-10-01 15:08 Sam James
2025-10-03 16:27 Sam James
2025-10-03 16:27 Sam James
2025-10-03 19:11 Michał Górny
2025-10-03 19:11 Michał Górny
2025-10-04 9:16 Michał Górny
2025-10-04 9:16 Michał Górny
2025-10-05 21:50 Andreas Sturmlechner
2025-10-05 21:50 Andreas Sturmlechner
2025-10-05 21:50 Andreas Sturmlechner
2025-10-05 21:50 Andreas Sturmlechner
2025-10-05 21:50 Andreas Sturmlechner
2025-10-09 2:25 Michał Górny
2025-10-11 7:08 Sam James
2025-10-11 7:12 Sam James
2025-10-11 19:54 Michał Górny
2025-10-12 14:20 Sam James
2025-10-16 18:02 Nowa Ammerlaan
2025-10-16 19:14 Andreas Sturmlechner
2025-10-16 19:14 Andreas Sturmlechner
2025-10-16 19:14 Andreas Sturmlechner
2025-10-16 19:14 Andreas Sturmlechner
2025-10-16 19:14 Andreas Sturmlechner
2025-10-16 19:14 Andreas Sturmlechner
2025-10-16 19:14 Andreas Sturmlechner
2025-10-16 19:14 Andreas Sturmlechner
2025-10-16 19:14 Andreas Sturmlechner
2025-10-18 15:20 Sam James
2025-10-19 21:54 Andreas Sturmlechner
2025-10-21 0:25 Sam James
2025-10-21 20:20 Sam James
2025-10-22 19:12 Michał Górny
2025-10-22 19:12 Michał Górny
2025-10-23 18:19 Michał Górny
2025-10-23 18:19 Michał Górny
2025-10-23 18:19 Michał Górny
2025-10-23 18:19 Michał Górny
2025-10-23 18:19 Michał Górny
2025-10-25 1:07 Sam James
2025-10-26 4:07 Sam James
2025-10-28 5:51 Michał Górny
2025-10-28 11:37 Michał Górny
2025-10-28 14:44 Michał Górny
2025-10-31 6:21 Michał Górny
2025-10-31 23:25 Andreas Sturmlechner
2025-10-31 23:25 Andreas Sturmlechner
2025-10-31 23:25 Andreas Sturmlechner
2025-10-31 23:25 Andreas Sturmlechner
2025-11-01 12:02 Michał Górny
2025-11-01 12:02 Michał Górny
2025-11-02 5:16 Sam James
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1443165082.0fb6e70c611fd2ead2bfe7a9ecdfb43fd3bfae47.jlec@gentoo \
--to=jlec@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox