public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-apps/baselayout-prefix: baselayout-prefix-1.12.14-r1.ebuild ChangeLog
@ 2012-08-07 13:31 Benda XU (heroxbd)
  0 siblings, 0 replies; 4+ messages in thread
From: Benda XU (heroxbd) @ 2012-08-07 13:31 UTC (permalink / raw
  To: gentoo-commits

heroxbd     12/08/07 13:31:03

  Modified:             ChangeLog
  Added:                baselayout-prefix-1.12.14-r1.ebuild
  Log:
  add new revision for testing openrc. bug 415895
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.19                 sys-apps/baselayout-prefix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	24 May 2012 04:19:13 -0000	1.18
+++ ChangeLog	7 Aug 2012 13:31:03 -0000	1.19
@@ -1,6 +1,12 @@
 # ChangeLog for sys-apps/baselayout-prefix
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.18 2012/05/24 04:19:13 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.19 2012/08/07 13:31:03 heroxbd Exp $
+
+*baselayout-prefix-1.12.14-r1 (07 Aug 2012)
+
+  07 Aug 2012; Benda Xu <heroxbd@gentoo.org>
+  +baselayout-prefix-1.12.14-r1.ebuild:
+  add new revision for testing openrc. bug 415895
 
   24 May 2012; Jeremy Olexa <darkside@gentoo.org>
   -baselayout-prefix-1.12.5-r9.ebuild, -baselayout-prefix-1.12.5-r10.ebuild:



1.1                  sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild?rev=1.1&content-type=text/plain

Index: baselayout-prefix-1.12.14-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild,v 1.1 2012/08/07 13:31:03 heroxbd Exp $

EAPI=3

inherit eutils toolchain-funcs multilib prefix flag-o-matic

# last part in e.g. 1.12.14.1704
PVER=1709

DESCRIPTION="Baselayout for Gentoo Prefix installs"
HOMEPAGE="http://prefix.gentoo.org/"
SRC_URI="http://dev.gentoo.org/~grobian/distfiles/${P}.${PVER}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc-aix ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
IUSE="prefix-chaining"
DEPEND=">=sys-apps/portage-2.2.01"
RDEPEND=">=sys-libs/readline-5.0-r1
	>=app-shells/bash-3.1_p7
	>=sys-apps/coreutils-5.2.1
	kernel_Darwin? ( sys-process/pidof-bsd )
	kernel_FreeBSD? ( sys-process/pidof-bsd )"

S=${WORKDIR}/${P}.${PVER}

src_prepare() {
	if use prefix-chaining; then
		epatch "${S}"/baselayout-${PV}-prefix-chaining.patch

		# need to set the PKG_CONFIG_PATH globally for this prefix, when
		# chaining is enabled, since pkg-config may not be installed locally,
		# but still .pc files should be found for all RDEPENDable prefixes in
		# the chain.
		echo "PKG_CONFIG_PATH=\"${EPREFIX}/usr/lib/pkgconfig:${EPREFIX}/usr/share/pkgconfig\"" >> "${S}"/etc/env.d/00basic
	fi

	cd "${S}"
	eprefixify \
		etc/env.d/00basic \
		etc/profile \
		sbin/functions.sh

	# add the host OS MANPATH
	echo 'MANPATH="/usr/share/man"' > etc/env.d/99basic || die "can't make file"

	# avoid a re-automake run
	touch -r gnulib/configure.ac gnulib/Makefile.in gnulib/aclocal.m4 || die
}

src_configure() {
	cd gnulib || die
	default
}

src_compile() {
	# build gnulib first
	pushd gnulib > /dev/null || die
	emake || die "Cannot build gnulib"
	popd > /dev/null

	# use gnulib (buildsystem doesn't respect cppflags)
	append-cflags -I../gnulib -I../gnulib/gllib
	append-ldflags -L../gnulib/gllib
	append-libs gnu

	local libdir="lib"

	[[ ${SYMLINK_LIB} == "yes" ]] && libdir=$(get_abi_LIBDIR "${DEFAULT_ABI}")
}

src_install() {
	local dir libdirs libdirs_env rcscripts_dir

	dodir /etc
	dodir /etc/env.d
	dodir /etc/init.d			# .keep file might mess up init.d stuff

	libdirs=$(get_all_libdirs)
	: ${libdirs:=lib}	# it isn't that we don't trust multilib.eclass...

	rcscripts_dir="/lib/rcscripts"

	for dir in ${libdirs}; do
		libdirs_env=${libdirs_env:+$libdirs_env:}/${dir}:/usr/${dir}:/usr/local/${dir}
		[[ ${dir} == "lib" && ${SYMLINK_LIB} == "yes" ]] && continue
		dodir /"${dir}"
		dodir /usr/"${dir}"
		dodir /usr/local/"${dir}"
	done

	# Ugly compatibility with stupid ebuilds and old profiles symlinks
	if [[ ${SYMLINK_LIB} == "yes" ]] ; then
		rm -r "${ED}"/{lib,usr/lib,usr/local/lib} &> /dev/null
		dosym $(get_abi_LIBDIR ${DEFAULT_ABI}) /lib
		dosym $(get_abi_LIBDIR ${DEFAULT_ABI}) /usr/lib
		dosym $(get_abi_LIBDIR ${DEFAULT_ABI}) /usr/local/lib
	fi

	# FHS compatibility symlinks stuff
	dosym /var/tmp /usr/tmp

	# rc-scripts version for testing of features that *should* be present
	echo "Gentoo Prefix Base System version ${PV}" > ${ED}/etc/gentoo-release

	# get the basic stuff in there
	doenvd "${S}"/etc/env.d/* || die "doenvd"

	# copy the profile
	cp "${S}"/etc/profile "${ED}"/etc/profile

	# Setup files in /sbin
	#
	cd "${S}"/sbin
	into /
	# These moved from /etc/init.d/ to /sbin to help newb systems
	# from breaking
	dosbin functions.sh

	# Compat symlinks between /etc/init.d and /sbin
	# (some stuff have hardcoded paths)
	dosym ../../sbin/functions.sh /etc/init.d/functions.sh

	#
	# Install baselayout utilities
	#
	local libdir="lib"
	[[ ${SYMLINK_LIB} == "yes" ]] && libdir=$(get_abi_LIBDIR "${DEFAULT_ABI}")
}

pkg_postinst() {
	if [[ ${EUID} == 0 ]] ; then
		# setup portage user, such that things that require root privs
		# don't fail, bug #321623
		enewgroup portage 250
		enewuser portage 250 -1 "${EPREFIX}"/var/tmp/portage portage
	fi

	# This is also written in src_install (so it's in CONTENTS), but
	# write it here so that the new version is immediately in the file
	# (without waiting for the user to do etc-update)
	rm -f "${EROOT}"/etc/._cfg????_gentoo-release
	echo "Gentoo Prefix Base System version ${PV}" > "${EROOT}"/etc/gentoo-release

	echo
	einfo "Please be sure to update all pending '._cfg*' files in /etc,"
	einfo "else things might break!  You can use 'etc-update'"
	einfo "to accomplish this:"
	einfo
	einfo "  # etc-update"
	echo
}





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-apps/baselayout-prefix: baselayout-prefix-1.12.14-r1.ebuild ChangeLog
@ 2012-08-11 10:19 Benda XU (heroxbd)
  0 siblings, 0 replies; 4+ messages in thread
From: Benda XU (heroxbd) @ 2012-08-11 10:19 UTC (permalink / raw
  To: gentoo-commits

heroxbd     12/08/11 10:19:18

  Modified:             baselayout-prefix-1.12.14-r1.ebuild ChangeLog
  Log:
  remove functions.sh, newer version is provided by sys-apps/openrc
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild?r1=1.1&r2=1.2

Index: baselayout-prefix-1.12.14-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- baselayout-prefix-1.12.14-r1.ebuild	7 Aug 2012 13:31:03 -0000	1.1
+++ baselayout-prefix-1.12.14-r1.ebuild	11 Aug 2012 10:19:18 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild,v 1.1 2012/08/07 13:31:03 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild,v 1.2 2012/08/11 10:19:18 heroxbd Exp $
 
 EAPI=3
 
@@ -41,7 +41,6 @@
 	eprefixify \
 		etc/env.d/00basic \
 		etc/profile \
-		sbin/functions.sh
 
 	# add the host OS MANPATH
 	echo 'MANPATH="/usr/share/man"' > etc/env.d/99basic || die "can't make file"
@@ -117,11 +116,6 @@
 	into /
 	# These moved from /etc/init.d/ to /sbin to help newb systems
 	# from breaking
-	dosbin functions.sh
-
-	# Compat symlinks between /etc/init.d and /sbin
-	# (some stuff have hardcoded paths)
-	dosym ../../sbin/functions.sh /etc/init.d/functions.sh
 
 	#
 	# Install baselayout utilities



1.20                 sys-apps/baselayout-prefix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	7 Aug 2012 13:31:03 -0000	1.19
+++ ChangeLog	11 Aug 2012 10:19:18 -0000	1.20
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/baselayout-prefix
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.19 2012/08/07 13:31:03 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.20 2012/08/11 10:19:18 heroxbd Exp $
+
+  11 Aug 2012; Benda Xu <heroxbd@gentoo.org>
+  baselayout-prefix-1.12.14-r1.ebuild:
+  remove functions.sh, newer version is provided by sys-apps/openrc
 
 *baselayout-prefix-1.12.14-r1 (07 Aug 2012)
 





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-apps/baselayout-prefix: baselayout-prefix-1.12.14-r1.ebuild ChangeLog
@ 2013-08-14 11:29 Patrick Lauer (patrick)
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick Lauer (patrick) @ 2013-08-14 11:29 UTC (permalink / raw
  To: gentoo-commits

patrick     13/08/14 11:29:33

  Modified:             baselayout-prefix-1.12.14-r1.ebuild ChangeLog
  Log:
  Whitespace
  
  (Portage version: 2.2.0_alpha196/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.3                  sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild?r1=1.2&r2=1.3

Index: baselayout-prefix-1.12.14-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- baselayout-prefix-1.12.14-r1.ebuild	11 Aug 2012 10:19:18 -0000	1.2
+++ baselayout-prefix-1.12.14-r1.ebuild	14 Aug 2013 11:29:33 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild,v 1.2 2012/08/11 10:19:18 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild,v 1.3 2013/08/14 11:29:33 patrick Exp $
 
 EAPI=3
 
@@ -40,7 +40,7 @@
 	cd "${S}"
 	eprefixify \
 		etc/env.d/00basic \
-		etc/profile \
+		etc/profile
 
 	# add the host OS MANPATH
 	echo 'MANPATH="/usr/share/man"' > etc/env.d/99basic || die "can't make file"



1.28                 sys-apps/baselayout-prefix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	8 May 2013 05:51:28 -0000	1.27
+++ ChangeLog	14 Aug 2013 11:29:33 -0000	1.28
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/baselayout-prefix
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.27 2013/05/08 05:51:28 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.28 2013/08/14 11:29:33 patrick Exp $
+
+  14 Aug 2013; Patrick Lauer <patrick@gentoo.org>
+  baselayout-prefix-1.12.14-r1.ebuild:
+  Whitespace
 
   08 May 2013; Fabian Groffen <grobian@gentoo.org>
   baselayout-prefix-2.2-r2.ebuild:





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-apps/baselayout-prefix: baselayout-prefix-1.12.14-r1.ebuild ChangeLog
@ 2014-01-08  6:16 Mike Frysinger (vapier)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2014-01-08  6:16 UTC (permalink / raw
  To: gentoo-commits

vapier      14/01/08 06:16:00

  Modified:             baselayout-prefix-1.12.14-r1.ebuild ChangeLog
  Log:
  Inherit the user eclass for enewuser/etc...
  
  (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.4                  sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild?r1=1.3&r2=1.4

Index: baselayout-prefix-1.12.14-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- baselayout-prefix-1.12.14-r1.ebuild	14 Aug 2013 11:29:33 -0000	1.3
+++ baselayout-prefix-1.12.14-r1.ebuild	8 Jan 2014 06:16:00 -0000	1.4
@@ -1,10 +1,10 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild,v 1.3 2013/08/14 11:29:33 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-1.12.14-r1.ebuild,v 1.4 2014/01/08 06:16:00 vapier Exp $
 
 EAPI=3
 
-inherit eutils toolchain-funcs multilib prefix flag-o-matic
+inherit eutils toolchain-funcs multilib prefix flag-o-matic user
 
 # last part in e.g. 1.12.14.1704
 PVER=1709



1.35                 sys-apps/baselayout-prefix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	29 Oct 2013 21:00:57 -0000	1.34
+++ ChangeLog	8 Jan 2014 06:16:00 -0000	1.35
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/baselayout-prefix
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.34 2013/10/29 21:00:57 haubi Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.35 2014/01/08 06:16:00 vapier Exp $
+
+  08 Jan 2014; Mike Frysinger <vapier@gentoo.org>
+  baselayout-prefix-1.12.14-r1.ebuild:
+  Inherit the user eclass for enewuser/etc...
 
   29 Oct 2013; Michael Haubenwallner <haubi@gentoo.org>
   -files/einfo-1.0.3-checkfuncs-aix.patch,





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-01-08  6:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-07 13:31 [gentoo-commits] gentoo-x86 commit in sys-apps/baselayout-prefix: baselayout-prefix-1.12.14-r1.ebuild ChangeLog Benda XU (heroxbd)
  -- strict thread matches above, loose matches on Subject: below --
2012-08-11 10:19 Benda XU (heroxbd)
2013-08-14 11:29 Patrick Lauer (patrick)
2014-01-08  6:16 Mike Frysinger (vapier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox