public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.9.0.ebuild ChangeLog
@ 2015-05-16 23:23 William Hubbs (williamh)
  0 siblings, 0 replies; 9+ messages in thread
From: William Hubbs (williamh) @ 2015-05-16 23:23 UTC (permalink / raw
  To: gentoo-commits

williamh    15/05/16 23:23:32

  Modified:             ChangeLog
  Added:                dhcpcd-6.9.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x30C46538)

Revision  Changes    Path
1.456                net-misc/dhcpcd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.456&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.456&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.455&r2=1.456

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.455
retrieving revision 1.456
diff -u -r1.455 -r1.456
--- ChangeLog	5 May 2015 13:20:12 -0000	1.455
+++ ChangeLog	16 May 2015 23:23:32 -0000	1.456
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.455 2015/05/05 13:20:12 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.456 2015/05/16 23:23:32 williamh Exp $
+
+*dhcpcd-6.9.0 (16 May 2015)
+
+  16 May 2015; William Hubbs <williamh@gentoo.org> +dhcpcd-6.9.0.ebuild:
+  version bump
 
 *dhcpcd-6.8.2 (05 May 2015)
 



1.1                  net-misc/dhcpcd/dhcpcd-6.9.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.1&content-type=text/plain

Index: dhcpcd-6.9.0.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.1 2015/05/16 23:23:32 williamh Exp $

EAPI=5

if [[ ${PV} == "9999" ]]; then
	FOSSIL_URI="http://roy.marples.name/projects/dhcpcd"
else
	MY_P="${P/_alpha/-alpha}"
	MY_P="${MY_P/_beta/-beta}"
	MY_P="${MY_P/_rc/-rc}"
	SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2"
	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
	S="${WORKDIR}/${MY_P}"
fi

inherit eutils systemd toolchain-funcs

DESCRIPTION="A fully featured, yet light weight RFC2131 compliant DHCP client"
HOMEPAGE="http://roy.marples.name/projects/dhcpcd/"
LICENSE="BSD-2"
SLOT="0"
IUSE="elibc_glibc +embedded ipv6 kernel_linux +udev"

COMMON_DEPEND="udev? ( virtual/udev )"
DEPEND="${COMMON_DEPEND}"
RDEPEND="${COMMON_DEPEND}"

if [[ ${PV} == "9999" ]]; then
	DEPEND+=" dev-vcs/fossil"

	src_unpack()
	{
		local distdir=${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}
		local repo=${distdir}/fossil/${PN}.fossil

		addwrite "${distdir}"

		if [[ -e "${repo}" ]]; then
			fossil pull "${FOSSIL_URI}" -R "${repo}" || die
		else
			mkdir -p "${distdir}/fossil" || die
			fossil clone "${FOSSIL_URI}" "${repo}" || die
		fi

		mkdir -p "${S}" || die
		cd "${S}" || die
		fossil open "${repo}" || die
	}
fi

src_prepare()
{
	epatch_user
}

src_configure()
{
	local dev hooks rundir
	use udev || dev="--without-dev --without-udev"
	hooks="--with-hook=ntp.conf"
	use elibc_glibc && hooks="${hooks} --with-hook=yp.conf"
	use kernel_linux && rundir="--rundir=${EPREFIX}/run"
	econf \
		--prefix="${EPREFIX}" \
		--libexecdir="${EPREFIX}/lib/dhcpcd" \
		--dbdir="${EPREFIX}/var/lib/dhcpcd" \
		--localstatedir="${EPREFIX}/var" \
		${rundir} \
		$(use_enable embedded) \
		$(use_enable ipv6) \
		${dev} \
		CC="$(tc-getCC)" \
		${hooks}
}

src_install()
{
	default
	newinitd "${FILESDIR}"/${PN}.initd ${PN}
	systemd_dounit "${FILESDIR}"/${PN}.service
}

pkg_postinst()
{
	# Upgrade the duid file to the new format if needed
	local old_duid="${ROOT}"/var/lib/dhcpcd/dhcpcd.duid
	local new_duid="${ROOT}"/etc/dhcpcd.duid
	if [ -e "${old_duid}" ] && ! grep -q '..:..:..:..:..:..' "${old_duid}"; then
		sed -i -e 's/\(..\)/\1:/g; s/:$//g' "${old_duid}"
	fi

	# Move the duid to /etc, a more sensible location
	if [ -e "${old_duid}" -a ! -e "${new_duid}" ]; then
		cp -p "${old_duid}" "${new_duid}"
	fi

	if [ -z "$REPLACING_VERSIONS" ]; then
		elog
	 elog "dhcpcd has zeroconf support active by default."
		elog "This means it will always obtain an IP address even if no"
		elog "DHCP server can be contacted, which will break any existing"
		elog "failover support you may have configured in your net configuration."
		elog "This behaviour can be controlled with the noipv4ll configuration"
		elog "file option or the -L command line switch."
		elog "See the dhcpcd and dhcpcd.conf man pages for more details."

		elog
		elog "Dhcpcd has duid enabled by default, and this may cause issues"
		elog "with some dhcp servers. For more information, see"
		elog "https://bugs.gentoo.org/show_bug.cgi?id=477356"
	fi

	if ! has_version net-dns/bind-tools; then
		elog
		elog "If you activate the lookup-hostname hook to look up your hostname"
		elog "using the dns, you need to install net-dns/bind-tools."
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.9.0.ebuild ChangeLog
@ 2015-06-02 19:39 Mikle Kolyada (zlogene)
  0 siblings, 0 replies; 9+ messages in thread
From: Mikle Kolyada (zlogene) @ 2015-06-02 19:39 UTC (permalink / raw
  To: gentoo-commits

zlogene     15/06/02 19:39:40

  Modified:             dhcpcd-6.9.0.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #551010
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)

Revision  Changes    Path
1.2                  net-misc/dhcpcd/dhcpcd-6.9.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?r1=1.1&r2=1.2

Index: dhcpcd-6.9.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dhcpcd-6.9.0.ebuild	16 May 2015 23:23:32 -0000	1.1
+++ dhcpcd-6.9.0.ebuild	2 Jun 2015 19:39:40 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.1 2015/05/16 23:23:32 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.2 2015/06/02 19:39:40 zlogene Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 	MY_P="${MY_P/_beta/-beta}"
 	MY_P="${MY_P/_rc/-rc}"
 	SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 	S="${WORKDIR}/${MY_P}"
 fi
 



1.458                net-misc/dhcpcd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.458&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.458&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.457&r2=1.458

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.457
retrieving revision 1.458
diff -u -r1.457 -r1.458
--- ChangeLog	24 May 2015 18:21:01 -0000	1.457
+++ ChangeLog	2 Jun 2015 19:39:40 -0000	1.458
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.457 2015/05/24 18:21:01 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.458 2015/06/02 19:39:40 zlogene Exp $
+
+  02 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> dhcpcd-6.9.0.ebuild:
+  amd64 stable wrt bug #551010
 
   24 May 2015; Matt Turner <mattst88@gentoo.org> dhcpcd-6.6.7.ebuild:
   alpha stable, bug 538418.





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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.9.0.ebuild ChangeLog
@ 2015-06-03  7:35 Mikle Kolyada (zlogene)
  0 siblings, 0 replies; 9+ messages in thread
From: Mikle Kolyada (zlogene) @ 2015-06-03  7:35 UTC (permalink / raw
  To: gentoo-commits

zlogene     15/06/03 07:35:22

  Modified:             dhcpcd-6.9.0.ebuild ChangeLog
  Log:
  x86 stable wrt bug #551010
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)

Revision  Changes    Path
1.3                  net-misc/dhcpcd/dhcpcd-6.9.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?r1=1.2&r2=1.3

Index: dhcpcd-6.9.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- dhcpcd-6.9.0.ebuild	2 Jun 2015 19:39:40 -0000	1.2
+++ dhcpcd-6.9.0.ebuild	3 Jun 2015 07:35:22 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.2 2015/06/02 19:39:40 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.3 2015/06/03 07:35:22 zlogene Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 	MY_P="${MY_P/_beta/-beta}"
 	MY_P="${MY_P/_rc/-rc}"
 	SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2"
-	KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 	S="${WORKDIR}/${MY_P}"
 fi
 



1.459                net-misc/dhcpcd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.459&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.459&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.458&r2=1.459

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.458
retrieving revision 1.459
diff -u -r1.458 -r1.459
--- ChangeLog	2 Jun 2015 19:39:40 -0000	1.458
+++ ChangeLog	3 Jun 2015 07:35:22 -0000	1.459
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.458 2015/06/02 19:39:40 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.459 2015/06/03 07:35:22 zlogene Exp $
+
+  03 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> dhcpcd-6.9.0.ebuild:
+  x86 stable wrt bug #551010
 
   02 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> dhcpcd-6.9.0.ebuild:
   amd64 stable wrt bug #551010





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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.9.0.ebuild ChangeLog
@ 2015-06-03 18:51 Matt Turner (mattst88)
  0 siblings, 0 replies; 9+ messages in thread
From: Matt Turner (mattst88) @ 2015-06-03 18:51 UTC (permalink / raw
  To: gentoo-commits

mattst88    15/06/03 18:51:12

  Modified:             dhcpcd-6.9.0.ebuild ChangeLog
  Log:
  alpha stable, bug 551010.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)

Revision  Changes    Path
1.4                  net-misc/dhcpcd/dhcpcd-6.9.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?r1=1.3&r2=1.4

Index: dhcpcd-6.9.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- dhcpcd-6.9.0.ebuild	3 Jun 2015 07:35:22 -0000	1.3
+++ dhcpcd-6.9.0.ebuild	3 Jun 2015 18:51:12 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.3 2015/06/03 07:35:22 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.4 2015/06/03 18:51:12 mattst88 Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 	MY_P="${MY_P/_beta/-beta}"
 	MY_P="${MY_P/_rc/-rc}"
 	SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2"
-	KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 	S="${WORKDIR}/${MY_P}"
 fi
 



1.460                net-misc/dhcpcd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.460&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.460&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.459&r2=1.460

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.459
retrieving revision 1.460
diff -u -r1.459 -r1.460
--- ChangeLog	3 Jun 2015 07:35:22 -0000	1.459
+++ ChangeLog	3 Jun 2015 18:51:12 -0000	1.460
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.459 2015/06/03 07:35:22 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.460 2015/06/03 18:51:12 mattst88 Exp $
+
+  03 Jun 2015; Matt Turner <mattst88@gentoo.org> dhcpcd-6.9.0.ebuild:
+  alpha stable, bug 551010.
 
   03 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> dhcpcd-6.9.0.ebuild:
   x86 stable wrt bug #551010





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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.9.0.ebuild ChangeLog
@ 2015-06-05 15:06 Mikle Kolyada (zlogene)
  0 siblings, 0 replies; 9+ messages in thread
From: Mikle Kolyada (zlogene) @ 2015-06-05 15:06 UTC (permalink / raw
  To: gentoo-commits

zlogene     15/06/05 15:06:18

  Modified:             dhcpcd-6.9.0.ebuild ChangeLog
  Log:
  arm stable wrt bug #551010
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)

Revision  Changes    Path
1.5                  net-misc/dhcpcd/dhcpcd-6.9.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?r1=1.4&r2=1.5

Index: dhcpcd-6.9.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dhcpcd-6.9.0.ebuild	3 Jun 2015 18:51:12 -0000	1.4
+++ dhcpcd-6.9.0.ebuild	5 Jun 2015 15:06:18 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.4 2015/06/03 18:51:12 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.5 2015/06/05 15:06:18 zlogene Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 	MY_P="${MY_P/_beta/-beta}"
 	MY_P="${MY_P/_rc/-rc}"
 	SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2"
-	KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 	S="${WORKDIR}/${MY_P}"
 fi
 



1.461                net-misc/dhcpcd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.461&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.461&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.460&r2=1.461

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.460
retrieving revision 1.461
diff -u -r1.460 -r1.461
--- ChangeLog	3 Jun 2015 18:51:12 -0000	1.460
+++ ChangeLog	5 Jun 2015 15:06:18 -0000	1.461
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.460 2015/06/03 18:51:12 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.461 2015/06/05 15:06:18 zlogene Exp $
+
+  05 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> dhcpcd-6.9.0.ebuild:
+  arm stable wrt bug #551010
 
   03 Jun 2015; Matt Turner <mattst88@gentoo.org> dhcpcd-6.9.0.ebuild:
   alpha stable, bug 551010.





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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.9.0.ebuild ChangeLog
@ 2015-06-11  4:27 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2015-06-11  4:27 UTC (permalink / raw
  To: gentoo-commits

jer         15/06/11 04:27:22

  Modified:             dhcpcd-6.9.0.ebuild ChangeLog
  Log:
  Stable for HPPA PPC64 (bug #551010).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.6                  net-misc/dhcpcd/dhcpcd-6.9.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?r1=1.5&r2=1.6

Index: dhcpcd-6.9.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- dhcpcd-6.9.0.ebuild	5 Jun 2015 15:06:18 -0000	1.5
+++ dhcpcd-6.9.0.ebuild	11 Jun 2015 04:27:22 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.5 2015/06/05 15:06:18 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.6 2015/06/11 04:27:22 jer Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 	MY_P="${MY_P/_beta/-beta}"
 	MY_P="${MY_P/_rc/-rc}"
 	SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2"
-	KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 	S="${WORKDIR}/${MY_P}"
 fi
 



1.462                net-misc/dhcpcd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.462&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.462&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.461&r2=1.462

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.461
retrieving revision 1.462
diff -u -r1.461 -r1.462
--- ChangeLog	5 Jun 2015 15:06:18 -0000	1.461
+++ ChangeLog	11 Jun 2015 04:27:22 -0000	1.462
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.461 2015/06/05 15:06:18 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.462 2015/06/11 04:27:22 jer Exp $
+
+  11 Jun 2015; Jeroen Roovers <jer@gentoo.org> dhcpcd-6.9.0.ebuild:
+  Stable for HPPA PPC64 (bug #551010).
 
   05 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> dhcpcd-6.9.0.ebuild:
   arm stable wrt bug #551010





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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.9.0.ebuild ChangeLog
@ 2015-06-11 14:29 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-06-11 14:29 UTC (permalink / raw
  To: gentoo-commits

ago         15/06/11 14:29:13

  Modified:             dhcpcd-6.9.0.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #551010
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  net-misc/dhcpcd/dhcpcd-6.9.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?r1=1.6&r2=1.7

Index: dhcpcd-6.9.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- dhcpcd-6.9.0.ebuild	11 Jun 2015 04:27:22 -0000	1.6
+++ dhcpcd-6.9.0.ebuild	11 Jun 2015 14:29:13 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.6 2015/06/11 04:27:22 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.7 2015/06/11 14:29:13 ago Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 	MY_P="${MY_P/_beta/-beta}"
 	MY_P="${MY_P/_rc/-rc}"
 	SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2"
-	KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 	S="${WORKDIR}/${MY_P}"
 fi
 



1.463                net-misc/dhcpcd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.463&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.463&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.462&r2=1.463

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.462
retrieving revision 1.463
diff -u -r1.462 -r1.463
--- ChangeLog	11 Jun 2015 04:27:22 -0000	1.462
+++ ChangeLog	11 Jun 2015 14:29:13 -0000	1.463
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.462 2015/06/11 04:27:22 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.463 2015/06/11 14:29:13 ago Exp $
+
+  11 Jun 2015; Agostino Sarubbo <ago@gentoo.org> dhcpcd-6.9.0.ebuild:
+  Stable for ppc, wrt bug #551010
 
   11 Jun 2015; Jeroen Roovers <jer@gentoo.org> dhcpcd-6.9.0.ebuild:
   Stable for HPPA PPC64 (bug #551010).





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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.9.0.ebuild ChangeLog
@ 2015-07-02 16:00 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-07-02 16:00 UTC (permalink / raw
  To: gentoo-commits

ago         15/07/02 16:00:14

  Modified:             dhcpcd-6.9.0.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #551010
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  net-misc/dhcpcd/dhcpcd-6.9.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?r1=1.7&r2=1.8

Index: dhcpcd-6.9.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- dhcpcd-6.9.0.ebuild	11 Jun 2015 14:29:13 -0000	1.7
+++ dhcpcd-6.9.0.ebuild	2 Jul 2015 16:00:14 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.7 2015/06/11 14:29:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.8 2015/07/02 16:00:14 ago Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 	MY_P="${MY_P/_beta/-beta}"
 	MY_P="${MY_P/_rc/-rc}"
 	SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2"
-	KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 	S="${WORKDIR}/${MY_P}"
 fi
 



1.464                net-misc/dhcpcd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.464&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.464&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.463&r2=1.464

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.463
retrieving revision 1.464
diff -u -r1.463 -r1.464
--- ChangeLog	11 Jun 2015 14:29:13 -0000	1.463
+++ ChangeLog	2 Jul 2015 16:00:14 -0000	1.464
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.463 2015/06/11 14:29:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.464 2015/07/02 16:00:14 ago Exp $
+
+  02 Jul 2015; Agostino Sarubbo <ago@gentoo.org> dhcpcd-6.9.0.ebuild:
+  Stable for sparc, wrt bug #551010
 
   11 Jun 2015; Agostino Sarubbo <ago@gentoo.org> dhcpcd-6.9.0.ebuild:
   Stable for ppc, wrt bug #551010





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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.9.0.ebuild ChangeLog
@ 2015-07-02 16:00 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-07-02 16:00 UTC (permalink / raw
  To: gentoo-commits

ago         15/07/02 16:00:26

  Modified:             dhcpcd-6.9.0.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #551010
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  net-misc/dhcpcd/dhcpcd-6.9.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?r1=1.8&r2=1.9

Index: dhcpcd-6.9.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- dhcpcd-6.9.0.ebuild	2 Jul 2015 16:00:14 -0000	1.8
+++ dhcpcd-6.9.0.ebuild	2 Jul 2015 16:00:26 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.8 2015/07/02 16:00:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.9 2015/07/02 16:00:26 ago Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 	MY_P="${MY_P/_beta/-beta}"
 	MY_P="${MY_P/_rc/-rc}"
 	SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2"
-	KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+	KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 	S="${WORKDIR}/${MY_P}"
 fi
 



1.465                net-misc/dhcpcd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.465&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.465&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.464&r2=1.465

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.464
retrieving revision 1.465
diff -u -r1.464 -r1.465
--- ChangeLog	2 Jul 2015 16:00:14 -0000	1.464
+++ ChangeLog	2 Jul 2015 16:00:26 -0000	1.465
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.464 2015/07/02 16:00:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.465 2015/07/02 16:00:26 ago Exp $
+
+  02 Jul 2015; Agostino Sarubbo <ago@gentoo.org> dhcpcd-6.9.0.ebuild:
+  Stable for ia64, wrt bug #551010
 
   02 Jul 2015; Agostino Sarubbo <ago@gentoo.org> dhcpcd-6.9.0.ebuild:
   Stable for sparc, wrt bug #551010





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

end of thread, other threads:[~2015-07-02 16:00 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-03 18:51 [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.9.0.ebuild ChangeLog Matt Turner (mattst88)
  -- strict thread matches above, loose matches on Subject: below --
2015-07-02 16:00 Agostino Sarubbo (ago)
2015-07-02 16:00 Agostino Sarubbo (ago)
2015-06-11 14:29 Agostino Sarubbo (ago)
2015-06-11  4:27 Jeroen Roovers (jer)
2015-06-05 15:06 Mikle Kolyada (zlogene)
2015-06-03  7:35 Mikle Kolyada (zlogene)
2015-06-02 19:39 Mikle Kolyada (zlogene)
2015-05-16 23:23 William Hubbs (williamh)

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