Gentoo Archives: gentoo-commits

From: "Peter Weller (welp)" <welp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: ChangeLog dhcpcd-3.1.9.ebuild
Date: Wed, 09 Jan 2008 19:45:01
Message-Id: E1JCgrB-0001do-Mn@stork.gentoo.org
1 welp 08/01/09 19:44:57
2
3 Modified: ChangeLog dhcpcd-3.1.9.ebuild
4 Log:
5 Replace all instances of ewarn and einfo with elog
6 (Portage version: 2.1.4_rc14)
7
8 Revision Changes Path
9 1.174 net-misc/dhcpcd/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.174&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.174&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.173&r2=1.174
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
18 retrieving revision 1.173
19 retrieving revision 1.174
20 diff -u -r1.173 -r1.174
21 --- ChangeLog 9 Jan 2008 16:17:50 -0000 1.173
22 +++ ChangeLog 9 Jan 2008 19:44:57 -0000 1.174
23 @@ -1,6 +1,9 @@
24 # ChangeLog for net-misc/dhcpcd
25 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.173 2008/01/09 16:17:50 welp Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.174 2008/01/09 19:44:57 welp Exp $
28 +
29 + 09 Jan 2008; <welp@g.o> dhcpcd-3.1.9.ebuild:
30 + Replace all instances of ewarn and einfo with elog
31
32 *dhcpcd-3.1.9 (09 Jan 2008)
33
34
35
36
37 1.2 net-misc/dhcpcd/dhcpcd-3.1.9.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/dhcpcd/dhcpcd-3.1.9.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/dhcpcd/dhcpcd-3.1.9.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/dhcpcd/dhcpcd-3.1.9.ebuild?r1=1.1&r2=1.2
42
43 Index: dhcpcd-3.1.9.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-3.1.9.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- dhcpcd-3.1.9.ebuild 9 Jan 2008 16:17:50 -0000 1.1
50 +++ dhcpcd-3.1.9.ebuild 9 Jan 2008 19:44:57 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-3.1.9.ebuild,v 1.1 2008/01/09 16:17:50 welp Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-3.1.9.ebuild,v 1.2 2008/01/09 19:44:57 welp Exp $
56
57 inherit toolchain-funcs
58
59 @@ -22,9 +22,9 @@
60 cd "${S}"
61
62 if use zeroconf; then
63 - einfo "ZeroConf support enabled"
64 + elog "ZeroConf support enabled"
65 else
66 - einfo "Disabling zeroconf support"
67 + elog "Disabling zeroconf support"
68 {
69 echo
70 echo "/* User indicated no zeroconf support */"
71 @@ -35,14 +35,14 @@
72 # Disable DUID support if we have volatile storage.
73 # LiveCD's *should* enable this USE flag
74 if use vram; then
75 - einfo "Disabling DUID support"
76 + elog "Disabling DUID support"
77 {
78 echo
79 echo "/* User indicated volatile ram storage */"
80 echo "#undef ENABLE_DUID"
81 } >> config.h
82 else
83 - einfo "DUID support enabled"
84 + elog "DUID support enabled"
85 fi
86 }
87
88 @@ -56,7 +56,7 @@
89
90 pkg_postinst() {
91 if use zeroconf; then
92 - ewarn "You have installed dhcpcd with zeroconf support."
93 + elog "You have installed dhcpcd with zeroconf support."
94 elog "This means that it will always obtain an IP address even if no"
95 elog "DHCP server can be contacted, which will break any existing"
96 elog "failover support you may have configured in your net configuration."
97 @@ -66,16 +66,16 @@
98
99 if ! use vram; then
100 use zeroconf && echo
101 - ewarn "You have installed dhcpcd with DUID support."
102 + elog "You have installed dhcpcd with DUID support."
103 elog "This means that we will generate a DUID in /var/lib/dhcpcd/dhcpcd.duid"
104 elog "This is generated from a MAC address of the card and a timestamp."
105 elog "It will be used in every subsequent DHCP transaction, along with a IAID"
106 elog "in the ClientID option. This is required by RFC 4361."
107 echo
108 - ewarn "Some DHCP server implementations require a MAC address only in the"
109 - ewarn "ClientID field. These DHCP servers should be updated to be RFC"
110 - ewarn "conformant. If you cannot do this, you can revert to the old"
111 - ewarn "behaviour by using the -I '' option OR building dhcpcd with the"
112 - ewarn "vram USE flag enabled."
113 + elog "Some DHCP server implementations require a MAC address only in the"
114 + elog "ClientID field. These DHCP servers should be updated to be RFC"
115 + elog "conformant. If you cannot do this, you can revert to the old"
116 + elog "behaviour by using the -I '' option OR building dhcpcd with the"
117 + elog "vram USE flag enabled."
118 fi
119 }
120
121
122
123 --
124 gentoo-commits@l.g.o mailing list