public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-5.2.12-r1.ebuild ChangeLog
@ 2011-06-21 20:14 William Hubbs (williamh)
  0 siblings, 0 replies; 6+ messages in thread
From: William Hubbs (williamh) @ 2011-06-21 20:14 UTC (permalink / raw
  To: gentoo-commits

williamh    11/06/21 20:14:18

  Modified:             ChangeLog
  Added:                dhcpcd-5.2.12-r1.ebuild
  Log:
  revert patch from bug 350511, add systemd support for bug 372437 and
  migrate to eapi 4. Thanks to mgorny@gentoo.org for systemd support.
  
  (Portage version: 2.2.0_alpha41/cvs/Linux i686)

Revision  Changes    Path
1.321                net-misc/dhcpcd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.320
retrieving revision 1.321
diff -u -r1.320 -r1.321
--- ChangeLog	15 Apr 2011 21:39:14 -0000	1.320
+++ ChangeLog	21 Jun 2011 20:14:18 -0000	1.321
@@ -1,6 +1,13 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.320 2011/04/15 21:39:14 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.321 2011/06/21 20:14:18 williamh Exp $
+
+*dhcpcd-5.2.12-r1 (21 Jun 2011)
+
+  21 Jun 2011; William Hubbs <williamh@gentoo.org> +dhcpcd-5.2.12-r1.ebuild,
+  +files/dhcpcd.service:
+  revert patch from bug 350511, add systemd support for bug 372437 and
+  migrate to eapi 4. Thanks to mgorny@gentoo.org for systemd support.
 
   15 Apr 2011; Ulrich Mueller <ulm@gentoo.org> dhcpcd-5.2.12.ebuild:
   Don't PROVIDE virtual/dhcpc, bug 358827.



1.1                  net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild

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

Index: dhcpcd-5.2.12-r1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v 1.1 2011/06/21 20:14:18 williamh Exp $

EAPI=4

inherit eutils systemd

MY_P="${P/_alpha/-alpha}"
MY_P="${MY_P/_beta/-beta}"
MY_P="${MY_P/_rc/-rc}"
S="${WORKDIR}/${MY_P}"

DESCRIPTION="A fully featured, yet light weight RFC2131 compliant DHCP client"
HOMEPAGE="http://roy.marples.name/projects/dhcpcd/"
SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2"
LICENSE="BSD-2"

KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"

SLOT="0"
IUSE="+zeroconf elibc_glibc"

DEPEND=""
RDEPEND="!<sys-apps/openrc-0.6.0"

src_prepare() {
	if ! use zeroconf; then
		elog "Disabling zeroconf support"
		{
			echo
			echo "# dhcpcd ebuild requested no zeroconf"
			echo "noipv4ll"
		} >> dhcpcd.conf
	fi
}

src_configure() {
	local hooks="--with-hook=ntp.conf"
	use elibc_glibc && hooks="${hooks} --with-hook=yp.conf"
	econf \
			--prefix= \
			--libexecdir=/lib/dhcpcd \
			--dbdir=/var/lib/dhcpcd \
		--localstatedir=/var \
		${hooks}
}

src_compile() {
	emake
}

src_install() {
	emake DESTDIR="${D}" install
	dodoc README
	newinitd "${FILESDIR}"/${PN}.initd-1 ${PN}
	systemd_dounit "${FILESDIR}"/${PN}.service || die
}

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 use zeroconf; then
		elog "You have installed dhcpcd with zeroconf support."
		elog "This means that 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 -L flag."
		elog "See the dhcpcd man page for more details."
	fi

	elog
	elog "Users upgrading from 4.0 series should pay attention to removal"
	elog "of compat useflag. This changes behavior of dhcp in wide manner:"
	elog "dhcpcd no longer sends a default ClientID for ethernet interfaces."
	elog "This is so we can re-use the address the kernel DHCP client found."
	elog "To retain the old behaviour of sending a default ClientID based on the"
	elog "hardware address for interface, simply add the keyword clientid"
	elog "to dhcpcd.conf or use commandline parameter -I ''"
	elog
	elog "Also, users upgrading from 4.0 series should be aware that"
	elog "the -N, -R and -Y command line options no longer exist."
	elog "These are controled now by nohook options in dhcpcd.conf."
}






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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-5.2.12-r1.ebuild ChangeLog
@ 2011-07-28 13:50 Zac Medico (zmedico)
  0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico (zmedico) @ 2011-07-28 13:50 UTC (permalink / raw
  To: gentoo-commits

zmedico     11/07/28 13:50:05

  Modified:             dhcpcd-5.2.12-r1.ebuild ChangeLog
  Log:
  Fix for prefix.
  
  (Portage version: 2.2.0_alpha47_p6/cvs/Linux i686)

Revision  Changes    Path
1.2                  net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild

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

Index: dhcpcd-5.2.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dhcpcd-5.2.12-r1.ebuild	21 Jun 2011 20:14:18 -0000	1.1
+++ dhcpcd-5.2.12-r1.ebuild	28 Jul 2011 13:50:05 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v 1.1 2011/06/21 20:14:18 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v 1.2 2011/07/28 13:50:05 zmedico Exp $
 
 EAPI=4
 
@@ -39,10 +39,10 @@
 	local hooks="--with-hook=ntp.conf"
 	use elibc_glibc && hooks="${hooks} --with-hook=yp.conf"
 	econf \
-			--prefix= \
-			--libexecdir=/lib/dhcpcd \
-			--dbdir=/var/lib/dhcpcd \
-		--localstatedir=/var \
+			--prefix="${EPREFIX}" \
+			--libexecdir="${EPREFIX}/lib/dhcpcd" \
+			--dbdir="${EPREFIX}/var/lib/dhcpcd" \
+		--localstatedir="${EPREFIX}/var" \
 		${hooks}
 }
 



1.322                net-misc/dhcpcd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.321
retrieving revision 1.322
diff -u -r1.321 -r1.322
--- ChangeLog	21 Jun 2011 20:14:18 -0000	1.321
+++ ChangeLog	28 Jul 2011 13:50:05 -0000	1.322
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.321 2011/06/21 20:14:18 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.322 2011/07/28 13:50:05 zmedico Exp $
+
+  28 Jul 2011; Zac Medico <zmedico@gentoo.org> dhcpcd-5.2.12-r1.ebuild:
+  Fix for prefix.
 
 *dhcpcd-5.2.12-r1 (21 Jun 2011)
 






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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-5.2.12-r1.ebuild ChangeLog
@ 2011-07-29  9:01 Zac Medico (zmedico)
  0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico (zmedico) @ 2011-07-29  9:01 UTC (permalink / raw
  To: gentoo-commits

zmedico     11/07/29 09:01:44

  Modified:             dhcpcd-5.2.12-r1.ebuild ChangeLog
  Log:
  Add ~x86-linux keyword.
  
  (Portage version: 2.2.0_alpha47_p6/cvs/Linux i686)

Revision  Changes    Path
1.3                  net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild

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

Index: dhcpcd-5.2.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- dhcpcd-5.2.12-r1.ebuild	28 Jul 2011 13:50:05 -0000	1.2
+++ dhcpcd-5.2.12-r1.ebuild	29 Jul 2011 09:01:41 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v 1.2 2011/07/28 13:50:05 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v 1.3 2011/07/29 09:01:41 zmedico Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2"
 LICENSE="BSD-2"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-linux"
 
 SLOT="0"
 IUSE="+zeroconf elibc_glibc"



1.323                net-misc/dhcpcd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.322
retrieving revision 1.323
diff -u -r1.322 -r1.323
--- ChangeLog	28 Jul 2011 13:50:05 -0000	1.322
+++ ChangeLog	29 Jul 2011 09:01:41 -0000	1.323
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.322 2011/07/28 13:50:05 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.323 2011/07/29 09:01:41 zmedico Exp $
+
+  29 Jul 2011; Zac Medico <zmedico@gentoo.org> dhcpcd-5.2.12-r1.ebuild:
+  Add ~x86-linux keyword.
 
   28 Jul 2011; Zac Medico <zmedico@gentoo.org> dhcpcd-5.2.12-r1.ebuild:
   Fix for prefix.






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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-5.2.12-r1.ebuild ChangeLog
@ 2011-08-02 21:16 Michal Gorny (mgorny)
  0 siblings, 0 replies; 6+ messages in thread
From: Michal Gorny (mgorny) @ 2011-08-02 21:16 UTC (permalink / raw
  To: gentoo-commits

mgorny      11/08/02 21:16:25

  Modified:             dhcpcd-5.2.12-r1.ebuild ChangeLog
  Log:
  Fix systemd service target. Thanks to Tom Gundersen for explaining this.
  
  (Portage version: 2.2.0_alpha49_p5/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild

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

Index: dhcpcd-5.2.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- dhcpcd-5.2.12-r1.ebuild	29 Jul 2011 09:01:41 -0000	1.3
+++ dhcpcd-5.2.12-r1.ebuild	2 Aug 2011 21:16:25 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v 1.3 2011/07/29 09:01:41 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v 1.4 2011/08/02 21:16:25 mgorny Exp $
 
 EAPI=4
 
@@ -91,4 +91,14 @@
 	elog "Also, users upgrading from 4.0 series should be aware that"
 	elog "the -N, -R and -Y command line options no longer exist."
 	elog "These are controled now by nohook options in dhcpcd.conf."
+
+	# Mea culpa, feel free to remove that after some time --mgorny.
+	if [[ -e "${ROOT}"/etc/systemd/system/network.target.wants/${PN}.service ]]
+	then
+		ebegin "Moving ${PN}.service to multi-user.target"
+		mv "${ROOT}"/etc/systemd/system/network.target.wants/${PN}.service \
+			"${ROOT}"/etc/systemd/system/multi-user.target.wants/
+		eend ${?} \
+			"Please try to re-enable dhcpcd.service"
+	fi
 }



1.324                net-misc/dhcpcd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.323
retrieving revision 1.324
diff -u -r1.323 -r1.324
--- ChangeLog	29 Jul 2011 09:01:41 -0000	1.323
+++ ChangeLog	2 Aug 2011 21:16:25 -0000	1.324
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.323 2011/07/29 09:01:41 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.324 2011/08/02 21:16:25 mgorny Exp $
+
+  02 Aug 2011; Michał Górny <mgorny@gentoo.org> dhcpcd-5.2.12-r1.ebuild,
+  files/dhcpcd.service:
+  Fix systemd service target. Thanks to Tom Gundersen for explaining this.
 
   29 Jul 2011; Zac Medico <zmedico@gentoo.org> dhcpcd-5.2.12-r1.ebuild:
   Add ~x86-linux keyword.






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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-5.2.12-r1.ebuild ChangeLog
@ 2012-01-03 21:08 Sven Vermeulen (swift)
  0 siblings, 0 replies; 6+ messages in thread
From: Sven Vermeulen (swift) @ 2012-01-03 21:08 UTC (permalink / raw
  To: gentoo-commits

swift       12/01/03 21:08:47

  Modified:             dhcpcd-5.2.12-r1.ebuild ChangeLog
  Log:
  Add USE=selinux dependency on selinux-dhcp
  
  (Portage version: 2.1.10.41/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild

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

Index: dhcpcd-5.2.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dhcpcd-5.2.12-r1.ebuild	2 Aug 2011 21:16:25 -0000	1.4
+++ dhcpcd-5.2.12-r1.ebuild	3 Jan 2012 21:08:46 -0000	1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v 1.4 2011/08/02 21:16:25 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v 1.5 2012/01/03 21:08:46 swift Exp $
 
 EAPI=4
 
@@ -19,10 +19,11 @@
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-linux"
 
 SLOT="0"
-IUSE="+zeroconf elibc_glibc"
+IUSE="selinux +zeroconf elibc_glibc"
 
-DEPEND=""
-RDEPEND="!<sys-apps/openrc-0.6.0"
+DEPEND="selinux? ( sec-policy/selinux-dhcp )"
+RDEPEND="!<sys-apps/openrc-0.6.0
+	selinux? ( sec-policy/selinux-dhcp )"
 
 src_prepare() {
 	if ! use zeroconf; then



1.325                net-misc/dhcpcd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.324
retrieving revision 1.325
diff -u -r1.324 -r1.325
--- ChangeLog	2 Aug 2011 21:16:25 -0000	1.324
+++ ChangeLog	3 Jan 2012 21:08:46 -0000	1.325
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.324 2011/08/02 21:16:25 mgorny Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.325 2012/01/03 21:08:46 swift Exp $
+
+  03 Jan 2012; <swift@gentoo.org> dhcpcd-5.2.12-r1.ebuild:
+  Add USE=selinux dependency to selinux-dhcp
 
   02 Aug 2011; Michał Górny <mgorny@gentoo.org> dhcpcd-5.2.12-r1.ebuild,
   files/dhcpcd.service:






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

* [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-5.2.12-r1.ebuild ChangeLog
@ 2012-01-03 21:13 Sven Vermeulen (swift)
  0 siblings, 0 replies; 6+ messages in thread
From: Sven Vermeulen (swift) @ 2012-01-03 21:13 UTC (permalink / raw
  To: gentoo-commits

swift       12/01/03 21:13:45

  Modified:             dhcpcd-5.2.12-r1.ebuild ChangeLog
  Log:
  Remove USE=selinux dependency again, that one is for the dhcp server, not client. Client is already part of base system so covered already
  
  (Portage version: 2.1.10.41/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild

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

Index: dhcpcd-5.2.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- dhcpcd-5.2.12-r1.ebuild	3 Jan 2012 21:08:46 -0000	1.5
+++ dhcpcd-5.2.12-r1.ebuild	3 Jan 2012 21:13:45 -0000	1.6
@@ -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/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v 1.5 2012/01/03 21:08:46 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.2.12-r1.ebuild,v 1.6 2012/01/03 21:13:45 swift Exp $
 
 EAPI=4
 
@@ -19,11 +19,10 @@
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-linux"
 
 SLOT="0"
-IUSE="selinux +zeroconf elibc_glibc"
+IUSE="+zeroconf elibc_glibc"
 
-DEPEND="selinux? ( sec-policy/selinux-dhcp )"
-RDEPEND="!<sys-apps/openrc-0.6.0
-	selinux? ( sec-policy/selinux-dhcp )"
+DEPEND=""
+RDEPEND="!<sys-apps/openrc-0.6.0"
 
 src_prepare() {
 	if ! use zeroconf; then



1.326                net-misc/dhcpcd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.325
retrieving revision 1.326
diff -u -r1.325 -r1.326
--- ChangeLog	3 Jan 2012 21:08:46 -0000	1.325
+++ ChangeLog	3 Jan 2012 21:13:45 -0000	1.326
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.325 2012/01/03 21:08:46 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.326 2012/01/03 21:13:45 swift Exp $
+
+  03 Jan 2012; <swift@gentoo.org> dhcpcd-5.2.12-r1.ebuild:
+  Sorry, selinux-dhcp is for the server, dhcpcd is a client which is part of
+  base. Dropping USE=selinux dependency again
 
   03 Jan 2012; <swift@gentoo.org> dhcpcd-5.2.12-r1.ebuild:
   Add USE=selinux dependency to selinux-dhcp






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

end of thread, other threads:[~2012-01-03 21:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-03 21:13 [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-5.2.12-r1.ebuild ChangeLog Sven Vermeulen (swift)
  -- strict thread matches above, loose matches on Subject: below --
2012-01-03 21:08 Sven Vermeulen (swift)
2011-08-02 21:16 Michal Gorny (mgorny)
2011-07-29  9:01 Zac Medico (zmedico)
2011-07-28 13:50 Zac Medico (zmedico)
2011-06-21 20:14 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