From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/openrc/
Date: Wed, 6 Sep 2017 22:39:38 +0000 (UTC) [thread overview]
Message-ID: <1504737557.cdf38a2bd83ff7b6fb4489e7de4d287b236c971e.williamh@gentoo> (raw)
commit: cdf38a2bd83ff7b6fb4489e7de4d287b236c971e
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 6 22:38:32 2017 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Sep 6 22:39:17 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdf38a2b
sys-apps/openrc: 0.30 version bump
Package-Manager: Portage-2.3.6, Repoman-2.3.1
sys-apps/openrc/Manifest | 1 +
sys-apps/openrc/openrc-0.30.ebuild | 329 +++++++++++++++++++++++++++++++++++++
2 files changed, 330 insertions(+)
diff --git a/sys-apps/openrc/Manifest b/sys-apps/openrc/Manifest
index 0f6150ee1bf..999beffc955 100644
--- a/sys-apps/openrc/Manifest
+++ b/sys-apps/openrc/Manifest
@@ -8,3 +8,4 @@ DIST openrc-0.26.3.tar.gz 218708 SHA256 f54b353addd3efe1b3c31098c792b9c0052b893d
DIST openrc-0.27.2.tar.gz 223572 SHA256 4e9c12c77c101b6ea255f1a9291c4c4d228c7ddc8b8ef4aa8d5d6f6900958ea5 SHA512 a3f3ed8f6dbd188065fc4ed0af1e4ca0d203dbad092bc67405bea182be359bf37c9c94cb97d898c0d34befef92e9d8a2f6a8b4bafe7e95fcaa291b5d0aabed22 WHIRLPOOL 4837d2244d5894dfdab0fcc36f791500eada82c0378e944443b4b76c7191abe67d9b3cacf5c6e787ebbfdaff2f8792878b7cb8894e3dbc3ff2444fab6596aeb4
DIST openrc-0.28.tar.gz 224228 SHA256 9548b03ffc164f75887d810469f0535a16c5c8c2e615e250d5753a16e66cf317 SHA512 a10c293bf4287bcc4ffb9c996cbc1294f979483ea9fb2efb0dd1becee193f49ff114530c078850e8c11cf2c0a812be2e74801352fdbfe313b90cd9af5b8ccf93 WHIRLPOOL d55ae26bef0ebf4c17f484c476c08cefe40d0bdaf55a571bb4cfefaf67248661661eb28936e509c4bbccb2f4a0e36e8d01f7b6ae3dc2b1831f571b26d0ac6223
DIST openrc-0.29.tar.gz 223275 SHA256 b919c4520e93ba02db24e7766d32688928d5bb0cc8fe2f250277c46274d99927 SHA512 1accc52c3e729432fee433395eb7551fa7913004999c595f6485a0505b7916338df6d9e7d95304e865adf67df54378525a758b34bb67beefe240a90700e4f7d8 WHIRLPOOL 341ae930257f23513fd3582a7e329c48f546d306c467bab3430a8838c343d5697db5941e3590a8f1c33f34a0eefac07f0fb9c0e4a752d1659293374057cc4aea
+DIST openrc-0.30.tar.gz 222383 SHA256 29b4d565bc37f51585c4a9aabedad46d79031861209cbda3a916a0a01c56e0bc SHA512 d1893adc776184cdb9a7ab884250d29357d1e4855f5f1f93577e6ca2ff30f3233d263d237672395caaff6e479bcba5e52c31c9089e8904ed70b40a29f10864cb WHIRLPOOL 68f931a6c8fb141d85217fa8d37e9a0507d583e7fc41a5db78b9700223f52ea06ffb514c19f541b93977609c351872804968fdd2ad0431055283c034c2a89698
diff --git a/sys-apps/openrc/openrc-0.30.ebuild b/sys-apps/openrc/openrc-0.30.ebuild
new file mode 100644
index 00000000000..278de480e1f
--- /dev/null
+++ b/sys-apps/openrc/openrc-0.30.ebuild
@@ -0,0 +1,329 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic pam toolchain-funcs
+
+DESCRIPTION="OpenRC manages the services, startup and shutdown of a host"
+HOMEPAGE="https://github.com/openrc/openrc/"
+
+if [[ ${PV} == "9999" ]]; then
+ EGIT_REPO_URI="https://github.com/OpenRC/${PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="audit debug ncurses pam newnet prefix +netifrc selinux static-libs
+ unicode kernel_linux kernel_FreeBSD"
+
+COMMON_DEPEND="kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc sys-process/fuser-bsd ) )
+ ncurses? ( sys-libs/ncurses:0= )
+ pam? (
+ sys-auth/pambase
+ virtual/pam
+ )
+ audit? ( sys-process/audit )
+ kernel_linux? (
+ sys-process/psmisc
+ !<sys-process/procps-3.3.9-r2
+ )
+ selinux? (
+ sys-apps/policycoreutils
+ sys-libs/libselinux
+ )
+ !<sys-apps/baselayout-2.1-r1
+ !<sys-fs/udev-init-scripts-27"
+DEPEND="${COMMON_DEPEND}
+ virtual/os-headers
+ ncurses? ( virtual/pkgconfig )"
+RDEPEND="${COMMON_DEPEND}
+ !prefix? (
+ kernel_linux? (
+ >=sys-apps/sysvinit-2.86-r6[selinux?]
+ virtual/tmpfiles
+ )
+ kernel_FreeBSD? ( sys-freebsd/freebsd-sbin )
+ )
+ selinux? (
+ sec-policy/selinux-base-policy
+ sec-policy/selinux-openrc
+ )
+"
+
+PDEPEND="netifrc? ( net-misc/netifrc )"
+
+src_prepare() {
+ default
+
+ sed -i 's:0444:0644:' mk/sys.mk || die
+
+ if [[ ${PV} == "9999" ]] ; then
+ local ver="git-${EGIT_VERSION:0:6}"
+ sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/gitver.mk || die
+ fi
+}
+
+src_compile() {
+ unset LIBDIR #266688
+
+ MAKE_ARGS="${MAKE_ARGS}
+ LIBNAME=$(get_libdir)
+ LIBEXECDIR=${EPREFIX}/$(get_libdir)/rc
+ MKNET=$(usex newnet)
+ MKSELINUX=$(usex selinux)
+ MKAUDIT=$(usex audit)
+ MKPAM=$(usev pam)
+ MKSTATICLIBS=$(usex static-libs)"
+
+ local brand="Unknown"
+ if use kernel_linux ; then
+ MAKE_ARGS="${MAKE_ARGS} OS=Linux"
+ brand="Linux"
+ elif use kernel_FreeBSD ; then
+ MAKE_ARGS="${MAKE_ARGS} OS=FreeBSD"
+ brand="FreeBSD"
+ fi
+ export BRANDING="Gentoo ${brand}"
+ use prefix && MAKE_ARGS="${MAKE_ARGS} MKPREFIX=yes PREFIX=${EPREFIX}"
+ export DEBUG=$(usev debug)
+ export MKTERMCAP=$(usev ncurses)
+
+ tc-export CC AR RANLIB
+ emake ${MAKE_ARGS}
+}
+
+# set_config <file> <option name> <yes value> <no value> test
+# a value of "#" will just comment out the option
+set_config() {
+ local file="${ED}/$1" var=$2 val com
+ eval "${@:5}" && val=$3 || val=$4
+ [[ ${val} == "#" ]] && com="#" && val='\2'
+ sed -i -r -e "/^#?${var}=/{s:=([\"'])?([^ ]*)\1?:=\1${val}\1:;s:^#?:${com}:}" "${file}"
+}
+
+set_config_yes_no() {
+ set_config "$1" "$2" YES NO "${@:3}"
+}
+
+src_install() {
+ emake ${MAKE_ARGS} DESTDIR="${D}" install
+
+ # move the shared libs back to /usr so ldscript can install
+ # more of a minimal set of files
+ # disabled for now due to #270646
+ #mv "${ED}"/$(get_libdir)/lib{einfo,rc}* "${ED}"/usr/$(get_libdir)/ || die
+ #gen_usr_ldscript -a einfo rc
+ gen_usr_ldscript libeinfo.so
+ gen_usr_ldscript librc.so
+
+ if ! use kernel_linux; then
+ keepdir /$(get_libdir)/rc/init.d
+ fi
+ keepdir /$(get_libdir)/rc/tmp
+
+ # Backup our default runlevels
+ dodir /usr/share/"${PN}"
+ cp -PR "${ED}"/etc/runlevels "${ED}"/usr/share/${PN} || die
+ rm -rf "${ED}"/etc/runlevels
+
+ # Setup unicode defaults for silly unicode users
+ set_config_yes_no /etc/rc.conf unicode use unicode
+
+ # Cater to the norm
+ set_config_yes_no /etc/conf.d/keymaps windowkeys '(' use x86 '||' use amd64 ')'
+
+ # On HPPA, do not run consolefont by default (bug #222889)
+ if use hppa; then
+ rm -f "${ED}"/usr/share/openrc/runlevels/boot/consolefont
+ fi
+
+ # Support for logfile rotation
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}"/openrc.logrotate openrc
+
+ # install gentoo pam.d files
+ newpamd "${FILESDIR}"/start-stop-daemon.pam start-stop-daemon
+ newpamd "${FILESDIR}"/start-stop-daemon.pam supervise-daemon
+
+ # install documentation
+ dodoc ChangeLog *.md
+ if use newnet; then
+ dodoc README.newnet
+ fi
+}
+
+add_boot_init() {
+ local initd=$1
+ local runlevel=${2:-boot}
+ # if the initscript is not going to be installed and is not
+ # currently installed, return
+ [[ -e "${ED}"/etc/init.d/${initd} || -e "${EROOT}"etc/init.d/${initd} ]] \
+ || return
+ [[ -e "${EROOT}"etc/runlevels/${runlevel}/${initd} ]] && return
+
+ # if runlevels dont exist just yet, then create it but still flag
+ # to pkg_postinst that it needs real setup #277323
+ if [[ ! -d "${EROOT}"etc/runlevels/${runlevel} ]] ; then
+ mkdir -p "${EROOT}"etc/runlevels/${runlevel}
+ touch "${EROOT}"etc/runlevels/.add_boot_init.created
+ fi
+
+ elog "Auto-adding '${initd}' service to your ${runlevel} runlevel"
+ ln -snf /etc/init.d/${initd} "${EROOT}"etc/runlevels/${runlevel}/${initd}
+}
+add_boot_init_mit_config() {
+ local config=$1 initd=$2
+ if [[ -e ${EROOT}${config} ]] ; then
+ if [[ -n $(sed -e 's:#.*::' -e '/^[[:space:]]*$/d' "${EROOT}"${config}) ]] ; then
+ add_boot_init ${initd}
+ fi
+ fi
+}
+
+pkg_preinst() {
+ local f LIBDIR=$(get_libdir)
+
+ # avoid default thrashing in conf.d files when possible #295406
+ if [[ -e "${EROOT}"etc/conf.d/hostname ]] ; then
+ (
+ unset hostname HOSTNAME
+ source "${EROOT}"etc/conf.d/hostname
+ : ${hostname:=${HOSTNAME}}
+ [[ -n ${hostname} ]] && set_config /etc/conf.d/hostname hostname "${hostname}"
+ )
+ fi
+
+ # set default interactive shell to sulogin if it exists
+ set_config /etc/rc.conf rc_shell /sbin/sulogin "#" test -e /sbin/sulogin
+
+ # termencoding was added in 0.2.1 and needed in boot
+ has_version ">=sys-apps/openrc-0.2.1" || add_boot_init termencoding
+
+ # swapfiles was added in 0.9.9 and needed in boot (february 2012)
+ has_version ">=sys-apps/openrc-0.9.9" || add_boot_init swapfiles
+
+ if ! has_version ">=sys-apps/openrc-0.11"; then
+ add_boot_init sysfs sysinit
+ fi
+
+ if ! has_version ">=sys-apps/openrc-0.11.3" ; then
+ migrate_udev_mount_script
+ add_boot_init tmpfiles.setup boot
+ fi
+
+ # these were added in 0.12.
+ if ! has_version ">=sys-apps/openrc-0.12"; then
+ add_boot_init loopback
+ add_boot_init tmpfiles.dev sysinit
+
+ # ensure existing /etc/conf.d/net is not removed
+ # undoes the hack to get around CONFIG_PROTECT in openrc-0.11.8 and earlier
+ # this needs to stay in openrc ebuilds for a long time. :(
+ # Added in 0.12.
+ if [[ -f "${EROOT}"etc/conf.d/net ]]; then
+ einfo "Modifying conf.d/net to keep it from being removed"
+ cat <<-EOF >>"${EROOT}"etc/conf.d/net
+
+# The network scripts are now part of net-misc/netifrc
+# In order to avoid sys-apps/${P} from removing this file, this comment was
+# added; you can safely remove this comment. Please see
+# /usr/share/doc/netifrc*/README* for more information.
+EOF
+ fi
+ fi
+ has_version ">=sys-apps/openrc-0.14" || add_boot_init binfmt
+
+ if ! has_version ">=sys-apps/openrc-0.18.3"; then
+ add_boot_init mtab
+ if [[ -f "${EROOT}"etc/mtab ]] && [[ ! -L "${EROOT}"etc/mtab ]]; then
+ ewarn "${EROOT}etc/mtab will be replaced with a"
+ ewarn "symbolic link to /proc/self/mounts on the next"
+ ewarn "reboot."
+ ewarn "Change the setting in ${EROOT}etc/conf.d/mtab"
+ ewarn "if you do not want this to happen."
+ fi
+ fi
+}
+
+# >=OpenRC-0.11.3 requires udev-mount to be in the sysinit runlevel with udev.
+migrate_udev_mount_script() {
+ if [ -e "${EROOT}"etc/runlevels/sysinit/udev -a \
+ ! -e "${EROOT}"etc/runlevels/sysinit/udev-mount ]; then
+ add_boot_init udev-mount sysinit
+ fi
+ return 0
+}
+
+pkg_postinst() {
+ local LIBDIR=$(get_libdir)
+
+ # Make our runlevels if they don't exist
+ if [[ ! -e "${EROOT}"etc/runlevels ]] || [[ -e "${EROOT}"etc/runlevels/.add_boot_init.created ]] ; then
+ einfo "Copying across default runlevels"
+ cp -RPp "${EROOT}"usr/share/${PN}/runlevels "${EROOT}"etc
+ rm -f "${EROOT}"etc/runlevels/.add_boot_init.created
+ else
+ if [[ ! -e "${EROOT}"etc/runlevels/sysinit/devfs ]] ; then
+ mkdir -p "${EROOT}"etc/runlevels/sysinit
+ cp -RPp "${EROOT}"usr/share/${PN}/runlevels/sysinit/* \
+ "${EROOT}"etc/runlevels/sysinit
+ fi
+ if [[ ! -e "${EROOT}"etc/runlevels/shutdown/mount-ro ]] ; then
+ mkdir -p "${EROOT}"etc/runlevels/shutdown
+ cp -RPp "${EROOT}"usr/share/${PN}/runlevels/shutdown/* \
+ "${EROOT}"etc/runlevels/shutdown
+ fi
+ if [[ ! -e "${EROOT}"etc/runlevels/nonetwork/local ]]; then
+ cp -RPp "${EROOT}"usr/share/${PN}/runlevels/nonetwork \
+ "${EROOT}"etc/runlevels
+ fi
+ fi
+
+ if use hppa; then
+ elog "Setting the console font does not work on all HPPA consoles."
+ elog "You can still enable it by running:"
+ elog "# rc-update add consolefont boot"
+ fi
+
+ # Handle the conf.d/local.{start,stop} -> local.d transition
+ if path_exists -o "${EROOT}"etc/conf.d/local.{start,stop} ; then
+ elog "Moving your ${EROOT}etc/conf.d/local.{start,stop}"
+ elog "files to ${EROOT}etc/local.d"
+ mv "${EROOT}"etc/conf.d/local.start "${EROOT}"etc/local.d/baselayout1.start
+ mv "${EROOT}"etc/conf.d/local.stop "${EROOT}"etc/local.d/baselayout1.stop
+ chmod +x "${EROOT}"etc/local.d/*{start,stop}
+ fi
+
+ if use kernel_linux && [[ "${EROOT}" = "/" ]]; then
+ if ! /$(get_libdir)/rc/sh/migrate-to-run.sh; then
+ ewarn "The dependency data could not be migrated to /run/openrc."
+ ewarn "This means you need to reboot your system."
+ fi
+ fi
+
+ # update the dependency tree after touching all files #224171
+ [[ "${EROOT}" = "/" ]] && "${EROOT}/${LIBDIR}"/rc/bin/rc-depend -u
+
+ if ! use newnet && ! use netifrc; then
+ ewarn "You have emerged OpenRc without network support. This"
+ ewarn "means you need to SET UP a network manager such as"
+ ewarn " net-misc/netifrc, net-misc/dhcpcd, net-misc/wicd,"
+ ewarn "net-misc/NetworkManager, or net-vpn/badvpn."
+ ewarn "Or, you have the option of emerging openrc with the newnet"
+ ewarn "use flag and configuring /etc/conf.d/network and"
+ ewarn "/etc/conf.d/staticroute if you only use static interfaces."
+ ewarn
+ fi
+
+ if use newnet && [ ! -e "${EROOT}"etc/runlevels/boot/network ]; then
+ ewarn "Please add the network service to your boot runlevel"
+ ewarn "as soon as possible. Not doing so could leave you with a system"
+ ewarn "without networking."
+ ewarn
+ fi
+}
next reply other threads:[~2017-09-06 22:39 UTC|newest]
Thread overview: 422+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-06 22:39 William Hubbs [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-01 17:45 [gentoo-commits] repo/gentoo:master commit in: sys-apps/openrc/ William Hubbs
2024-09-23 19:00 William Hubbs
2024-09-18 18:50 William Hubbs
2024-09-18 18:50 William Hubbs
2024-09-13 17:05 William Hubbs
2024-09-13 16:28 William Hubbs
2024-09-09 22:24 William Hubbs
2024-06-28 20:50 William Hubbs
2024-06-28 20:50 William Hubbs
2024-06-26 20:35 William Hubbs
2024-06-26 20:35 William Hubbs
2024-06-26 9:46 Sam James
2024-06-25 18:28 William Hubbs
2024-06-25 16:39 William Hubbs
2024-04-01 19:36 William Hubbs
2024-04-01 4:19 William Hubbs
2024-03-25 22:37 William Hubbs
2024-03-25 22:24 William Hubbs
2024-03-25 20:48 William Hubbs
2024-03-25 20:43 William Hubbs
2024-01-21 20:35 Sam James
2024-01-21 20:35 Sam James
2024-01-21 20:35 Sam James
2024-01-21 20:35 Sam James
2024-01-21 20:35 Sam James
2024-01-21 20:35 Sam James
2024-01-21 20:35 Sam James
2024-01-18 22:37 William Hubbs
2024-01-18 22:30 William Hubbs
2024-01-18 3:35 Sam James
2024-01-16 0:29 William Hubbs
2024-01-12 17:52 William Hubbs
2023-11-17 5:52 William Hubbs
2023-10-10 19:26 William Hubbs
2023-10-03 19:14 William Hubbs
2023-09-28 22:48 William Hubbs
2023-09-19 21:24 William Hubbs
2023-09-19 21:24 William Hubbs
2023-09-01 16:31 Arthur Zamarin
2023-09-01 16:31 Arthur Zamarin
2023-09-01 16:31 Arthur Zamarin
2023-09-01 16:31 Arthur Zamarin
2023-09-01 16:31 Arthur Zamarin
2023-09-01 16:31 Arthur Zamarin
2023-09-01 16:31 Arthur Zamarin
2023-09-01 16:30 Arthur Zamarin
2023-08-31 19:27 William Hubbs
2023-08-31 19:27 William Hubbs
2023-07-19 18:59 Arthur Zamarin
2023-07-19 18:59 Arthur Zamarin
2023-07-18 19:18 Sam James
2023-07-14 15:51 Arthur Zamarin
2023-07-14 15:51 Arthur Zamarin
2023-07-14 15:51 Arthur Zamarin
2023-07-14 15:51 Arthur Zamarin
2023-07-14 15:51 Arthur Zamarin
2023-07-05 21:48 William Hubbs
2023-04-20 16:48 William Hubbs
2023-04-20 16:48 William Hubbs
2023-04-18 5:50 William Hubbs
2023-04-03 21:21 William Hubbs
2023-03-30 10:57 Sam James
2023-03-30 10:57 Sam James
2023-03-30 10:57 Sam James
2023-03-30 10:57 Sam James
2023-03-30 10:57 Sam James
2023-03-30 10:57 Sam James
2023-03-30 10:57 Sam James
2023-02-21 17:13 Arthur Zamarin
2023-01-05 6:44 William Hubbs
2022-10-26 3:12 William Hubbs
2022-10-10 12:20 Joonas Niilola
2022-10-10 12:20 Joonas Niilola
2022-09-26 6:24 Arthur Zamarin
2022-09-25 12:20 Agostino Sarubbo
2022-09-25 12:19 Agostino Sarubbo
2022-09-25 12:19 Agostino Sarubbo
2022-09-25 8:00 Arthur Zamarin
2022-09-25 6:30 Arthur Zamarin
2022-09-25 6:30 Arthur Zamarin
2022-09-25 6:26 Agostino Sarubbo
2022-07-03 18:01 William Hubbs
2022-06-10 15:56 William Hubbs
2022-06-10 15:56 William Hubbs
2022-06-08 19:36 William Hubbs
2022-06-08 19:36 William Hubbs
2022-06-08 19:36 William Hubbs
2022-06-07 23:41 William Hubbs
2022-06-07 23:41 William Hubbs
2022-04-02 18:32 William Hubbs
2021-12-25 14:18 Benda XU
2021-12-21 0:30 William Hubbs
2021-11-29 17:00 William Hubbs
2021-11-13 5:08 Sam James
2021-11-13 4:28 William Hubbs
2021-11-07 7:51 Sam James
2021-10-31 17:58 Sam James
2021-10-31 5:59 Sam James
2021-10-31 5:59 Sam James
2021-10-31 5:59 Sam James
2021-10-31 5:59 Sam James
2021-10-31 5:59 Sam James
2021-10-31 5:59 Sam James
2021-10-22 15:51 William Hubbs
2021-10-16 1:39 Sam James
2021-10-16 1:39 Sam James
2021-10-16 1:39 Sam James
2021-10-16 1:39 Sam James
2021-10-16 1:39 Sam James
2021-10-16 1:39 Sam James
2021-10-15 19:11 William Hubbs
2021-10-15 5:59 Agostino Sarubbo
2021-10-15 2:55 Sam James
2021-10-14 5:47 William Hubbs
2021-10-05 15:15 William Hubbs
2021-09-21 19:49 Sam James
2021-09-21 17:13 William Hubbs
2021-09-21 17:13 William Hubbs
2021-09-17 0:53 William Hubbs
2021-09-15 16:07 William Hubbs
2021-09-15 16:07 William Hubbs
2021-09-09 18:07 William Hubbs
2021-09-09 18:07 William Hubbs
2021-09-09 14:20 William Hubbs
2021-09-08 19:03 William Hubbs
2021-09-07 21:23 William Hubbs
2021-09-07 19:29 William Hubbs
2021-08-24 23:21 Sam James
2021-08-23 22:16 Agostino Sarubbo
2021-08-23 0:39 Sam James
2021-08-22 3:42 Sam James
2021-08-21 4:51 Agostino Sarubbo
2021-08-21 4:50 Agostino Sarubbo
2021-08-21 4:49 Agostino Sarubbo
2021-08-20 23:51 Sam James
2021-08-20 23:33 William Hubbs
2021-08-20 16:47 William Hubbs
2021-08-15 22:39 William Hubbs
2021-08-15 20:53 William Hubbs
2021-04-30 16:34 William Hubbs
2021-04-16 2:31 William Hubbs
2021-04-13 23:07 William Hubbs
2021-04-05 4:54 William Hubbs
2021-04-02 18:15 William Hubbs
2021-03-23 2:18 William Hubbs
2021-03-23 1:40 William Hubbs
2021-03-22 2:13 William Hubbs
2021-03-21 22:05 William Hubbs
2021-02-28 4:57 Mike Gilbert
2021-01-23 11:31 Mikle Kolyada
2021-01-01 21:49 Andreas K. Hüttel
2020-12-01 11:32 Joonas Niilola
2020-05-31 17:11 Mike Frysinger
2020-02-05 7:08 Joonas Niilola
2020-01-05 22:51 Sergei Trofimovich
2020-01-05 19:45 Agostino Sarubbo
2020-01-05 19:43 Agostino Sarubbo
2020-01-05 19:32 Sergei Trofimovich
2020-01-05 18:45 Agostino Sarubbo
2020-01-05 10:49 Agostino Sarubbo
2020-01-05 2:28 Aaron Bauman
2020-01-04 22:52 Sergei Trofimovich
2020-01-04 22:50 Sergei Trofimovich
2019-12-10 15:35 William Hubbs
2019-12-09 15:36 William Hubbs
2019-11-04 4:39 William Hubbs
2019-10-12 18:56 Mikle Kolyada
2019-08-26 23:27 Matt Turner
2019-08-26 23:27 Matt Turner
2019-08-21 1:49 William Hubbs
2019-08-21 1:44 William Hubbs
2019-08-20 21:30 William Hubbs
2019-08-20 18:43 William Hubbs
2019-08-20 18:39 William Hubbs
2019-08-11 11:20 David Seifert
2019-07-25 23:08 William Hubbs
2019-06-01 18:47 William Hubbs
2019-05-28 6:49 Agostino Sarubbo
2019-05-28 6:48 Agostino Sarubbo
2019-05-23 13:13 Mikle Kolyada
2019-05-13 1:41 Thomas Deutschmann
2019-05-12 21:48 Sergei Trofimovich
2019-05-10 2:10 Aaron Bauman
2019-05-07 20:14 Tobias Klausmann
2019-05-04 0:03 Mikle Kolyada
2019-05-02 18:28 Mikle Kolyada
2019-02-26 4:10 William Hubbs
2019-02-24 0:23 William Hubbs
2019-02-23 1:30 William Hubbs
2019-02-14 0:44 William Hubbs
2019-01-18 18:58 Ben Kohler
2019-01-11 7:42 Sergei Trofimovich
2018-12-21 20:02 William Hubbs
2018-12-21 19:09 William Hubbs
2018-12-12 22:59 William Hubbs
2018-12-12 22:19 William Hubbs
2018-12-12 18:36 William Hubbs
2018-12-11 17:41 William Hubbs
2018-12-11 17:31 William Hubbs
2018-12-06 23:54 William Hubbs
2018-12-04 23:38 William Hubbs
2018-12-04 0:09 William Hubbs
2018-11-07 23:56 William Hubbs
2018-11-07 22:56 William Hubbs
2018-11-06 3:53 William Hubbs
2018-10-24 20:46 William Hubbs
2018-10-23 22:23 William Hubbs
2018-10-19 21:18 William Hubbs
2018-10-14 21:18 Sergei Trofimovich
2018-10-06 23:47 Matt Turner
2018-10-06 23:47 Matt Turner
2018-10-05 4:56 Markus Meier
2018-10-03 18:58 Mart Raudsepp
2018-10-02 14:02 Tobias Klausmann
2018-09-24 21:26 Sergei Trofimovich
2018-09-24 1:50 Thomas Deutschmann
2018-09-22 16:50 William Hubbs
2018-08-15 7:31 Michał Górny
2018-08-06 23:02 William Hubbs
2018-08-06 23:02 William Hubbs
2018-06-29 14:15 William Hubbs
2018-06-28 18:28 William Hubbs
2018-06-28 17:24 William Hubbs
2018-06-15 23:26 William Hubbs
2018-05-31 22:10 William Hubbs
2018-05-11 20:47 William Hubbs
2018-03-15 15:47 William Hubbs
2018-03-15 15:47 William Hubbs
2018-03-15 4:41 William Hubbs
2018-03-14 19:27 William Hubbs
2018-03-12 5:30 William Hubbs
2018-03-04 15:13 William Hubbs
2018-03-02 1:55 William Hubbs
2018-03-01 20:09 William Hubbs
2018-03-01 20:05 William Hubbs
2018-02-28 23:37 William Hubbs
2018-02-28 23:37 William Hubbs
2018-02-27 18:49 William Hubbs
2018-02-27 18:12 William Hubbs
2018-01-12 4:10 Mike Frysinger
2017-12-24 9:46 Mart Raudsepp
2017-12-07 20:42 William Hubbs
2017-11-30 18:30 William Hubbs
2017-11-29 22:45 William Hubbs
2017-11-28 23:31 William Hubbs
2017-11-28 18:58 William Hubbs
2017-11-28 18:25 William Hubbs
2017-11-27 19:47 William Hubbs
2017-11-22 22:01 William Hubbs
2017-11-20 18:58 William Hubbs
2017-11-18 9:21 Sergei Trofimovich
2017-11-17 17:17 William Hubbs
2017-11-17 11:18 Tobias Klausmann
2017-11-16 23:35 William Hubbs
2017-11-16 19:43 Sergei Trofimovich
2017-11-16 7:34 Sergei Trofimovich
2017-11-15 23:22 Sergei Trofimovich
2017-11-14 23:30 William Hubbs
2017-11-14 21:44 Thomas Deutschmann
2017-11-14 0:29 William Hubbs
2017-11-07 22:19 William Hubbs
2017-10-30 23:30 William Hubbs
2017-10-28 0:42 William Hubbs
2017-10-26 21:49 William Hubbs
2017-10-25 20:24 William Hubbs
2017-10-24 22:34 William Hubbs
2017-10-24 16:01 William Hubbs
2017-10-22 21:42 Tobias Klausmann
2017-10-18 23:22 William Hubbs
2017-10-14 17:20 Sergei Trofimovich
2017-10-13 16:52 William Hubbs
2017-10-13 14:31 Thomas Deutschmann
2017-10-13 0:13 Sergei Trofimovich
2017-10-12 18:42 William Hubbs
2017-10-11 14:41 Sergei Trofimovich
2017-10-10 19:32 William Hubbs
2017-10-02 17:27 William Hubbs
2017-10-01 19:05 William Hubbs
2017-09-30 17:14 Matt Turner
2017-09-24 18:22 Sergei Trofimovich
2017-09-18 22:30 William Hubbs
2017-09-18 2:54 Jason Zaman
2017-09-17 4:06 William Hubbs
2017-09-15 21:46 William Hubbs
2017-09-11 8:04 Sergei Trofimovich
2017-09-07 20:59 Sergei Trofimovich
2017-08-25 22:34 Matt Turner
2017-08-16 17:32 William Hubbs
2017-08-10 4:40 Markus Meier
2017-08-05 18:07 Sergei Trofimovich
2017-08-03 15:13 William Hubbs
2017-08-03 0:03 Thomas Deutschmann
2017-07-13 23:26 William Hubbs
2017-06-12 23:36 William Hubbs
2017-06-08 16:13 William Hubbs
2017-06-07 17:31 William Hubbs
2017-06-05 18:28 William Hubbs
2017-06-04 19:24 Sergei Trofimovich
2017-06-04 18:50 Sergei Trofimovich
2017-05-30 18:22 William Hubbs
2017-05-27 6:58 Markus Meier
2017-05-22 13:25 Tobias Klausmann
2017-05-19 7:50 Jeroen Roovers
2017-05-18 17:24 Michael Weber
2017-05-18 16:00 William Hubbs
2017-05-18 14:18 Thomas Deutschmann
2017-05-18 13:42 Michael Weber
2017-05-18 7:15 Michael Weber
2017-05-17 15:39 William Hubbs
2017-05-16 0:18 William Hubbs
2017-05-13 17:50 William Hubbs
2017-05-12 3:14 William Hubbs
2017-04-22 7:33 Tobias Klausmann
2017-04-19 16:01 Michael Weber
2017-04-19 6:52 Jeroen Roovers
2017-04-17 17:55 William Hubbs
2017-04-16 13:11 William Hubbs
2017-04-13 21:19 William Hubbs
2017-04-08 8:58 Jeroen Roovers
2017-03-23 23:01 William Hubbs
2017-03-15 17:53 William Hubbs
2017-03-15 3:14 William Hubbs
2017-03-11 17:07 Agostino Sarubbo
2017-03-10 21:55 William Hubbs
2017-02-28 11:22 Tobias Klausmann
2017-02-25 10:03 Agostino Sarubbo
2017-02-24 8:30 Michael Weber
2017-02-24 5:45 Mike Frysinger
2017-02-22 16:08 Agostino Sarubbo
2017-02-22 15:06 Agostino Sarubbo
2017-02-21 22:53 William Hubbs
2017-02-20 0:52 William Hubbs
2017-02-18 2:02 William Hubbs
2017-01-26 16:51 William Hubbs
2017-01-14 12:43 Jeroen Roovers
2017-01-05 18:07 William Hubbs
2017-01-03 10:38 Agostino Sarubbo
2016-12-28 3:36 Jason Zaman
2016-12-24 9:31 Markus Meier
2016-12-20 19:11 William Hubbs
2016-12-20 19:02 William Hubbs
2016-12-02 0:28 William Hubbs
2016-11-27 21:46 Thomas Deutschmann
2016-11-18 16:09 William Hubbs
2016-11-17 18:44 William Hubbs
2016-11-17 18:44 William Hubbs
2016-11-15 14:53 Tobias Klausmann
2016-11-11 20:06 William Hubbs
2016-11-11 20:06 William Hubbs
2016-11-10 19:35 William Hubbs
2016-11-07 20:05 William Hubbs
2016-11-07 19:55 William Hubbs
2016-11-03 22:05 William Hubbs
2016-10-06 17:32 William Hubbs
2016-10-02 17:10 William Hubbs
2016-10-02 17:10 William Hubbs
2016-10-01 4:45 William Hubbs
2016-09-27 21:49 William Hubbs
2016-09-23 20:37 William Hubbs
2016-09-22 17:04 William Hubbs
2016-09-22 15:53 William Hubbs
2016-09-15 22:04 William Hubbs
2016-09-15 16:31 William Hubbs
2016-09-15 16:00 William Hubbs
2016-09-01 9:39 Jeroen Roovers
2016-08-31 16:57 Jeroen Roovers
2016-08-31 16:53 William Hubbs
2016-08-31 16:53 William Hubbs
2016-08-31 14:26 William Hubbs
2016-08-30 15:42 William Hubbs
2016-08-25 22:58 William Hubbs
2016-08-21 18:28 William Hubbs
2016-08-21 18:16 William Hubbs
2016-08-14 21:05 William Hubbs
2016-08-12 19:22 Markus Meier
2016-08-01 7:41 Tobias Klausmann
2016-07-31 20:37 William Hubbs
2016-07-06 17:49 William Hubbs
2016-06-28 22:21 William Hubbs
2016-06-12 4:24 Mike Frysinger
2016-05-31 17:43 William Hubbs
2016-05-24 22:10 William Hubbs
2016-05-24 22:10 William Hubbs
2016-05-13 17:48 William Hubbs
2016-05-12 22:26 William Hubbs
2016-05-05 17:29 William Hubbs
2016-03-05 17:58 Mikle Kolyada
2016-02-24 23:35 Stephen Klimaszewski
2016-02-15 20:30 William Hubbs
2016-02-02 15:57 Tobias Klausmann
2016-01-24 8:23 Jeroen Roovers
2016-01-23 14:51 Markus Meier
2016-01-22 20:12 William Hubbs
2016-01-19 20:11 William Hubbs
2016-01-18 9:20 Mike Frysinger
2016-01-15 9:03 Agostino Sarubbo
2016-01-14 20:10 William Hubbs
2016-01-14 2:33 William Hubbs
2016-01-13 17:51 William Hubbs
2016-01-13 17:51 William Hubbs
2016-01-12 22:31 William Hubbs
2015-12-25 19:55 Mikle Kolyada
2015-12-11 10:59 Mikle Kolyada
2015-12-09 21:42 William Hubbs
2015-12-09 5:51 Markus Meier
2015-12-07 11:40 Agostino Sarubbo
2015-12-06 22:07 Matt Turner
2015-12-06 5:04 Jeroen Roovers
2015-12-04 22:26 William Hubbs
2015-12-03 13:28 Agostino Sarubbo
2015-12-03 10:07 Agostino Sarubbo
2015-12-01 19:34 William Hubbs
2015-10-14 23:22 William Hubbs
2015-10-14 23:22 William Hubbs
2015-10-14 23:22 William Hubbs
2015-10-13 23:01 William Hubbs
2015-10-13 23:01 William Hubbs
2015-10-13 15:51 William Hubbs
2015-10-13 15:51 William Hubbs
2015-10-08 18:50 William Hubbs
2015-08-16 11:30 Justin Lecher
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=1504737557.cdf38a2bd83ff7b6fb4489e7de4d287b236c971e.williamh@gentoo \
--to=williamh@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