From: "Zac Medico" <zmedico@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/portage:master commit in: /
Date: Sun, 15 May 2011 22:30:38 +0000 (UTC) [thread overview]
Message-ID: <2b02757d04b9a36e9750f5d5008ae4cf6ce82e6f.zmedico@gentoo> (raw)
commit: 2b02757d04b9a36e9750f5d5008ae4cf6ce82e6f
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 22:29:15 2011 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sun May 15 22:29:15 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=2b02757d
make.conf.txt: remove because unused/unmaintained
---
make.conf.txt | 719 ---------------------------------------------------------
1 files changed, 0 insertions(+), 719 deletions(-)
diff --git a/make.conf.txt b/make.conf.txt
deleted file mode 100644
index beb4b0c..0000000
--- a/make.conf.txt
+++ /dev/null
@@ -1,719 +0,0 @@
-make.conf
-*********
-
-Available make.conf settings for portage
-
-SYNOPSIS
-========
-
-/etc/make.conf
-
-DESCRIPTION
-===========
-
-This file contains various variables that are used by Portage.
-Portage will check the currently-defined environment variables
-first for any settings. If no environment settings are found,
-Portage then checks /etc/make.conf. If no setting is found
-in /etc/make.conf, Portage checks the profile's default setting
-from /etc/make.profile/make.defaults. If no setting is found there,
-it finally checks make.globals.
-Please note that all user
-settings should be made in the environment or in /etc/make.conf,
-which is intended to be customized by the user.
-
-VARIABLES
-=========
-
-ACCEPT_KEYWORDS
----------------
-
-:suggest: |accept_keywords|
-:valdesc: space delimited list of KEYWORDS
-
-Enable testing of ebuilds that have not yet been deemed 'stable'. Users
-of the 'x86' architecture would set this to '~x86' while ppc users would
-set this to '~ppc'. This is an incremental variable.
-
-CCACHE_DIR
-----------
-
-:suggest: ${PORTAGE_TMPDIR}/ccache
-:valdesc: path
-
-Defines the location of the ccache working directory. See the ccache(1) man
-page for more information.
-
-CCACHE_SIZE
------------
-
-:valdesc: size
-
-This controls the space use limitations for ccache. The default is 2 gigabytes
-('2G'). Sizes are specified with 'G', 'M', or 'K'.
-
-CFLAGS
-------
-
-:suggest: |cflags|
-:valdesc: valid gcc flags, see gcc manual
-
-Use these variables to set the desired optimization/CPU instruction settings
-for applications that you compile. Nearly all ebuild files will take advantage
-of your custom settings, resulting in a Gentoo Linux that is fully customized
-to your specifications. Please use sane settings as some packages will fail to
-compile/run if the optimizations are too extreme.
-
-CXXFLAGS
---------
-
-:suggest: ${CFLAGS}
-:valdesc: valid gcc flags, see gcc manual
-
-`CFLAGS`_
-
-CHOST
------
-
-:suggest: |chost|
-
-This variable is passed by the ebuild scripts to the configure step as
---host=${CHOST}. This way you can force the build-host.
-
-CLEAN_DELAY
------------
-
-:default: 5
-:valdesc: integer
-
-Determines how long the countdown delay will be for unmerge operations (including
-autoclean).
-
-COLLISION_IGNORE
-----------------
-
-:valdesc: space delimited list of files and/or directories
-
-This variable allows the user to disable `collision-protect`_ for specific files
-and/or directories.
-
-CONFIG_PROTECT
---------------
-
-:default: /etc
-:valdesc: space delimited list of files and/or directories
-
-All files and/or directories that are defined here will have "config file
-protection" enabled for them (unless overridden by _`CONFIG_PROTECT_MASK`).
-
-CONFIG_PROTECT_MASK
--------------------
-
-:default: /etc/env.d
-:valdesc: space delimited list of files and/or directories
-
-All files and/or directories that are defined here will have "config file
-protection" disabled for them.
-
-DISTCC_DIR
-----------
-
-:suggest: ${PORTAGE_TMPDIR}/.distcc
-:valdesc: path
-
-Defines the location of the distcc working directory. See the distcc(1) man
-page for more information.
-
-DISTDIR
--------
-
-:default: |portdir|/distfiles
-:valdesc: path
-
-Defines the location of your local source file repository.
-
-EBEEP_IGNORE
-------------
-
-Defines whether or not to ignore audible beeps when displaying important
-informational messages. This variable is unset by default.
-
-EMERGE_DEFAULT_OPTS
--------------------
-
-:valdesc: emerge options
-
-Options to append to the end of the emerge(1) command line on every invocation.
-These options will not be appended to the command line if --ignore-default-opts
-is specified.
-
-EPAUSE_IGNORE
--------------
-
-Defines whether or not to ignore short pauses that occur when displaying
-important informational messages. This variable is unset by default.
-
-FEATURES
---------
-
-:default: sandbox distlocks metadata-transfer
-:suggest: userpriv usersandbox
-:valdesc: space separated list of feature flags
-
-Various settings affecting portage behavior. Don't disable the defaults without
-a good reason. This is an incremental variable. It can take a combination of the
-following flags:
-
-_`assume-digests`
- When commiting work to cvs with repoman(1), assume that all existing SRC_URI
- digests are correct. This feature also affects digest generation via
- ebuild(1) and emerge(1) (emerge generates digests only when the digest
- feature is enabled).
-
-_`buildpkg`
- Binary packages will be created for all packages that are merged.
-
-_`buildsyspkg`
- Build binary packages for just packages in the system set.
-
-_`ccache`
- Enable portage support for the ccache package. If ${CCACHE_DIR} is not set
- in the users environment, then portage will default to ${PORTAGE_TMPDIR}/ccache
- (with userpriv) and to /root/.ccache otherwise.
-
-_`collision-protect`
- A QA-feature to ensure that a package doesn't overwrite files it doesn't own.
- The `COLLISION_IGNORE`_ variable can be used to selectively disable this feature.
-
-_`digest`
- Autogenerate digests for packages when running the emerge(1) command. If
- the `assume-digests`_ feature is also enabled then existing SRC_URI digests
- will be reused whenever they are available.
-
-_`distcc`
- Enable portage support for the distcc package.
-
-_`distlocks`
- Portage uses lockfiles to ensure competing instances don't clobber
- each other's files. This feature is enabled by default but may cause
- heartache on less intelligent remote filesystems like NFSv2 and some
- strangely configured Samba server (oplocks off, NFS re\-export). A tool
- /usr/lib/portage/bin/clean_locks exists to help handle lock issues
- when a problem arises (normally due to a crash or disconnect).
-
-_`fixpackages`
- Updates dependencies in binary packages to match the current tree, for
- example after package moves. This can take a ot of time if you have many
- binary packages in `PKGDIR`_.
-
-_`getbinpkg`
- Force emerges to always try to fetch files from the `PORTAGE_BINHOST`_.
-
-_`installsources`
- Install source code into /usr/src/debug/${CATEGORY}/${PF} (also see
- `splitdebug`_). This feature works only if debugedit is installed.
-
-_`keeptemp`
- Do not delete the temporary ebuild directory ${T} after the merge process.
-
-_`keepwork`
- Do not delete the build directory ${WORKDIR} after the merge process. This
- may occupy a lot of diskspace.
-
-_`metadata-transfer`
- Automatically perform a metadata transfer when emerge --sync is run.
-
-_`mirror`
- This will cause `FETCHCOMMAND`_ to always be run even if the file already
- exists in `DISTDIR`_.
-
-_`noauto`
- When utilizing ebuild(1), only run the requested function.
-
-_`noclean`
- Do no delete the source and temporary files after the merge process.
-
-_`nodoc`
- Do not install documentation files in /usr/share/doc.
-
-_`noinfo`
- Do not install info pages.
-
-_`noman`
- Do not install manpages.
-
-_`nostrip`
- Prevents the stripping of binaries that are merged to the live filesystem.
-
-_`notitles`
- Disables xterm titlebar updates (which contains status info).
-
-_`parallel-fetch`
- Fetch in the background while compiling.
-
-_`sandbox`
- Use sys-apps/sandbox when building packages to protect the live filesystem.
-
-_`sfperms`
- Stands for Smart Filesystem Permissions. Before merging packages to the
- live filesystem, automatically search for and set permissions on setuid
- and setgid files. Files that are setuid have the group and other read
- bits removed while files that are setgid have the other read bit removed.
- See also `suidctl`_ below.
-
-_`sign`
- When commiting work to cvs with repoman(1), sign the Manifest with
- a GPG key. Read about the `PORTAGE_GPG_KEY`_ variable.
-
-_`splitdebug`
- Prior to stripping ELF etdyn and etexec files, the debugging info is
- stored for later use by debuggers. This feature is disabled by
- `nostrip`_. For installation of source code, see `installsources`_.
-
-_`strict`
- Have portage react strongly to conditions that have the potential to be
- dangerous (like missing or incorrect Manifests entries).
-
-_`stricter`
- Have portage react strongly to conditions that may conflict with system
- security provisions (for example textrels, executable stack). Read about
- the `QA_STRICT`_ variables below.
-
-_`suidctl`
- Before merging packages to the live filesystem, automatically strip setuid
- bits from any file that is not listed in /etc/portage/suidctl.conf.
-
-_`test`
- Run package-specific tests during each merge to help make sure
- the package compiled properly. See *test* in ebuild(1)
- and *src_test()* in ebuild(5).
-
-_`userfetch`
- When portage is run as root, drop privileges to portage:portage during the
- fetching of package sources.
-
-_`userpriv`
- Allow portage to drop root privileges and compile packages as
- portage:portage without `sandbox`_ (unless `usersandbox`_ is also used).
-
-_`usersandbox`
- Enable the sandbox in the compile phase, when running without root privs
- (`userpriv`_).
-
-FETCHCOMMAND
-------------
-
-:default: /usr/bin/wget -t 5 -T 60 --passive-ftp -P \${DISTDIR} \${URI}
-:suggest: /usr/bin/wget -t 5 -T 60 --passive-ftp --limit-rate=200k \${URI} -P \${DISTDIR}
-
-This variable contains the command used for fetching package sources from
-the internet. It must contain the full path to the executable as well as the
-place-holders \${DISTDIR} and \${URI}.
-
-GENTOO_MIRRORS
---------------
-
-:default: http://distfiles.gentoo.org http://distro.ibiblio.org/pub/linux/distributions/gentoo
-:valdesc: space separated list of mirror locations
-
-Insert your space-separated list of local mirrors here. These locations are
-used to download files before the ones listed in the ebuild scripts. Merging
-'app-portage/mirrorselect' can help to select an appropriate mirror.
-
-INSTALL_MASK
-------------
-
-:valdesc: space delimited list of file names
-
-Use this variable if you want to selectively prevent certain files from being
-copied into your file system tree. This does not work on symlinks, but only on
-actual files. Useful if you wish to filter out files like HACKING.gz and
-TODO.gz.
-
-MAKEOPTS
---------
-
-:suggest: -j2
-:valdesc: make options
-
-Use this variable if you want to use parallel make. For example, if you
-have a dual-processor system, set this variable to "-j2" or "-j3" for
-enhanced build performance with many packages. Suggested settings are
-between CPUs+1 and 2*CPUs+1. For more information, see make(1).
-
-NOCOLOR
--------
-
-:default: false
-:valdesc: true | false
-
-Defines if color should be disabled (this is overridden by CLI options).
-
-PKGDIR
-------
-
-:default: |portdir|/packages
-:valdesc: path
-
-Defines the location where created .tbz2 binary packages will be stored.
-
-PORT_LOGDIR
------------
-
-:suggest: /var/log/portage
-:valdesc: path
-
-This variable defines the directory in which per-ebuild logs are kept.
-Logs are created only when this is set and writable.
-
-PORTAGE_BINHOST
----------------
-
-:suggest: ftp://login:pass@grp.mirror.site/pub/grp/i686/athlon-xp
-:valdesc: URI to a binary package server
-
-This is the host from which portage will grab prebuilt-binary packages.
-The list is a single entry specifying the full address of the directory
-serving the tbz2's for your system. This is only used when running with
-the get binary pkg options are given to emerge. Review emerge(1)
-for more information. Note that it should point to the 'All' directory on
-the host that creates the binary packages and not to the root of the `PKGDIR`_.
-
-PORTAGE_ELOG_CLASSES
---------------------
-
-:default: log warn error
-:valdesc: space separated list of logging levels
-
-This variable defines which ebuild messages should be logged by the elog
-subsystem. Possible values are info, log, warn and error.
-
-PORTAGE_ELOG_SYSTEM
--------------------
-
-:suggest: save mail
-:valdesc: space separated list of elog handlers
-
-Selects which elog message handlers are invoked by portage to deliver messages
-captured by elog. If no handler is specified logging is effectively disabled.
-Default handlers (other packages may contain additional handlers) are:
-
-save
- saves one logfile per package in ${PORT_LOGDIR}/elog, /var/log/portage/elog
- if `PORT_LOGDIR`_ is unset
-
-custom
- passes all messages to `PORTAGE_ELOG_COMMAND`_
-
-syslog
- sends all messages to syslog
-
-mail
- sends all messages to the address configured in `PORTAGE_ELOG_MAILURI`_
-
-PORTAGE_ELOG_COMMAND
---------------------
-
-:suggest: /path/to/logprocessor -p '\${PACKAGE}' -f '\${LOGFILE}'
-
-Only used with the "custom" logging module. Specifies a command
-to process log messages. Two variables are expanded:
-
-${PACKAGE}
- expands to the cpv entry of the processed package (see PVR in ebuild(5))
-
-${LOGFILE}
- absolute path to the logfile
-
-Both variables have to be quoted with single quotes
-
-PORTAGE_ELOG_MAILURI
---------------------
-
-:default: root
-:suggest: user@some.domain mail.some.domain
-
-This variable holds all important settings for the mail module. In most cases
-listing the recipient address andthe receiving mailserver should be sufficient,
-but you can also use advanced settings like authentication or TLS. The full
-syntax is:
-``address [[user:passwd@]mailserver[:port]]``
-where
-
-address
- recipient address
-
-user
- username for smtp auth (defaults to none)
-
-passwd
- password for smtp auth (defaults to none)
-
-mailserver
- SMTP server that should be used to deliver the mail (defaults to localhost).
- Alternatively this can also be a the path to a sendmail binary if you don't
- want to use SMTP (e.g. if you only need local delivery to a mbox).
-
-port
- port to use on the given SMTP server (defaults to 25, values > 100000
- indicate that starttls should be used on (port-100000))
-
-PORTAGE_ELOG_MAILFROM
----------------------
-
-:default: portage
-:suggest: portage@some.domain
-:valdesc: sender address
-
-You can set the from-address of logmails with this variable, if unset mails
-are sent by "portage" (this default may fail in some environments).
-
-PORTAGE_ELOG_MAILSUBJECT
-------------------------
-
-:default: [portage] ebuild log for \${PACKAGE} on \${HOST}
-:suggest: package \${PACKAGE} merged on \${HOST} with notice
-:valdesc: mail subject template
-
-Template string to be used as subject for logmails. The following variables
-are exanded:
-
-${PACKAGE}
- see description of `PORTAGE_ELOG_COMMAND`_
-
-${HOST}
- FQDN of the host portage is running on
-
-PORTAGE_GPG_KEY
----------------
-
-:valdesc: GPG key id
-
-This variable tells repoman which GPG key to use for signing Manifests.
-
-PORTAGE_NICENESS
-----------------
-
-:suggest: 3
-:valdesc: integer
-
-The value of this variable will be added to the current nice level that
-emerge is running at. In other words, this will not set the nice level,
-it will increment it. For more information about nice levels and what
-are acceptable ranges, see nice(1).
-
-PORTAGE_RSYNC_EXTRA_OPTS
-------------------------
-
-:suggest: --exclude=/etc/portage/rsync_exclude
-:valdesc: rsync options
-
-Additional rsync options to be used by emerge --sync.
-
-PORTAGE_RSYNC_OPTS
-------------------
-
-:default: --recursive --links --safe-links --perms --times --compress --force --whole-file --delete --delete-after --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages
-:valdesc: rsync options
-
-Default rsync options to be used by emerge --sync. **Don't change this unless
-you know exactly what you're doing!**
-
-PORTAGE_RSYNC_RETRIES
----------------------
-
-:default: -1
-:valdesc: integer
-
-The number of times rsync should retry on failed connections before giving up.
-
-PORTAGE_TMPDIR
---------------
-
-:default: /var/tmp
-:valdesc: path
-
-Defines the location of the temporary build directories.
-
-PORTDIR
--------
-
-:default: |portdir|
-:valdesc: path
-
-Defines the location of your Portage tree.
-
-PORTDIR_OVERLAY
----------------
-
-:suggest: |portdir|/local
-:valdesc: space separated list of overlay paths
-
-Defines the directories in which user made ebuilds are be stored.
-
-RESUMECOMMAND
--------------
-
-:default: /usr/bin/wget -c -t 5 -T 60 --passive-ftp -P \${DISTDIR} \${URI}
-:suggest: /usr/bin/wget -c -t 5 -T 60 --passive-ftp --limit-rate=200k \${URI} -P \${DISTDIR}
-
-This variable contains the command used for resuming package sources that
-have been partially downloaded. It should be defined using the same format
-as `FETCHCOMMAND`_.
-
-.. _QA_STRICT:
-
-QA_STRICT_EXECSTACK
--------------------
-
-:suggest: set
-
-Set this to instruct portage to ignore any QA_EXECSTACK override settings from
-ebuilds. See also ebuild(5).
-
-QA_STRICT_WX_LOAD
------------------
-
-:suggest: set
-
-Set this to instruct portage to ignore any QA_WX_LOAD override settings from
-ebuilds. See also ebuild(5).
-
-QA_STRICT_TEXTRELS
-------------------
-
-:suggest: set
-
-Set this to instruct portage to ignore any QA_TEXTRELS override settings from
-ebuilds. See also ebuild(5).
-
-ROOT
-----
-
-:default: /
-:valdesc: path
-
-Use this variable to specify the target root filesystem to be used for merging
-packages or ebuilds. All RDEPEND and PDEPEND will be installed
-into ROOT while all DEPEND will be still be installed into /.
-Typically, you should set this setting in the environment rather than in
-/etc/make.conf itself. It's commonly used for creating new build
-images. Make sure you use an absolute path.
-
-RPMDIR
-------
-
-:default: |portdir|/rpm
-:valdesc: path
-
-Defines the location where created RPM packages will be stored. Note that RPM
-support in portage is experimental at best.
-
-SYNC
-----
-
-:default: rsync://rsync.gentoo.org/gentoo-portage
-:valdesc: URI to a portage tree server (rsync or cvs)
-
-Insert your preferred rsync mirror here. This rsync server is used to sync
-the local portage tree when emerge --sync is run. Only one server can be
-specified.
-
-USE
----
-
-:suggest: X gtk gnome -alsa
-:valdesc: space delimited list of USE items
-
-This variable contains options that control the build behavior of several
-packages. More information in ebuild(5). Possible USE values
-can be found in |portdir|/profiles/use.desc and |portdir|/profiles/use.local.desc.
-
-USE_EXPAND
-----------
-
-:suggest: LINGUAS VIDEO_CARDS
-:valdesc: space separated list of variable names
-
-Any variable listed here will be used to augment `USE`_ by inserting a new flag
-for every value in that variable, so USE_EXPAND="FOO" and FOO="bar bla" results
-in USE="foo_bar foo_bla".
-
-USE_EXPAND_HIDDEN
------------------
-
-:valdesc: space separated list of variable names
-
-Names of `USE_EXPAND`_ variables that should not be shown in the verbose merge
-list output of the emerge(1) command.
-
-USE_ORDER
----------
-
-:default: env:pkg:conf:defaults:pkginternal
-:valdesc: colon separated list of portage config layers
-
-Determines the precedence of layers in the incremental stacking of the USE
-variable. Precedence decreases from left to right such that env overrides
-pkg, pkg overrides conf, and so forth. *Don't change this unless you know what
-you're doing!* Available layers are:
-
-env
- USE from the current USE environment variable if it exists
-
-pkg
- Per-package USE from /etc/portage/package.use (see portage(5))
-
-conf
- USE from make.conf
-
-defaults
- USE from make.defaults and package.use in the profile (see portage(5))
-
-pkginternal
- USE from ebuild IUSE defaults (flags enabled via a + prefix; see ebuild(5))
-
-REPORTING BUGS
-==============
-
-Please report bugs via http://bugs.gentoo.org/
-
-AUTHORS
-=======
-
-- Daniel Robbins <drobbins@gentoo.org>
-- Nicholas Jones <carpaski@gentoo.org>
-- Mike Frysinger <vapier@gentoo.org>
-- Saleem Abdulrasool <compnerd@gentoo.org>
-- Marius Mauch <genone@gentoo.org>
-
-FILES
-=====
-
-/etc/make.conf
- Contains user-supplied variables and overwrites those in make.defaults.
-
-/usr/share/portage/config/make.globals
- Contains portage defaults for many variables listed here. Don't change this,
- edit /etc/make.conf instead.
-
-|portdir|/profiles/use.desc
- Contains a list of all global USE flags with brief descriptions.
-
-|portdir|/profiles/use.local.desc
- Contains a list of all local USE variables with brief descriptions.
-
-SEE ALSO
-========
-
-- emerge(1)
-- portage(5)
-- ebuild(1)
-- ebuild(5)
-
-.. Substitutions:
-.. |accept_keywords| replace:: ~x86
-.. |cflags| replace:: -march=i686 -O2 -pipe
-.. |chost| replace:: i686-gentoo-linux-gnu
-.. |portdir| replace:: /usr/portage
-
next reply other threads:[~2011-05-15 22:30 UTC|newest]
Thread overview: 552+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-15 22:30 Zac Medico [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-22 0:25 [gentoo-commits] proj/portage:master commit in: / Sam James
2025-01-22 0:22 Sam James
2025-01-21 3:20 Sam James
2024-12-15 13:46 Sam James
2024-11-03 21:33 Mike Gilbert
2024-09-18 6:33 Sam James
2024-09-11 1:40 Sam James
2024-09-11 1:27 Sam James
2024-09-11 1:27 Sam James
2024-09-10 10:29 Ulrich Müller
2024-08-04 5:10 Zac Medico
2024-06-04 1:27 Sam James
2024-06-04 1:27 Sam James
2024-04-28 0:34 Sam James
2024-04-28 0:33 Sam James
2024-04-28 0:29 Sam James
2024-04-28 0:27 Sam James
2024-04-28 0:06 Sam James
2024-04-28 0:06 Sam James
2024-03-07 20:42 Mike Gilbert
2024-02-26 4:12 Mike Gilbert
2024-02-25 8:29 Sam James
2024-02-22 7:18 Sam James
2024-02-22 7:14 Sam James
2024-01-28 23:23 Zac Medico
2024-01-05 8:21 Sam James
2024-01-05 8:21 Sam James
2024-01-02 3:40 Sam James
2024-01-02 3:35 Sam James
2024-01-02 3:35 Sam James
2024-01-02 3:12 Sam James
2023-12-27 21:32 Sam James
2023-12-27 21:24 Sam James
2023-12-27 21:24 Sam James
2023-12-14 4:07 Sam James
2023-12-10 23:03 Sam James
2023-12-10 22:32 Sam James
2023-12-10 22:31 Sam James
2023-12-10 22:31 Sam James
2023-12-10 22:27 Sam James
2023-12-10 22:24 Sam James
2023-12-10 22:01 Sam James
2023-12-08 7:29 Sam James
2023-12-04 6:45 Sam James
2023-12-01 2:47 Sam James
2023-12-01 2:33 Sam James
2023-12-01 2:32 Sam James
2023-11-11 7:23 Sam James
2023-11-11 5:34 Sam James
2023-11-11 2:55 Sam James
2023-11-06 21:39 Sam James
2023-10-30 8:47 Sam James
2023-10-26 15:55 Mike Gilbert
2023-10-25 5:52 Sam James
2023-10-25 5:52 Sam James
2023-10-25 5:44 Sam James
2023-10-25 5:44 Sam James
2023-10-22 22:15 Sam James
2023-10-22 22:15 Sam James
2023-10-22 19:03 Sam James
2023-10-22 19:03 Sam James
2023-10-21 19:23 Ulrich Müller
2023-10-20 1:31 Sam James
2023-10-20 0:48 Sam James
2023-10-13 10:24 Sam James
2023-10-12 18:41 Zac Medico
2023-10-09 19:09 Sam James
2023-10-08 3:31 Sam James
2023-10-06 1:31 Sam James
2023-10-03 15:32 Sam James
2023-09-26 20:54 Sam James
2023-09-21 15:47 Sam James
2023-09-18 0:39 Sam James
2023-09-15 4:28 Sam James
2023-08-24 18:23 Mike Gilbert
2023-08-20 7:55 Sam James
2023-08-19 15:05 Sam James
2023-08-19 14:49 Sam James
2023-08-10 1:44 Sam James
2023-08-10 1:44 Sam James
2023-08-10 1:42 Sam James
2023-08-09 2:49 Sam James
2023-08-08 4:52 Sam James
2023-07-26 8:21 Sam James
2023-07-26 8:21 Sam James
2023-07-26 8:21 Sam James
2023-06-29 8:22 Sam James
2023-06-21 18:55 Sam James
2023-06-16 3:34 Sam James
2023-06-14 19:23 Mike Gilbert
2023-06-06 10:34 Sam James
2023-06-01 1:20 Sam James
2023-06-01 1:20 Sam James
2023-05-26 15:45 Sam James
2023-05-26 1:33 Sam James
2023-05-23 10:08 Sam James
2023-05-23 0:26 Sam James
2023-05-14 5:02 Ulrich Müller
2023-05-11 20:19 Sam James
2023-05-01 7:54 Ulrich Müller
2023-05-01 7:21 Sam James
2023-04-30 23:30 Sam James
2023-04-30 4:10 Sam James
2023-04-29 4:47 Sam James
2023-04-07 9:55 Sam James
2023-04-07 9:52 Sam James
2023-04-07 6:22 Ulrich Müller
2023-03-24 2:17 Sam James
2023-03-23 7:02 Sam James
2023-03-23 6:59 Sam James
2023-03-21 2:32 Sam James
2023-03-21 2:30 Sam James
2023-03-19 19:17 Sam James
2023-03-19 19:17 Sam James
2023-03-04 5:39 Sam James
2023-03-04 5:26 Sam James
2023-03-04 5:26 Sam James
2023-02-27 5:05 Sam James
2023-02-27 4:54 Sam James
2023-02-27 4:54 Sam James
2023-02-27 4:43 Sam James
2023-02-26 22:07 Sam James
2023-02-26 21:56 Sam James
2023-02-26 21:56 Sam James
2023-02-26 21:55 Sam James
2023-02-26 20:22 Sam James
2023-02-26 20:15 Sam James
2023-02-18 10:15 Sam James
2023-02-17 9:14 Sam James
2023-02-17 9:14 Sam James
2023-02-17 1:23 Sam James
2023-02-17 0:53 Sam James
2023-02-03 13:00 Sam James
2023-01-15 22:11 Sam James
2023-01-15 22:11 Sam James
2023-01-14 21:05 Mike Gilbert
2023-01-13 7:41 Sam James
2023-01-10 15:12 Sam James
2023-01-10 15:12 Sam James
2023-01-02 20:45 Mike Gilbert
2023-01-02 5:26 Sam James
2023-01-02 5:26 Sam James
2023-01-01 18:38 John Helmert III
2022-12-31 14:25 Sam James
2022-12-29 19:36 Sam James
2022-12-26 7:13 Sam James
2022-12-26 7:13 Sam James
2022-12-23 20:00 Mike Gilbert
2022-12-10 0:23 Sam James
2022-12-05 0:50 Sam James
2022-12-05 0:46 Sam James
2022-12-05 0:46 Sam James
2022-12-01 5:19 Sam James
2022-12-01 5:19 Sam James
2022-12-01 5:14 Sam James
2022-12-01 5:14 Sam James
2022-11-30 1:22 Sam James
2022-11-20 23:33 Sam James
2022-11-20 3:17 Sam James
2022-11-20 2:59 Sam James
2022-11-20 2:59 Sam James
2022-11-09 2:25 Sam James
2022-11-09 1:20 Sam James
2022-11-02 23:06 Sam James
2022-10-27 23:37 Sam James
2022-10-18 0:37 Sam James
2022-10-18 0:35 Sam James
2022-10-18 0:31 Sam James
2022-10-11 19:20 Sam James
2022-10-04 0:25 Sam James
2022-10-04 0:25 Sam James
2022-09-30 20:36 Sam James
2022-09-29 21:43 Sam James
2022-09-29 21:42 Sam James
2022-09-29 21:37 Sam James
2022-09-29 21:35 Sam James
2022-09-28 23:56 Sam James
2022-09-25 23:27 Mike Gilbert
2022-09-25 19:18 Mike Gilbert
2022-09-25 1:40 Sam James
2022-09-24 16:28 Mike Gilbert
2022-09-23 3:24 Sam James
2022-09-23 3:24 Sam James
2022-09-09 11:01 Sam James
2022-09-09 10:50 Sam James
2022-08-23 0:33 Sam James
2022-08-23 0:33 Sam James
2022-08-13 18:01 Sam James
2022-08-13 17:41 Sam James
2022-08-01 22:47 Sam James
2022-08-01 22:39 Sam James
2022-07-20 3:38 Sam James
2022-07-20 2:16 Sam James
2022-07-20 2:16 Sam James
2022-07-19 21:39 Sam James
2022-07-18 21:41 Sam James
2022-07-18 21:41 Sam James
2022-07-18 20:14 Sam James
2022-07-18 19:41 Sam James
2022-07-18 19:40 Sam James
2022-07-12 23:33 Sam James
2022-07-12 23:33 Sam James
2022-07-12 22:09 Sam James
2022-07-12 22:09 Sam James
2022-07-11 23:17 Sam James
2022-07-11 23:02 Sam James
2022-07-11 23:02 Sam James
2022-07-10 16:37 Sam James
2022-07-10 16:37 Sam James
2022-07-10 16:26 Sam James
2022-07-10 16:26 Sam James
2022-06-06 17:01 Mike Gilbert
2022-06-05 16:21 Mike Gilbert
2022-05-21 10:13 Michał Górny
2022-05-19 4:15 Sam James
2022-05-19 4:13 Sam James
2022-05-19 4:11 Sam James
2022-05-19 4:09 Sam James
2022-05-19 4:09 Sam James
2022-02-21 3:53 Sam James
2022-02-21 3:51 Sam James
2022-02-09 10:47 Sam James
2021-12-12 8:06 Sam James
2021-12-09 9:20 Sam James
2021-12-09 8:22 Sam James
2021-12-09 8:17 Sam James
2021-12-08 21:17 Michał Górny
2021-11-08 23:28 Zac Medico
2021-11-08 22:47 Zac Medico
2021-10-05 7:15 Michał Górny
2021-10-05 6:34 Michał Górny
2021-09-29 7:16 Michał Górny
2021-09-28 8:40 Michał Górny
2021-09-27 8:14 Michał Górny
2021-09-20 21:30 Zac Medico
2021-09-20 5:36 Zac Medico
2021-09-20 3:58 Zac Medico
2021-09-10 6:42 Michał Górny
2021-09-10 6:03 Michał Górny
2021-08-17 9:00 Michał Górny
2021-08-07 17:16 Michał Górny
2021-06-23 20:03 Zac Medico
2021-06-23 11:15 Zac Medico
2021-06-23 11:15 Zac Medico
2021-06-13 22:06 Zac Medico
2021-06-05 21:08 Zac Medico
2021-05-24 9:13 Zac Medico
2021-03-29 7:27 Zac Medico
2021-03-10 5:16 Zac Medico
2021-03-07 16:45 Zac Medico
2021-03-07 16:18 Zac Medico
2021-03-04 10:05 Zac Medico
2021-03-04 7:24 Zac Medico
2021-03-02 12:42 Zac Medico
2021-03-02 9:52 Zac Medico
2021-03-02 9:44 Zac Medico
2021-03-02 9:30 Zac Medico
2021-03-02 9:30 Zac Medico
2021-03-02 8:55 Zac Medico
2021-03-02 8:23 Zac Medico
2021-03-02 6:56 Zac Medico
2021-02-28 11:48 Zac Medico
2021-02-28 11:48 Zac Medico
2021-02-27 23:43 Zac Medico
2021-02-27 8:16 Zac Medico
2021-02-22 13:52 Zac Medico
2021-01-19 11:15 Zac Medico
2021-01-19 7:28 Zac Medico
2021-01-11 9:52 Zac Medico
2020-12-31 2:47 Zac Medico
2020-12-07 8:47 Zac Medico
2020-11-28 21:17 Zac Medico
2020-11-22 6:47 Zac Medico
2020-11-02 2:03 Zac Medico
2020-09-21 6:04 Zac Medico
2020-09-14 7:36 Zac Medico
2020-09-08 3:51 Zac Medico
2020-08-31 7:08 Zac Medico
2020-08-19 5:43 Zac Medico
2020-08-17 5:32 Zac Medico
2020-08-09 6:28 Zac Medico
2020-08-06 7:02 Zac Medico
2020-08-06 7:02 Zac Medico
2020-08-05 2:28 Zac Medico
2020-08-05 2:15 Zac Medico
2020-08-04 19:48 Zac Medico
2020-08-04 19:28 Zac Medico
2020-08-04 4:08 Zac Medico
2020-08-04 3:16 Zac Medico
2020-08-04 1:39 Zac Medico
2020-08-03 23:28 Zac Medico
2020-08-03 21:42 Zac Medico
2020-07-27 3:38 Zac Medico
2020-07-27 1:05 Zac Medico
2020-07-24 2:24 Zac Medico
2020-07-22 16:53 Zac Medico
2020-07-19 5:41 Zac Medico
2020-06-24 5:57 Zac Medico
2020-06-23 2:38 Zac Medico
2020-06-14 23:47 Zac Medico
2020-05-25 0:24 Zac Medico
2020-04-12 1:52 Zac Medico
2020-04-09 7:07 Zac Medico
2020-04-08 6:56 Zac Medico
2020-03-25 7:57 Zac Medico
2020-03-23 2:14 Zac Medico
2020-03-15 1:29 Zac Medico
2020-03-07 23:00 Zac Medico
2020-03-04 10:28 Zac Medico
2020-03-02 5:22 Zac Medico
2020-03-01 7:02 Zac Medico
2020-02-15 18:07 Zac Medico
2020-02-15 1:17 Zac Medico
2020-02-09 1:31 Zac Medico
2020-02-01 22:15 Zac Medico
2020-01-28 5:23 Zac Medico
2020-01-23 7:05 Zac Medico
2020-01-04 22:24 Zac Medico
2020-01-04 8:16 Zac Medico
2019-12-26 23:00 Zac Medico
2019-12-24 1:28 Zac Medico
2019-12-15 23:04 Zac Medico
2019-12-06 4:58 Zac Medico
2019-11-27 3:45 Zac Medico
2019-11-09 5:23 Zac Medico
2019-10-21 19:16 Zac Medico
2019-10-14 23:01 Zac Medico
2019-09-12 2:35 Zac Medico
2019-09-01 21:22 Zac Medico
2019-08-31 6:21 Zac Medico
2019-08-24 3:52 Zac Medico
2019-08-19 4:54 Zac Medico
2019-08-04 21:19 Zac Medico
2019-08-02 3:48 Zac Medico
2019-08-01 20:04 Zac Medico
2019-07-11 4:07 Zac Medico
2019-06-30 23:12 Zac Medico
2019-05-26 5:27 Zac Medico
2019-04-30 2:57 Zac Medico
2019-04-26 3:01 Zac Medico
2019-04-19 4:51 Zac Medico
2019-04-16 2:41 Zac Medico
2019-02-20 0:58 Zac Medico
2019-02-18 1:01 Zac Medico
2019-02-11 19:46 Zac Medico
2019-01-28 6:41 Zac Medico
2019-01-23 5:40 Zac Medico
2019-01-21 0:12 Zac Medico
2019-01-15 6:22 Zac Medico
2019-01-11 4:45 Zac Medico
2019-01-04 5:58 Zac Medico
2018-12-27 22:50 Zac Medico
2018-12-20 4:29 Zac Medico
2018-11-19 7:56 Zac Medico
2018-10-08 22:35 Zac Medico
2018-09-24 7:30 Zac Medico
2018-09-03 18:25 Zac Medico
2018-08-20 23:11 Zac Medico
2018-08-17 23:13 Zac Medico
2018-08-12 2:31 Zac Medico
2018-08-08 4:25 Zac Medico
2018-08-01 8:39 Michał Górny
2018-08-01 8:39 Michał Górny
2018-08-01 8:39 Michał Górny
2018-07-28 7:46 Zac Medico
2018-07-16 7:14 Zac Medico
2018-07-11 9:08 Zac Medico
2018-06-27 4:30 Zac Medico
2018-05-25 16:26 Zac Medico
2018-05-25 3:15 Zac Medico
2018-05-17 18:57 Zac Medico
2018-05-16 22:52 Zac Medico
2018-05-04 17:32 Zac Medico
2018-05-03 23:22 Zac Medico
2018-05-03 21:35 Zac Medico
2018-05-02 2:46 Zac Medico
2018-05-01 20:43 Zac Medico
2018-04-18 22:31 Zac Medico
2018-04-17 18:52 Zac Medico
2018-04-17 3:13 Zac Medico
2018-04-07 2:08 Zac Medico
2018-04-02 17:11 Zac Medico
2018-03-30 4:23 Zac Medico
2018-03-30 4:23 Zac Medico
2018-03-28 16:12 Zac Medico
2018-03-28 7:52 Zac Medico
2018-02-03 3:45 Zac Medico
2018-02-01 23:33 Zac Medico
2018-02-01 6:42 Zac Medico
2018-01-30 6:21 Zac Medico
2018-01-21 1:40 Zac Medico
2017-12-16 0:56 Zac Medico
2017-12-11 4:03 Zac Medico
2017-12-08 5:38 Zac Medico
2017-12-02 21:46 Zac Medico
2017-11-30 20:49 Zac Medico
2017-11-21 21:25 Zac Medico
2017-11-21 2:04 Zac Medico
2017-11-20 1:44 Zac Medico
2017-11-14 4:32 Zac Medico
2017-10-27 20:23 Zac Medico
2017-10-20 3:46 Zac Medico
2017-10-02 19:35 Zac Medico
2017-09-20 0:14 Zac Medico
2017-09-19 20:51 Zac Medico
2017-08-20 10:27 Zac Medico
2017-08-13 19:19 Zac Medico
2017-08-13 0:54 Zac Medico
2017-08-13 0:44 Zac Medico
2017-07-04 21:41 Manuel Rüger
2017-07-02 18:10 Zac Medico
2017-06-27 20:06 [gentoo-commits] proj/portage:repoman " Brian Dolbec
2017-05-20 6:34 ` [gentoo-commits] proj/portage:master " Brian Dolbec
2017-05-20 6:32 Brian Dolbec
2017-03-17 0:50 Brian Dolbec
2017-03-13 21:46 Michał Górny
2017-03-01 22:45 Brian Dolbec
2017-02-15 17:06 Mike Gilbert
2017-01-06 17:17 Brian Dolbec
2016-12-05 10:15 Brian Dolbec
2016-10-11 19:44 Brian Dolbec
2016-10-11 18:54 Brian Dolbec
2016-10-06 16:01 Zac Medico
2016-09-19 3:10 Brian Dolbec
2016-09-19 1:32 Brian Dolbec
2016-09-14 23:14 Brian Dolbec
2016-07-02 19:25 Brian Dolbec
2016-06-30 16:08 Brian Dolbec
2016-06-23 18:01 Brian Dolbec
2016-05-15 23:51 Brian Dolbec
2016-05-15 23:51 Brian Dolbec
2016-03-29 10:12 Alexander Berntsen
2016-03-10 23:26 Brian Dolbec
2016-03-02 16:51 Zac Medico
2016-02-25 2:05 Zac Medico
2016-02-25 1:44 Zac Medico
2016-01-29 11:17 Alexander Berntsen
2016-01-28 11:54 Alexander Berntsen
2016-01-29 11:17 ` Alexander Berntsen
2016-01-18 18:58 Brian Dolbec
2015-12-30 23:38 [gentoo-commits] proj/portage:repoman " Brian Dolbec
2015-11-12 19:28 ` [gentoo-commits] proj/portage:master " Brian Dolbec
2015-11-24 23:24 Brian Dolbec
2015-11-17 21:01 Brian Dolbec
2015-11-12 19:28 Brian Dolbec
2015-10-09 15:00 Brian Dolbec
2015-10-08 0:01 Brian Dolbec
2015-09-26 20:53 Brian Dolbec
2015-09-25 0:23 Brian Dolbec
2015-09-21 23:40 Brian Dolbec
2015-09-03 17:55 Mike Frysinger
2015-06-04 2:52 Mike Frysinger
2015-06-04 2:50 Mike Frysinger
2015-05-18 23:19 Brian Dolbec
2015-05-14 19:05 Brian Dolbec
2015-03-04 21:53 Brian Dolbec
2015-03-04 20:39 Brian Dolbec
2015-03-04 20:39 Brian Dolbec
2015-02-13 17:45 Brian Dolbec
2015-02-13 17:26 Brian Dolbec
2015-02-12 6:02 Brian Dolbec
2015-02-12 6:02 Brian Dolbec
2015-02-03 20:57 Brian Dolbec
2014-12-04 1:34 Brian Dolbec
2014-10-20 4:05 Brian Dolbec
2014-10-20 4:05 Brian Dolbec
2014-10-19 3:16 Brian Dolbec
2014-09-26 2:17 Brian Dolbec
2014-09-26 2:17 Brian Dolbec
2014-09-20 4:52 Brian Dolbec
2014-09-16 22:17 Brian Dolbec
2014-09-16 21:04 Brian Dolbec
2014-09-16 21:04 Brian Dolbec
2014-09-11 23:45 Brian Dolbec
2014-08-19 7:01 Michał Górny
2014-08-19 7:01 Michał Górny
2014-08-19 7:01 Michał Górny
2014-08-19 7:01 Michał Górny
2014-08-19 7:01 Michał Górny
2014-08-19 7:01 Michał Górny
2014-08-12 22:39 Alexander Berntsen
2014-08-12 21:55 Alexander Berntsen
2014-08-12 21:55 Alexander Berntsen
2014-08-12 21:44 Michał Górny
2014-08-19 7:01 ` Michał Górny
2014-08-12 21:00 Brian Dolbec
2014-08-01 19:54 [gentoo-commits] proj/portage:v2.2.11 " Alexander Berntsen
2014-08-01 19:55 ` [gentoo-commits] proj/portage:master " Alexander Berntsen
2014-07-31 15:46 Alexander Berntsen
2014-04-19 5:26 Brian Dolbec
2014-04-04 23:01 Brian Dolbec
2014-03-30 0:22 Alexander Berntsen
2014-03-30 0:22 Alexander Berntsen
2014-03-30 0:22 Alexander Berntsen
2014-03-30 0:22 Alexander Berntsen
2014-03-23 15:57 Arfrever Frehtes Taifersar Arahesis
2014-03-23 13:59 Arfrever Frehtes Taifersar Arahesis
2014-03-23 13:25 Brian Dolbec
2014-03-23 13:25 Brian Dolbec
2014-02-24 0:53 Alexander Berntsen
2014-02-19 23:03 Alexander Berntsen
2014-01-05 23:20 Brian Dolbec
2014-01-05 23:20 Brian Dolbec
2014-01-05 23:20 Brian Dolbec
2014-01-05 19:33 Mike Frysinger
2014-01-05 19:32 Mike Frysinger
2014-01-05 19:32 Mike Frysinger
2014-01-05 15:26 Mike Frysinger
2013-09-23 20:52 Zac Medico
2013-09-23 19:48 Zac Medico
2013-08-22 4:23 Zac Medico
2013-07-26 8:03 Zac Medico
2013-07-26 8:02 Zac Medico
2013-07-26 8:00 Zac Medico
2013-07-25 19:12 Zac Medico
2013-07-21 3:49 Arfrever Frehtes Taifersar Arahesis
2013-05-18 19:22 Zac Medico
2013-01-14 23:11 Arfrever Frehtes Taifersar Arahesis
2013-01-14 17:16 Zac Medico
2013-01-09 18:51 Zac Medico
2013-01-05 11:14 Zac Medico
2013-01-04 13:55 Zac Medico
2013-01-01 12:26 Zac Medico
2012-12-22 8:22 Zac Medico
2012-10-23 2:36 Zac Medico
2012-10-07 4:51 Arfrever Frehtes Taifersar Arahesis
2012-09-21 22:22 Zac Medico
2012-09-21 21:53 Zac Medico
2012-09-20 19:05 Zac Medico
2012-09-09 4:17 Zac Medico
2012-08-18 0:09 Zac Medico
2012-07-24 18:34 Zac Medico
2012-06-23 0:52 Zac Medico
2012-06-23 0:38 Zac Medico
2012-06-13 10:21 Zac Medico
2012-03-17 1:28 Zac Medico
2012-02-14 0:41 Zac Medico
2012-01-11 12:38 Zac Medico
2012-01-11 12:29 Zac Medico
2012-01-11 12:20 Zac Medico
2011-12-18 18:20 Zac Medico
2011-11-06 5:43 Zac Medico
2011-10-25 19:53 Zac Medico
2011-10-25 6:43 Zac Medico
2011-10-21 17:34 [gentoo-commits] proj/portage:prefix " Fabian Groffen
2011-10-20 20:40 ` [gentoo-commits] proj/portage:master " Fabian Groffen
2011-10-14 7:01 Zac Medico
2011-10-09 20:41 Mike Frysinger
2011-07-26 0:45 Zac Medico
2011-06-30 1:11 Zac Medico
2011-06-02 21:55 Zac Medico
2011-06-02 21:45 Zac Medico
2011-05-01 14:20 Zac Medico
2011-04-03 17:30 Arfrever Frehtes Taifersar Arahesis
2011-02-26 20:12 Arfrever Frehtes Taifersar Arahesis
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=2b02757d04b9a36e9750f5d5008ae4cf6ce82e6f.zmedico@gentoo \
--to=zmedico@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