From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 6 May 2017 16:36:17 +0000 (UTC) [thread overview]
Message-ID: <1494088562.9f1785bcb8a698a85818b5abe13141fb44eaf124.soap@gentoo> (raw)
commit: 9f1785bcb8a698a85818b5abe13141fb44eaf124
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat May 6 16:34:34 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat May 6 16:36:02 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f1785bc
gnat.eclass: Remove last-rited eclass
eclass/gnat.eclass | 459 -----------------------------------------------------
1 file changed, 459 deletions(-)
diff --git a/eclass/gnat.eclass b/eclass/gnat.eclass
deleted file mode 100644
index e9ffa5b1f10..00000000000
--- a/eclass/gnat.eclass
+++ /dev/null
@@ -1,459 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# @DEAD
-# Removal on 2017-03-24.
-
-# Author: George Shapovalov <george@gentoo.org>
-# No maintainer <maintainer-needed@gentoo.org>
-#
-# This eclass provides the framework for ada lib installation with the split and
-# SLOTted gnat compilers (gnat-xxx, gnatbuild.eclass). Each lib gets built once
-# for every installed gnat compiler. Activation of a particular bunary module is
-# performed by eselect-gnat, when the active compiler gets switched
-#
-# The ebuilds should define the lib_compile and lib_install functions that are
-# called from the (exported) gnat_src_compile function of eclass. These
-# functions should operate similarly to the starndard src_compile and
-# src_install. The only difference, that they should use $SL variable instead of
-# $S (this is where the working copy of source is held) and $DL instead of $D as
-# its installation point.
-
-inherit flag-o-matic eutils multilib
-
-# The environment is set locally in src_compile and src_install functions
-# by the common code sourced here and in gnat-eselect module.
-# This is the standard location for this code (belongs to eselect-gnat,
-# since eselect should work even in the absense of portage tree and we can
-# guarantee to some extent presence of gnat-eselect when anything gnat-related
-# gets processed. See #192505)
-#
-# Note!
-# It may not be safe to source this at top level. Only source inside local
-# functions!
-GnatCommon="/usr/share/gnat/lib/gnat-common.bash"
-
-# !!NOTE!!
-# src_install should not be exported!
-# Instead gnat_src_install should be explicitly called from within src_install.
-EXPORT_FUNCTIONS pkg_setup pkg_postinst src_compile
-
-DESCRIPTION="Common procedures for building Ada libs using split gnat compilers"
-
-# make sure we have an appropriately recent eselect-gnat installed, as we are
-# using some common code here.
-DEPEND=">=app-eselect/eselect-gnat-1.3"
-
-
-# ----------------------------------
-# Globals
-
-# Lib install locations
-#
-# Gnat profile dependent files go under ${LibTop}/${Gnat_Profile}/${PN}
-# and common files go under SpecsDir, DataDir..
-# In order not to pollute PATH and LDPATH attempt should be mabe to install
-# binaries and what makes sence for individual packages under
-# ${AdalibLibTop}/${Gnat_Profile}/bin
-PREFIX=/usr
-AdalibSpecsDir=${PREFIX}/include/ada
-AdalibDataDir=${PREFIX}/share/ada
-AdalibLibTop=${PREFIX}/$(get_libdir)/ada
-
-# build-time locations
-# SL is a "localized" S, - location where sources are copied for
-#bi profile-specific build
-SL=${WORKDIR}/LocalSource
-
-# DL* are "localized destinations" where ARCH/SLOT dependent stuff should be
-# installed in lib_install. There are three:
-#
-DL=${WORKDIR}/LocalDest
-# a generic location for the lib (.a, .so) files
-#
-DLbin=${WORKDIR}/LocalBinDest
-# binaries that should be in the PATH, will be moved to common Ada bin dir
-#
-DLgpr=${WORKDIR}/LocalGPRDest
-# gpr's should go here.
-
-# file containing environment formed by gnat-eselect (build-time)
-BuildEnv=${WORKDIR}/BuildEnv
-
-# environment for installed lib. Profile-specific stuff should use %DL% as a top
-# of their location. This (%DL%) will be substituted with a proper location upon
-# install
-LibEnv=${WORKDIR}/LibEnv
-
-
-# env file prepared by gnat.eselect only lists new settings for env vars
-# we need to change that to prepend, rather than replace action..
-# Takes one argument - the file to expand. This file should contain only
-# var=value like lines.. (commenst are Ok)
-expand_BuildEnv() {
- local line
- for line in $(cat $1); do
- EnvVar=$(echo ${line}|cut -d"=" -f1)
- if [[ "${EnvVar}" == "PATH" ]] ; then
- echo "export ${line}:\${${EnvVar}}" >> $1.tmp
- else
- echo "export ${line}" >> $1.tmp
- fi
- done
- mv $1.tmp $1
-}
-
-
-# ------------------------------------
-# Dependency processing related stuff
-
-# A simple wrapper to get the relevant part of the DEPEND
-# params:
-# $1 - should contain dependency specification analogous to DEPEND,
-# if omitted, DEPEND is processed
-get_ada_dep() {
- [[ -z "$1" ]] && DEP="${DEPEND}" || DEP="$1"
- local TempStr
- for fn in $DEP; do # here $DEP should *not* be in ""
- [[ $fn =~ "virtual/ada" ]] && TempStr=${fn/*virtual\//}
- # above match should be to full virtual/ada, as simply "ada" is a common
- # part of ${PN}, even for some packages under dev-ada
- done
-# debug-print-function $FUNCNAME "TempStr=${TempStr:0:8}"
- [[ -n ${TempStr} ]] && echo ${TempStr:0:8}
-}
-
-# This function is used to check whether the requested gnat profile matches the
-# requested Ada standard
-# !!ATTN!!
-# This must match dependencies as specified in virtual/ada !!!
-#
-# params:
-# $1 - the requested gnat profile in usual form (e.g. x86_64-pc-linux-gnu-gnat-gcc-4.1)
-# $2 - Ada standard specification, as would be specified in DEPEND.
-# Valid values: ada-1995, ada-2005, ada
-#
-# This used to treat ada-1995 and ada alike, but some packages (still
-# requested by users) no longer compile with new compilers (not the
-# standard issue, but rather compiler becoming stricter most of the time).
-# Plus there are some "intermediary versions", not fully 2005 compliant
-# but already causing problems. Therefore, now we do exact matching.
-belongs_to_standard() {
-# debug-print-function $FUNCNAME $*
- . ${GnatCommon} || die "failed to source gnat-common lib"
- local GnatSlot=$(get_gnat_SLOT $1)
- local ReducedSlot=${GnatSlot//\./}
- #
- if [[ $2 == 'ada' ]] ; then
-# debug-print-function "ada or ada-1995 match"
- return 0 # no restrictions imposed
- elif [[ "$2" == 'ada-1995' ]] ; then
- if [[ $(get_gnat_Pkg $1) == "gcc" ]]; then
-# debug-print-function "got gcc profile, GnatSlot=${ReducedSlot}"
- [[ ${ReducedSlot} -le "42" ]] && return 0 || return 1
- elif [[ $(get_gnat_Pkg $1) == "gpl" ]]; then
-# debug-print-function "got gpl profile, GnatSlot=${ReducedSlot}"
- [[ ${ReducedSlot} -lt "41" ]] && return 0 || return 1
- else
- return 1 # unknown compiler encountered
- fi
- elif [[ "$2" == 'ada-2005' ]] ; then
- if [[ $(get_gnat_Pkg $1) == "gcc" ]]; then
-# debug-print-function "got gcc profile, GnatSlot=${ReducedSlot}"
- [[ ${ReducedSlot} -ge "43" ]] && return 0 || return 1
- elif [[ $(get_gnat_Pkg $1) == "gpl" ]]; then
-# debug-print-function "got gpl profile, GnatSlot=${ReducedSlot}"
- [[ ${ReducedSlot} -ge "41" ]] && return 0 || return 1
- else
- return 1 # unknown compiler encountered
- fi
- else
- return 1 # unknown standard requested, check spelling!
- fi
-}
-
-
-# ------------------------------------
-# Helpers
-#
-
-
-# The purpose of this one is to remove all parts of the env entry specific to a
-# given lib. Usefull when some lib wants to act differently upon detecting
-# itself installed..
-#
-# params:
-# $1 - name of env var to process
-# $2 (opt) - name of the lib to filter out (defaults to ${PN})
-filter_env_var() {
- local entries=(${!1//:/ })
- local libName=${2:-${PN}}
- local env_str
- for entry in ${entries[@]} ; do
- # this simply checks if $libname is a substring of the $entry, should
- # work fine with all the present libs
- if [[ ${entry/${libName}/} == ${entry} ]] ; then
- env_str="${env_str}:${entry}"
- fi
- done
- echo ${env_str}
-}
-
-# A simpler helper, for the libs that need to extract active gnat location
-# Returns a first entry for a specified env var. Relies on the (presently true)
-# convention that first gnat's entries are listed and then of the other
-# installed libs.
-#
-# params:
-# $1 - name of env var to process
-get_gnat_value() {
- local entries=(${!1//:/ })
- echo ${entries[0]}
-}
-
-
-# Returns a name of active gnat profile. Performs some validity checks. No input
-# parameters, analyzes the system setup directly.
-get_active_profile() {
- # get common code and settings
- . ${GnatCommon} || die "failed to source gnat-common lib"
-
- local profiles=( $(get_env_list) )
-
- if [[ ${profiles[@]} == "${MARKER}*" ]]; then
- return
- # returning empty string
- fi
-
- if (( 1 == ${#profiles[@]} )); then
- local active=${profiles[0]#${MARKER}}
- else
- die "${ENVDIR} contains multiple gnat profiles, please cleanup!"
- fi
-
- if [[ -f ${SPECSDIR}/${active} ]]; then
- echo ${active}
- else
- die "The profile active in ${ENVDIR} does not correspond to any installed gnat!"
- fi
-}
-
-
-
-# ------------------------------------
-# Functions
-
-# Checks the gnat backend SLOT and filters flags correspondingly
-# To be called from scr_compile for each profile, before actual compilation
-# Parameters:
-# $1 - gnat profile, e.g. x86_64-pc-linux-gnu-gnat-gcc-3.4
-gnat_filter_flags() {
- debug-print-function $FUNCNAME $*
-
- # We only need to filter so severely if backends < 3.4 is detected, which
- # means basically gnat-3.15
- GnatProfile=$1
- if [ -z ${GnatProfile} ]; then
- # should not get here!
- die "please specify a valid gnat profile for flag stripping!"
- fi
-
- local GnatSLOT="${GnatProfile//*-/}"
- if [[ ${GnatSLOT} < 3.4 ]] ; then
- filter-mfpmath sse 387
-
- filter-flags -mmmx -msse -mfpmath -frename-registers \
- -fprefetch-loop-arrays -falign-functions=4 -falign-jumps=4 \
- -falign-loops=4 -msse2 -frerun-loop-opt -maltivec -mabi=altivec \
- -fsigned-char -fno-strict-aliasing -pipe
-
- export ADACFLAGS=${ADACFLAGS:-${CFLAGS}}
- export ADACFLAGS=${ADACFLAGS//-Os/-O2}
- export ADACFLAGS=${ADACFLAGS//pentium-mmx/i586}
- export ADACFLAGS=${ADACFLAGS//pentium[234]/i686}
- export ADACFLAGS=${ADACFLAGS//k6-[23]/k6}
- export ADACFLAGS=${ADACFLAGS//athlon-tbird/i686}
- export ADACFLAGS=${ADACFLAGS//athlon-4/i686}
- export ADACFLAGS=${ADACFLAGS//athlon-[xm]p/i686}
- # gcc-2.8.1 has no amd64 support, so the following two are safe
- export ADACFLAGS=${ADACFLAGS//athlon64/i686}
- export ADACFLAGS=${ADACFLAGS//athlon/i686}
- else
- export ADACFLAGS=${ADACFLAGS:-${CFLAGS}}
- fi
-
- export ADAMAKEFLAGS=${ADAMAKEFLAGS:-"-cargs ${ADACFLAGS} -margs"}
- export ADABINDFLAGS=${ADABINDFLAGS:-""}
-}
-
-gnat_pkg_setup() {
- debug-print-function $FUNCNAME $*
-
- # check whether all the primary compilers are installed
- . ${GnatCommon} || die "failed to source gnat-common lib"
- for fn in $(cat ${PRIMELIST}); do
- if [[ ! -f ${SPECSDIR}/${fn} ]]; then
- elog "The ${fn} Ada compiler profile is specified as primary, but is not installed."
- elog "Please rectify the situation before emerging Ada library!"
- elog "Please either install again all the missing compilers listed"
- elog "as primary, or edit /etc/ada/primary_compilers and update the"
- elog "list of primary compilers there."
- einfo ""
- ewarn "If you do the latter, please don't forget to rebuild all"
- ewarn "affected libs!"
- die "Primary compiler is missing"
- fi
- done
-
- export ADAC=${ADAC:-gnatgcc}
- export ADAMAKE=${ADAMAKE:-gnatmake}
- export ADABIND=${ADABIND:-gnatbind}
-}
-
-
-gnat_pkg_postinst() {
- einfo "Updating gnat configuration to pick up ${PN} library..."
- eselect gnat update
- elog "The environment has been set up to make gnat automatically find files"
- elog "for the installed library. In order to immediately activate these"
- elog "settings please run:"
- elog
- #elog "env-update"
- elog "source /etc/profile"
- einfo
- einfo "Otherwise the settings will become active next time you login"
-}
-
-
-
-
-# standard lib_compile plug. Adapted from base.eclass
-lib_compile() {
- debug-print-function $FUNCNAME $*
- [ -z "$1" ] && lib_compile all
-
- cd ${SL}
-
- while [ "$1" ]; do
- case $1 in
- configure)
- debug-print-section configure
- econf || die "died running econf, $FUNCNAME:configure"
- ;;
- make)
- debug-print-section make
- emake || die "died running emake, $FUNCNAME:make"
- ;;
- all)
- debug-print-section all
- lib_compile configure make
- ;;
- esac
- shift
- done
-}
-
-# Cycles through installed gnat profiles and calls lib_compile and then
-# lib_install in turn.
-# Use this function to build/install profile-specific binaries. The code
-# building/installing common stuff (docs, etc) can go before/after, as needed,
-# so that it is called only once..
-#
-# lib_compile and lib_install are passed the active gnat profile name - may be used or
-# discarded as needed..
-gnat_src_compile() {
- debug-print-function $FUNCNAME $*
-
- # We source the eselect-gnat module and use its functions directly, instead of
- # duplicating code or trying to violate sandbox in some way..
- . ${GnatCommon} || die "failed to source gnat-common lib"
-
- compilers=( $(find_primary_compilers ) )
- if [[ -n ${compilers[@]} ]] ; then
- local i
- local AdaDep=$(get_ada_dep)
- for (( i = 0 ; i < ${#compilers[@]} ; i = i + 1 )) ; do
- if $(belongs_to_standard ${compilers[${i}]} ${AdaDep}); then
- einfo "compiling for gnat profile ${compilers[${i}]}"
-
- # copy sources
- mkdir "${DL}" "${DLbin}" "${DLgpr}"
- cp -dpR "${S}" "${SL}"
-
- # setup environment
- # As eselect-gnat also manages the libs, this will ensure the right
- # lib profiles are activated too (in case we depend on some Ada lib)
- generate_envFile ${compilers[${i}]} ${BuildEnv} && \
- expand_BuildEnv "${BuildEnv}" && \
- . "${BuildEnv}" || die "failed to switch to ${compilers[${i}]}"
- # many libs (notably xmlada and gtkada) do not like to see
- # themselves installed. Need to strip them from ADA_*_PATH
- # NOTE: this should not be done in pkg_setup, as we setup
- # environment right above
- export ADA_INCLUDE_PATH=$(filter_env_var ADA_INCLUDE_PATH)
- export ADA_OBJECTS_PATH=$(filter_env_var ADA_OBJECTS_PATH)
-
- # call compilation callback
- cd "${SL}"
- gnat_filter_flags ${compilers[${i}]}
- lib_compile ${compilers[${i}]} || die "failed compiling for ${compilers[${i}]}"
-
- # call install callback
- cd "${SL}"
- lib_install ${compilers[${i}]} || die "failed installing profile-specific part for ${compilers[${i}]}"
- # move installed and cleanup
- mv "${DL}" "${DL}-${compilers[${i}]}"
- mv "${DLbin}" "${DLbin}-${compilers[${i}]}"
- mv "${DLgpr}" "${DLgpr}-${compilers[${i}]}"
- rm -rf "${SL}"
- else
- einfo "skipping gnat profile ${compilers[${i}]}"
- fi
- done
- else
- ewarn "Please note!"
- elog "Treatment of installed Ada compilers has recently changed!"
- elog "Libs are now being built only for \"primary\" compilers."
- elog "Please list gnat profiles (as reported by \"eselect gnat list\")"
- elog "that you want to regularly use (i.e., not just for testing)"
- elog "in ${PRIMELIST}, one per line."
- die "please make sure you have at least one gnat compiler installed and set as primary!"
- fi
-}
-
-
-# This function simply moves gnat-profile-specific stuff into proper locations.
-# Use src_install in ebuild to install the rest of the package
-gnat_src_install() {
- debug-print-function $FUNCNAME $*
-
- # prep lib specs directory
- . ${GnatCommon} || die "failed to source gnat-common lib"
- dodir ${SPECSDIR}/${PN}
-
- compilers=( $(find_primary_compilers) )
- if [[ -n ${compilers[@]} ]] ; then
- local i
- local AdaDep=$(get_ada_dep)
- for (( i = 0 ; i < ${#compilers[@]} ; i = i + 1 )) ; do
- if $(belongs_to_standard ${compilers[${i}]} ${AdaDep}); then
- debug-print-section "installing for gnat profile ${compilers[${i}]}"
-
- local DLlocation=${AdalibLibTop}/${compilers[${i}]}
- dodir ${DLlocation}
- cp -dpR "${DL}-${compilers[${i}]}" "${D}/${DLlocation}/${PN}"
- cp -dpR "${DLbin}-${compilers[${i}]}" "${D}/${DLlocation}"/bin
- cp -dpR "${DLgpr}-${compilers[${i}]}" "${D}/${DLlocation}"/gpr
- # create profile-specific specs file
- cp ${LibEnv} "${D}/${SPECSDIR}/${PN}/${compilers[${i}]}"
- sed -i -e "s:%DL%:${DLlocation}/${PN}:g" "${D}/${SPECSDIR}/${PN}/${compilers[${i}]}"
- sed -i -e "s:%DLbin%:${DLlocation}/bin:g" "${D}/${SPECSDIR}/${PN}/${compilers[${i}]}"
- sed -i -e "s:%DLgpr%:${DLlocation}/gpr:g" "${D}/${SPECSDIR}/${PN}/${compilers[${i}]}"
- else
- einfo "skipping gnat profile ${compilers[${i}]}"
- fi
- done
- else
- die "please make sure you have at least one gnat compiler installed!"
- fi
-}
next reply other threads:[~2017-05-06 16:36 UTC|newest]
Thread overview: 6628+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-06 16:36 David Seifert [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-04-04 17:33 [gentoo-commits] repo/gentoo:master commit in: eclass/ Ulrich Müller
2024-04-05 9:45 Hans de Graaff
2024-04-05 16:06 Florian Schmaus
2024-04-06 9:13 Michał Górny
2024-04-06 13:44 Michał Górny
2024-04-08 7:15 Miroslav Šulc
2024-04-09 20:17 Ulrich Müller
2024-04-10 8:11 Miroslav Šulc
2024-04-10 11:10 Michał Górny
2024-04-10 17:56 Ulrich Müller
2024-04-11 7:48 Miroslav Šulc
2024-04-13 18:32 Ulrich Müller
2024-04-13 18:41 Sam James
2024-04-13 20:03 Miroslav Šulc
2024-04-16 1:40 Sam James
2024-04-16 1:40 Sam James
2024-04-16 1:40 Sam James
2024-04-17 23:34 Sam James
2024-04-19 18:46 Michał Górny
2024-04-19 18:46 Michał Górny
2024-04-19 23:11 Mike Gilbert
2024-04-20 5:40 Michał Górny
2024-04-20 9:41 Michał Górny
2024-04-20 14:20 Ionen Wolkens
2024-04-20 14:20 Ionen Wolkens
2024-04-22 3:14 Sam James
2024-04-23 21:43 Sam James
2024-04-25 20:43 Andreas Sturmlechner
2024-04-25 20:43 Andreas Sturmlechner
2024-04-27 10:42 Michał Górny
2024-04-28 9:47 Hans de Graaff
2024-04-28 15:54 Michał Górny
2024-04-29 17:31 Florian Schmaus
2024-04-30 5:58 Sam James
2024-04-30 18:34 Michał Górny
2024-04-30 18:34 Michał Górny
2024-04-30 19:19 Alfredo Tupone
2024-04-30 19:25 Alfredo Tupone
2024-05-01 0:27 Sam James
2024-05-01 0:27 Sam James
2024-05-01 3:02 Sam James
2024-05-02 0:24 Sam James
2024-05-02 17:44 Florian Schmaus
2024-05-03 2:48 Sam James
2024-05-03 2:48 Sam James
2024-05-03 11:43 Sam James
2024-05-03 11:43 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-29 21:18 Eli Schwartz
2024-11-29 21:18 Eli Schwartz
2024-11-29 21:18 Eli Schwartz
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-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-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-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-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-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
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=1494088562.9f1785bcb8a698a85818b5abe13141fb44eaf124.soap@gentoo \
--to=soap@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