public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Fabian Groffen" <grobian@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/portage:prefix commit in: /
Date: Tue, 13 Sep 2011 17:41:40 +0000 (UTC)	[thread overview]
Message-ID: <74fec93ae94c0149cac8a6e2af49ee2492c97cce.grobian@gentoo> (raw)

commit:     74fec93ae94c0149cac8a6e2af49ee2492c97cce
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 13 17:40:17 2011 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Tue Sep 13 17:40:17 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=74fec93a

Merge remote-tracking branch 'overlays-gentoo-org/master' into prefix

Conflicts:
	bin/ebuild.sh
	bin/egencache
	bin/isolated-functions.sh
	pym/portage/dbapi/vartree.py
	pym/portage/elog/mod_save.py
	pym/portage/elog/mod_save_summary.py
	pym/portage/package/ebuild/doebuild.py
	pym/portage/util/env_update.py


 bin/bashrc-functions.sh                            |  140 ++
 bin/ebuild                                         |   25 +-
 bin/ebuild.sh                                      | 1963 ++------------------
 bin/egencache                                      |   46 +-
 bin/isolated-functions.sh                          |  166 +--
 bin/phase-functions.sh                             |  970 ++++++++++
 bin/phase-helpers.sh                               |  624 +++++++
 bin/repoman                                        |   47 +-
 bin/save-ebuild-env.sh                             |   97 +
 man/portage.5                                      |    4 +
 pym/_emerge/BlockerCache.py                        |   10 +-
 pym/_emerge/EbuildFetcher.py                       |    6 +-
 pym/_emerge/actions.py                             |   21 +-
 pym/_emerge/depgraph.py                            |  125 +-
 pym/_emerge/main.py                                |   11 +-
 pym/_emerge/search.py                              |    4 +-
 pym/portage/__init__.py                            |   36 +-
 pym/portage/cache/volatile.py                      |    8 +-
 pym/portage/dbapi/porttree.py                      |   41 +-
 pym/portage/dbapi/vartree.py                       |   53 +-
 pym/portage/dep/__init__.py                        |    8 +
 pym/portage/elog/mod_echo.py                       |   13 +
 pym/portage/elog/mod_save.py                       |    3 +-
 pym/portage/elog/mod_save_summary.py               |    4 +-
 pym/portage/getbinpkg.py                           |   17 +-
 pym/portage/manifest.py                            |  149 +-
 pym/portage/package/ebuild/config.py               |   13 +
 pym/portage/package/ebuild/digestcheck.py          |    6 +-
 pym/portage/package/ebuild/digestgen.py            |    3 +-
 pym/portage/package/ebuild/doebuild.py             |   50 +-
 pym/portage/package/ebuild/fetch.py                |    3 +-
 pym/portage/repository/config.py                   |  216 ++-
 pym/portage/tests/ebuild/test_config.py            |   48 +
 pym/portage/tests/ebuild/test_pty_eof.py           |   13 +
 pym/portage/tests/emerge/test_simple.py            |  205 ++-
 pym/portage/tests/repoman/test_simple.py           |   19 +-
 pym/portage/tests/resolver/ResolverPlayground.py   |   71 +-
 pym/portage/tests/resolver/test_virtual_slot.py    |   93 +
 .../util/_dyn_libs/PreservedLibsRegistry.py        |   14 +-
 pym/portage/util/env_update.py                     |    6 +-
 pym/portage/util/mtimedb.py                        |    8 +-
 pym/portage/xml/metadata.py                        |   34 +-
 pym/repoman/checks.py                              |    1 +
 43 files changed, 3038 insertions(+), 2356 deletions(-)

diff --cc bin/ebuild.sh
index a5fc0ec,7b77c10..7952515
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@@ -2,9 -2,51 +2,58 @@@
  # Copyright 1999-2011 Gentoo Foundation
  # Distributed under the terms of the GNU General Public License v2
  
 -PORTAGE_BIN_PATH="${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"
 -PORTAGE_PYM_PATH="${PORTAGE_PYM_PATH:-/usr/lib/portage/pym}"
 +PORTAGE_BIN_PATH="${PORTAGE_BIN_PATH:-@PORTAGE_BASE@/bin}"
 +PORTAGE_PYM_PATH="${PORTAGE_PYM_PATH:-@PORTAGE_BASE@/pym}"
  
+ ROOTPATH=${ROOTPATH##:}
+ ROOTPATH=${ROOTPATH%%:}
+ PREROOTPATH=${PREROOTPATH##:}
+ PREROOTPATH=${PREROOTPATH%%:}
 -PATH=$PORTAGE_BIN_PATH/ebuild-helpers:$PREROOTPATH${PREROOTPATH:+:}/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin${ROOTPATH:+:}$ROOTPATH
++#PATH=$PORTAGE_BIN_PATH/ebuild-helpers:$PREROOTPATH${PREROOTPATH:+:}/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin${ROOTPATH:+:}$ROOTPATH
++# PREFIX: our DEFAULT_PATH is equal to the above when not using an
++# offset prefix.  With such prefix, the usr/local bits are excluded, and
++# the prefixed variants of {usr/,}{s,}bin are taken.  The additional
++# paths given during configure, always come as last thing since they
++# should never override anything from the prefix itself.
++PATH="$PORTAGE_BIN_PATH/ebuild-helpers:$PREROOTPATH${PREROOTPATH:+:}${DEFAULT_PATH}${ROOTPATH:+:}$ROOTPATH${EXTRA_PATH:+:}${EXTRA_PATH}"
+ export PATH
+ 
++
+ # Prevent aliases from causing portage to act inappropriately.
+ # Make sure it's before everything so we don't mess aliases that follow.
+ unalias -a
+ 
+ source "${PORTAGE_BIN_PATH}/isolated-functions.sh" || exit 1
+ 
+ if [[ $EBUILD_PHASE != depend ]] ; then
+ 	source "${PORTAGE_BIN_PATH}/phase-functions.sh" || die
+ 	source "${PORTAGE_BIN_PATH}/save-ebuild-env.sh" || die
+ 	source "${PORTAGE_BIN_PATH}/phase-helpers.sh" || die
+ 	source "${PORTAGE_BIN_PATH}/bashrc-functions.sh" || die
+ else
+ 	# These dummy functions are for things that are likely to be called
+ 	# in global scope, even though they are completely useless during
+ 	# the "depend" phase.
+ 	for x in diropts docompress exeopts get_KV insopts \
+ 		keepdir KV_major KV_micro KV_minor KV_to_int \
+ 		libopts register_die_hook register_success_hook \
+ 		remove_path_entry set_unless_changed strip_duplicate_slashes \
+ 		unset_unless_changed use_with use_enable ; do
+ 		eval "${x}() { : ; }"
+ 	done
+ 	# These dummy functions return false, in order to ensure that
+ 	# `use multislot` is false for the "depend" phase.
+ 	for x in use useq usev ; do
+ 		eval "${x}() { return 1; }"
+ 	done
+ 	# These functions die because calls to them during the "depend" phase
+ 	# are considered to be severe QA violations.
+ 	for x in best_version has_version portageq ; do
+ 		eval "${x}() { die \"\${FUNCNAME} calls are not allowed in global scope\"; }"
+ 	done
+ 	unset x
+ fi
+ 
  if [[ $PORTAGE_SANDBOX_COMPAT_LEVEL -lt 22 ]] ; then
  	# Ensure that /dev/std* streams have appropriate sandbox permission for
  	# bug #288863. This can be removed after sandbox is fixed and portage
@@@ -2178,232 -698,20 +707,22 @@@ els
  		0|1|2)
  			;;
  		*)
 -			declare -r ED EPREFIX EROOT
 +			# PREFIX LOCAL: allow prefix vars in any EAPI
 +			#declare -r ED EPREFIX EROOT
 +			# PREFIX LOCAL
  			;;
  	esac
- fi
- 
- ebuild_main() {
  
- 	# Subshell/helper die support (must export for the die helper).
- 	# Since this function is typically executed in a subshell,
- 	# setup EBUILD_MASTER_PID to refer to the current $BASHPID,
- 	# which seems to give the best results when further
- 	# nested subshells call die.
- 	export EBUILD_MASTER_PID=$BASHPID
- 	trap 'exit 1' SIGTERM
- 
- 	if [[ $EBUILD_PHASE != depend ]] ; then
- 		# Force configure scripts that automatically detect ccache to
- 		# respect FEATURES="-ccache".
- 		has ccache $FEATURES || export CCACHE_DISABLE=1
- 
- 		local phase_func=$(_ebuild_arg_to_phase "$EAPI" "$EBUILD_PHASE")
- 		[[ -n $phase_func ]] && _ebuild_phase_funcs "$EAPI" "$phase_func"
- 		unset phase_func
- 	fi
- 
- 	source_all_bashrcs
- 
- 	case ${EBUILD_SH_ARGS} in
- 	nofetch)
- 		ebuild_phase_with_hooks pkg_nofetch
- 		;;
- 	prerm|postrm|postinst|config|info)
- 		if has "$EBUILD_SH_ARGS" config info && \
- 			! declare -F "pkg_$EBUILD_SH_ARGS" >/dev/null ; then
- 			ewarn  "pkg_${EBUILD_SH_ARGS}() is not defined: '${EBUILD##*/}'"
- 		fi
- 		export SANDBOX_ON="0"
- 		if [ "${PORTAGE_DEBUG}" != "1" ] || [ "${-/x/}" != "$-" ]; then
- 			ebuild_phase_with_hooks pkg_${EBUILD_SH_ARGS}
- 		else
- 			set -x
- 			ebuild_phase_with_hooks pkg_${EBUILD_SH_ARGS}
- 			set +x
- 		fi
- 		if [[ $EBUILD_PHASE == postinst ]] && [[ -n $PORTAGE_UPDATE_ENV ]]; then
- 			# Update environment.bz2 in case installation phases
- 			# need to pass some variables to uninstallation phases.
- 			save_ebuild_env --exclude-init-phases | \
- 				filter_readonly_variables --filter-path \
- 				--filter-sandbox --allow-extra-vars \
- 				| ${PORTAGE_BZIP2_COMMAND} -c -f9 > "$PORTAGE_UPDATE_ENV"
- 			assert "save_ebuild_env failed"
- 		fi
- 		;;
- 	unpack|prepare|configure|compile|test|clean|install)
- 		if [[ ${SANDBOX_DISABLED:-0} = 0 ]] ; then
- 			export SANDBOX_ON="1"
- 		else
- 			export SANDBOX_ON="0"
- 		fi
- 
- 		case "$EBUILD_SH_ARGS" in
- 		configure|compile)
- 
- 			local x
- 			for x in ASFLAGS CCACHE_DIR CCACHE_SIZE \
- 				CFLAGS CXXFLAGS LDFLAGS LIBCFLAGS LIBCXXFLAGS ; do
- 				[[ ${!x+set} = set ]] && export $x
- 			done
- 			unset x
- 
- 			has distcc $FEATURES && [[ -n $DISTCC_DIR ]] && \
- 				[[ ${SANDBOX_WRITE/$DISTCC_DIR} = $SANDBOX_WRITE ]] && \
- 				addwrite "$DISTCC_DIR"
- 
- 			x=LIBDIR_$ABI
- 			[ -z "$PKG_CONFIG_PATH" -a -n "$ABI" -a -n "${!x}" ] && \
- 				export PKG_CONFIG_PATH=/usr/${!x}/pkgconfig
- 
- 			if has noauto $FEATURES && \
- 				[[ ! -f $PORTAGE_BUILDDIR/.unpacked ]] ; then
- 				echo
- 				echo "!!! We apparently haven't unpacked..." \
- 					"This is probably not what you"
- 				echo "!!! want to be doing... You are using" \
- 					"FEATURES=noauto so I'll assume"
- 				echo "!!! that you know what you are doing..." \
- 					"You have 5 seconds to abort..."
- 				echo
- 
- 				local x
- 				for x in 1 2 3 4 5 6 7 8; do
- 					LC_ALL=C sleep 0.25
- 				done
- 
- 				sleep 3
- 			fi
- 
- 			cd "$PORTAGE_BUILDDIR"
- 			if [ ! -d build-info ] ; then
- 				mkdir build-info
- 				cp "$EBUILD" "build-info/$PF.ebuild"
- 			fi
- 
- 			#our custom version of libtool uses $S and $D to fix
- 			#invalid paths in .la files
- 			export S D
- 
- 			;;
- 		esac
- 
- 		if [ "${PORTAGE_DEBUG}" != "1" ] || [ "${-/x/}" != "$-" ]; then
- 			dyn_${EBUILD_SH_ARGS}
- 		else
- 			set -x
- 			dyn_${EBUILD_SH_ARGS}
- 			set +x
- 		fi
- 		export SANDBOX_ON="0"
- 		;;
- 	help|pretend|setup|preinst)
- 		#pkg_setup needs to be out of the sandbox for tmp file creation;
- 		#for example, awking and piping a file in /tmp requires a temp file to be created
- 		#in /etc.  If pkg_setup is in the sandbox, both our lilo and apache ebuilds break.
- 		export SANDBOX_ON="0"
- 		if [ "${PORTAGE_DEBUG}" != "1" ] || [ "${-/x/}" != "$-" ]; then
- 			dyn_${EBUILD_SH_ARGS}
- 		else
- 			set -x
- 			dyn_${EBUILD_SH_ARGS}
- 			set +x
- 		fi
- 		;;
- 	depend)
- 		export SANDBOX_ON="0"
- 		set -f
- 
- 		if [ -n "${dbkey}" ] ; then
- 			if [ ! -d "${dbkey%/*}" ]; then
- 				install -d -g ${PORTAGE_GID} -m2775 "${dbkey%/*}"
- 			fi
- 			# Make it group writable. 666&~002==664
- 			umask 002
- 		fi
- 
- 		auxdbkeys="DEPEND RDEPEND SLOT SRC_URI RESTRICT HOMEPAGE LICENSE
- 			DESCRIPTION KEYWORDS INHERITED IUSE REQUIRED_USE PDEPEND PROVIDE EAPI
- 			PROPERTIES DEFINED_PHASES UNUSED_05 UNUSED_04
- 			UNUSED_03 UNUSED_02 UNUSED_01"
- 
- 		#the extra $(echo) commands remove newlines
- 		[ -n "${EAPI}" ] || EAPI=0
- 
- 		if [ -n "${dbkey}" ] ; then
- 			> "${dbkey}"
- 			for f in ${auxdbkeys} ; do
- 				echo $(echo ${!f}) >> "${dbkey}" || exit $?
- 			done
- 		else
- 			for f in ${auxdbkeys} ; do
- 				echo $(echo ${!f}) 1>&9 || exit $?
- 			done
+ 	if [[ -n $EBUILD_SH_ARGS ]] ; then
+ 		(
+ 			# Don't allow subprocesses to inherit the pipe which
+ 			# emerge uses to monitor ebuild.sh.
  			exec 9>&-
- 		fi
- 		set +f
- 		;;
- 	_internal_test)
- 		;;
- 	*)
- 		export SANDBOX_ON="1"
- 		echo "Unrecognized EBUILD_SH_ARGS: '${EBUILD_SH_ARGS}'"
- 		echo
- 		dyn_help
- 		exit 1
- 		;;
- 	esac
- }
- 
- if [[ -s $SANDBOX_LOG ]] ; then
- 	# We use SANDBOX_LOG to check for sandbox violations,
- 	# so we ensure that there can't be a stale log to
- 	# interfere with our logic.
- 	x=
- 	if [[ -n SANDBOX_ON ]] ; then
- 		x=$SANDBOX_ON
- 		export SANDBOX_ON=0
+ 			ebuild_main ${EBUILD_SH_ARGS}
+ 			exit 0
+ 		)
+ 		exit $?
  	fi
- 
- 	rm -f "$SANDBOX_LOG" || \
- 		die "failed to remove stale sandbox log: '$SANDBOX_LOG'"
- 
- 	if [[ -n $x ]] ; then
- 		export SANDBOX_ON=$x
- 	fi
- 	unset x
- fi
- 
- if [[ $EBUILD_PHASE = depend ]] ; then
- 	ebuild_main
- elif [[ -n $EBUILD_SH_ARGS ]] ; then
- 	(
- 		# Don't allow subprocesses to inherit the pipe which
- 		# emerge uses to monitor ebuild.sh.
- 		exec 9>&-
- 
- 		ebuild_main
- 
- 		# Save the env only for relevant phases.
- 		if ! has "$EBUILD_SH_ARGS" clean help info nofetch ; then
- 			umask 002
- 			save_ebuild_env | filter_readonly_variables \
- 				--filter-features > "$T/environment"
- 			assert "save_ebuild_env failed"
- 			chown ${PORTAGE_USER:-portage}:${PORTAGE_GROUP:-portage} "$T/environment" &>/dev/null
- 			chmod g+w "$T/environment" &>/dev/null
- 		fi
- 		[[ -n $PORTAGE_EBUILD_EXIT_FILE ]] && > "$PORTAGE_EBUILD_EXIT_FILE"
- 		if [[ -n $PORTAGE_IPC_DAEMON ]] ; then
- 			[[ ! -s $SANDBOX_LOG ]]
- 			"$PORTAGE_BIN_PATH"/ebuild-ipc exit $?
- 		fi
- 		exit 0
- 	)
- 	exit $?
  fi
  
  # Do not exit when ebuild.sh is sourced by other scripts.
diff --cc bin/egencache
index 50cee68,7766e78..ae76a3d
--- a/bin/egencache
+++ b/bin/egencache
@@@ -791,8 -792,10 +793,12 @@@ def egencache_main(args)
  	if options.portdir is not None:
  		env['PORTDIR'] = options.portdir
  
- 	settings = portage.config(config_root=config_root, _eprefix=EPREFIX,
- 		target_root='/', local_config=False, env=env)
+ 	eprefix = os.environ.get("__PORTAGE_TEST_EPREFIX")
++	if not eprefix:
++		eprefix = EPREFIX
+ 
+ 	settings = portage.config(config_root=config_root,
+ 		local_config=False, env=env, _eprefix=eprefix)
  
  	default_opts = None
  	if not options.ignore_default_opts:
diff --cc bin/isolated-functions.sh
index 69eb4db,733795a..12edfbc
--- a/bin/isolated-functions.sh
+++ b/bin/isolated-functions.sh
@@@ -487,31 -434,30 +436,36 @@@ RC_INDENTATION='
  RC_DEFAULT_INDENT=2
  RC_DOT_PATTERN=''
  
- case "${NOCOLOR:-false}" in
- 	yes|true)
- 		unset_colors
- 		;;
- 	no|false)
- 		set_colors
- 		;;
- esac
+ if [[ $EBUILD_PHASE == depend ]] ; then
+ 	# avoid unneeded stty call in set_colors during "depend" phase
+ 	unset_colors
+ else
+ 	case "${NOCOLOR:-false}" in
+ 		yes|true)
+ 			unset_colors
+ 			;;
+ 		no|false)
+ 			set_colors
+ 			;;
+ 	esac
+ fi
  
 -if [[ -z ${USERLAND} ]] ; then
 -	case $(uname -s) in
 -	*BSD|DragonFly)
 -		export USERLAND="BSD"
 -		;;
 -	*)
 -		export USERLAND="GNU"
 -		;;
 -	esac
 -fi
 +# In Prefix every platform has USERLAND=GNU, even FreeBSD.  Since I
 +# don't know how to reliably "figure out" we are in a Prefix instance of
 +# portage here, I for now disable this check, and hardcode it to GNU.
 +# Somehow it appears stange to me that this code is in this file,
 +# non-ebuilds/eclasses should never rely on USERLAND and XARGS, don't they?
 +#if [[ -z ${USERLAND} ]] ; then
 +#	case $(uname -s) in
 +#	*BSD|DragonFly)
 +#		export USERLAND="BSD"
 +#		;;
 +#	*)
 +#		export USERLAND="GNU"
 +#		;;
 +#	esac
 +#fi
 +[[ -z ${USERLAND} ]] && USERLAND="GNU"
  
  if [[ -z ${XARGS} ]] ; then
  	case ${USERLAND} in
diff --cc pym/portage/package/ebuild/doebuild.py
index a92159f,ba7ebc3..8fc5c41
--- a/pym/portage/package/ebuild/doebuild.py
+++ b/pym/portage/package/ebuild/doebuild.py
@@@ -35,8 -35,7 +35,8 @@@ from portage import auxdbkeys, bsd_chfl
  	unmerge, _encodings, _parse_eapi_ebuild_head, _os_merge, \
  	_shell_quote, _unicode_decode, _unicode_encode
  from portage.const import EBUILD_SH_ENV_FILE, EBUILD_SH_ENV_DIR, \
 -	EBUILD_SH_BINARY, INVALID_ENV_FILE, MISC_SH_BINARY
 +	EBUILD_SH_BINARY, INVALID_ENV_FILE, MISC_SH_BINARY, \
- 	EPREFIX, EPREFIX_LSTRIP, MACOSSANDBOX_PROFILE
++	EPREFIX, MACOSSANDBOX_PROFILE
  from portage.data import portage_gid, portage_uid, secpass, \
  	uid, userpriv_groups
  from portage.dbapi.porttree import _parse_uri_map
diff --cc pym/portage/util/env_update.py
index d39bd39,19c7666..8a2ac57
--- a/pym/portage/util/env_update.py
+++ b/pym/portage/util/env_update.py
@@@ -52,7 -50,7 +50,7 @@@ def env_update(makelinks=1, target_root
  	else:
  		settings = env
  
--	eprefix = settings.get("EPREFIX", "")
++	eprefix = settings.get("EPREFIX", portage.const.EPREFIX)
  	eprefix_lstrip = eprefix.lstrip(os.sep)
  	envd_dir = os.path.join(target_root, eprefix_lstrip, "etc", "env.d")
  	ensure_dirs(envd_dir, mode=0o755)



             reply	other threads:[~2011-09-13 17:42 UTC|newest]

Thread overview: 195+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-13 17:41 Fabian Groffen [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-02-25  9:40 [gentoo-commits] proj/portage:prefix commit in: / Fabian Groffen
2024-02-22  7:27 Fabian Groffen
2024-01-18 10:22 Fabian Groffen
2024-01-18  9:36 Fabian Groffen
2023-12-03 10:10 Fabian Groffen
2023-12-03  9:54 Fabian Groffen
2023-12-03  9:54 Fabian Groffen
2023-12-03  9:54 Fabian Groffen
2023-11-24 20:18 Fabian Groffen
2023-11-24 20:06 Fabian Groffen
2023-11-24 20:06 Fabian Groffen
2023-06-22  8:47 Fabian Groffen
2023-06-17  9:04 Fabian Groffen
2023-06-17  8:41 Fabian Groffen
2022-07-28 17:38 Fabian Groffen
2022-07-27 19:20 Fabian Groffen
2022-07-26 19:39 Fabian Groffen
2022-07-25 15:20 Fabian Groffen
2022-07-24 19:27 Fabian Groffen
2022-07-24 14:01 Fabian Groffen
2022-07-24  9:45 Fabian Groffen
2022-01-14 10:40 Fabian Groffen
2022-01-14 10:32 Fabian Groffen
2021-07-06  7:10 Fabian Groffen
2021-04-16 13:37 Fabian Groffen
2021-01-24  9:02 Fabian Groffen
2021-01-04 10:48 Fabian Groffen
2020-12-07 17:28 Fabian Groffen
2020-12-07 16:46 Fabian Groffen
2020-11-23  7:48 Fabian Groffen
2020-11-22 11:15 Fabian Groffen
2020-09-26 11:29 Fabian Groffen
2020-08-02 12:33 Fabian Groffen
2020-06-02 18:55 Fabian Groffen
2020-01-08 19:14 Fabian Groffen
2019-07-01 13:11 Fabian Groffen
2019-05-30  9:20 Fabian Groffen
2019-02-28 12:31 Fabian Groffen
2019-01-11 10:19 Fabian Groffen
2019-01-07 10:22 Fabian Groffen
2018-12-23 11:14 Fabian Groffen
2018-12-12 18:54 Fabian Groffen
2018-08-04  6:56 Fabian Groffen
2018-06-25  8:34 Fabian Groffen
2018-06-17 14:38 Fabian Groffen
2018-06-17 14:38 Fabian Groffen
2018-05-28 15:24 Fabian Groffen
2018-05-25 19:44 Fabian Groffen
2018-05-25 19:44 Fabian Groffen
2018-05-18 19:46 Fabian Groffen
2017-12-12  8:19 Fabian Groffen
2017-10-29 14:51 Fabian Groffen
2017-10-03  7:32 Fabian Groffen
2017-09-22 10:08 Fabian Groffen
2017-08-21 13:27 Fabian Groffen
2017-08-13  7:21 Fabian Groffen
2017-05-23 13:34 Fabian Groffen
2017-03-25  9:12 Fabian Groffen
2017-03-24 19:09 Fabian Groffen
2017-03-24  7:43 Fabian Groffen
2017-03-23 17:46 Fabian Groffen
2017-03-23 17:32 Fabian Groffen
2017-03-23 17:23 Fabian Groffen
2017-03-23 15:38 Fabian Groffen
2017-03-17  8:25 Fabian Groffen
2017-03-02  8:48 Fabian Groffen
2017-03-02  8:18 Fabian Groffen
2017-02-23 14:05 Fabian Groffen
2017-01-27 15:08 Fabian Groffen
2017-01-27 15:08 Fabian Groffen
2016-03-20 19:31 Fabian Groffen
2016-02-21 16:17 Fabian Groffen
2016-02-21 16:17 Fabian Groffen
2016-02-18 19:35 Fabian Groffen
2016-02-18 19:35 Fabian Groffen
2015-06-20  7:12 Fabian Groffen
2015-06-09 18:30 Fabian Groffen
2015-06-09 18:01 Fabian Groffen
2015-06-04 19:47 Fabian Groffen
2015-04-05  9:15 Fabian Groffen
2014-11-12 17:31 Fabian Groffen
2014-10-02 18:48 Fabian Groffen
2014-09-28 17:52 Fabian Groffen
2014-05-06 19:32 Fabian Groffen
2014-05-06 19:18 Fabian Groffen
2014-04-22 19:52 Fabian Groffen
2014-02-06 21:09 Fabian Groffen
2014-01-06  9:47 Fabian Groffen
2013-09-24 17:29 Fabian Groffen
2013-09-20 17:59 Fabian Groffen
2013-09-18 18:34 Fabian Groffen
2013-09-13 18:02 Fabian Groffen
2013-08-10 20:54 Fabian Groffen
2013-07-10  5:31 Fabian Groffen
2013-07-08 19:32 Fabian Groffen
2013-06-29  5:41 Fabian Groffen
2013-06-27 17:20 Fabian Groffen
2013-06-12  9:02 Fabian Groffen
2013-06-09 15:53 Fabian Groffen
2013-05-04 18:55 Fabian Groffen
2013-04-02 16:57 Fabian Groffen
2013-03-31 19:03 Fabian Groffen
2013-03-31 19:00 Fabian Groffen
2013-03-24  8:36 Fabian Groffen
2013-03-23 19:54 Fabian Groffen
2013-02-28 19:29 Fabian Groffen
2013-02-07 20:01 Fabian Groffen
2013-01-27 21:41 Fabian Groffen
2013-01-27 21:41 Fabian Groffen
2013-01-13 10:26 Fabian Groffen
2013-01-10 21:02 Fabian Groffen
2013-01-05 18:14 Fabian Groffen
2012-12-26 14:48 Fabian Groffen
2012-12-02 15:47 Fabian Groffen
2012-12-02 15:36 Fabian Groffen
2012-12-02 15:33 Fabian Groffen
2012-12-02 15:33 Fabian Groffen
2012-12-02 15:33 Fabian Groffen
2012-12-02 13:12 Fabian Groffen
2012-12-02 12:59 Fabian Groffen
2012-11-04 10:48 Fabian Groffen
2012-10-22 17:25 Fabian Groffen
2012-10-02 12:02 Fabian Groffen
2012-09-30 11:22 Fabian Groffen
2012-09-26 18:26 Fabian Groffen
2012-09-12 18:18 Fabian Groffen
2012-09-09  7:40 Fabian Groffen
2012-09-06 18:14 Fabian Groffen
2012-08-27  6:44 Fabian Groffen
2012-08-12  7:50 Fabian Groffen
2012-07-19 16:25 Fabian Groffen
2012-07-06  7:05 Fabian Groffen
2012-04-23 19:23 Fabian Groffen
2012-04-03 18:04 Fabian Groffen
2012-03-31 19:31 Fabian Groffen
2012-03-01 20:32 Fabian Groffen
2012-02-19  9:58 Fabian Groffen
2012-02-09  8:01 Fabian Groffen
2012-01-10 17:45 Fabian Groffen
2011-12-31 16:45 Fabian Groffen
2011-12-26  9:12 Fabian Groffen
2011-12-23  9:51 Fabian Groffen
2011-12-22  9:51 Fabian Groffen
2011-12-19 18:30 Fabian Groffen
2011-12-14 15:25 Fabian Groffen
2011-12-10 11:28 Fabian Groffen
2011-12-09 20:33 Fabian Groffen
2011-12-02 20:31 Fabian Groffen
2011-12-02 19:20 Fabian Groffen
2011-12-02 19:19 Fabian Groffen
2011-12-02 19:18 Fabian Groffen
2011-12-02 18:03 Fabian Groffen
2011-10-21 17:34 Fabian Groffen
2011-10-21 17:34 Fabian Groffen
2011-10-20 20:28 Fabian Groffen
2011-10-20 17:08 Fabian Groffen
2011-10-20 16:38 Fabian Groffen
2011-10-17 18:36 Fabian Groffen
2011-10-16 13:59 Fabian Groffen
2011-10-15 18:27 Fabian Groffen
2011-10-13  6:52 Fabian Groffen
2011-09-23 18:38 Fabian Groffen
2011-09-23 18:23 Fabian Groffen
2011-09-20 18:25 Fabian Groffen
2011-09-14 18:43 Fabian Groffen
2011-09-14 18:38 Fabian Groffen
2011-08-31 18:39 Fabian Groffen
2011-08-30 18:45 Fabian Groffen
2011-08-29 19:03 Fabian Groffen
2011-08-25 20:25 Fabian Groffen
2011-08-20 17:50 Fabian Groffen
2011-07-26 17:35 Fabian Groffen
2011-07-17  9:48 Fabian Groffen
2011-07-17  8:12 Fabian Groffen
2011-07-01 17:44 Fabian Groffen
2011-06-14 15:39 Fabian Groffen
2011-06-06 17:12 Fabian Groffen
2011-05-28  8:29 Fabian Groffen
2011-05-27 17:41 Fabian Groffen
2011-05-14 13:59 Fabian Groffen
2011-05-02 17:41 Fabian Groffen
2011-04-24 12:08 Fabian Groffen
2011-04-15 18:27 Fabian Groffen
2011-04-15 18:27 Fabian Groffen
2011-03-28 16:52 Fabian Groffen
2011-03-23 19:26 Fabian Groffen
2011-03-17 19:08 Fabian Groffen
2011-03-13 14:45 Fabian Groffen
2011-03-09 19:44 Fabian Groffen
2011-02-26 21:15 Fabian Groffen
2011-02-10 18:46 Fabian Groffen
2011-02-10 18:44 Fabian Groffen
2011-02-10 18:20 Fabian Groffen
2011-02-05 12:25 Fabian Groffen

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=74fec93ae94c0149cac8a6e2af49ee2492c97cce.grobian@gentoo \
    --to=grobian@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