Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/dhcpcd/
Date: Sun, 05 May 2019 21:56:34
Message-Id: 1557093375.b43092aa6dc087b88fe886452b69541197950621.williamh@gentoo
1 commit: b43092aa6dc087b88fe886452b69541197950621
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 5 21:54:03 2019 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Sun May 5 21:56:15 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b43092aa
7
8 net-misc/dhcpcd: 7.2.2 bump
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
12
13 net-misc/dhcpcd/Manifest | 1 +
14 net-misc/dhcpcd/dhcpcd-7.2.2.ebuild | 148 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 149 insertions(+)
16
17 diff --git a/net-misc/dhcpcd/Manifest b/net-misc/dhcpcd/Manifest
18 index a04b408e4de..55d9a897b1b 100644
19 --- a/net-misc/dhcpcd/Manifest
20 +++ b/net-misc/dhcpcd/Manifest
21 @@ -1,2 +1,3 @@
22 DIST dhcpcd-7.1.1.tar.xz 211788 BLAKE2B 984ec97ffdcb15883f57f9e2a699a7c8f006b2630e7651ab9d55e7a980045f8891f09d9f7be420969203a59671d097a1ed76621fe4a62ff26a5020fc8becfe69 SHA512 8791e718d65ef8ae23a16b98e82824860fa91914e6eb0a42cdbbca28236c1c38005ada44214bde33aac57152fe675debebdb5d141b67dcfc82012996d8337bb4
23 DIST dhcpcd-7.2.1.tar.xz 213652 BLAKE2B cae5a68ecf285825e6376c8b5bef5f3aba3bb8a393ba4298d8e990d665dd948369f24f688cdb85006df535b7f9b412c795d8eb7817a92e8d9992bdc7b7757a1e SHA512 11c3ef6d3ee49e147aa44725aa1ac0cddff70a268908439fe91990e135175d063e3d65ab587e1780e4f6f0739cf33873a58ffea0a3130d1bfb5598f9f11ec5a3
24 +DIST dhcpcd-7.2.2.tar.xz 213600 BLAKE2B ae36cc44d32c034b41f9c970fdb154ef2935b53ae9a81d76dfe8143882170cb8f4ea9c2048ebbfc2d94096061626e93d5890565192115d2953506a7d1e4ee6f2 SHA512 a774c4788efbb9712be04d3f29943b801043f9ec1ea1925282330afa00b9f3db5c29a85969ef004bf85b20045b4cc6ab241ceaae050a18051079d396845845e8
25
26 diff --git a/net-misc/dhcpcd/dhcpcd-7.2.2.ebuild b/net-misc/dhcpcd/dhcpcd-7.2.2.ebuild
27 new file mode 100644
28 index 00000000000..48ba26275d0
29 --- /dev/null
30 +++ b/net-misc/dhcpcd/dhcpcd-7.2.2.ebuild
31 @@ -0,0 +1,148 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +inherit systemd toolchain-funcs
38 +
39 +if [[ ${PV} == "9999" ]]; then
40 + inherit git-r3
41 + EGIT_REPO_URI="https://roy.marples.name/git/dhcpcd.git"
42 +else
43 + MY_P="${P/_alpha/-alpha}"
44 + MY_P="${MY_P/_beta/-beta}"
45 + MY_P="${MY_P/_rc/-rc}"
46 + SRC_URI="https://roy.marples.name/downloads/${PN}/${MY_P}.tar.xz"
47 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
48 + S="${WORKDIR}/${MY_P}"
49 +fi
50 +
51 +DESCRIPTION="A fully featured, yet light weight RFC2131 compliant DHCP client"
52 +HOMEPAGE="https://roy.marples.name/projects/dhcpcd"
53 +LICENSE="BSD-2"
54 +SLOT="0"
55 +IUSE="elibc_glibc +embedded ipv6 kernel_linux +udev"
56 +
57 +COMMON_DEPEND="udev? ( virtual/udev )"
58 +DEPEND="${COMMON_DEPEND}"
59 +RDEPEND="${COMMON_DEPEND}"
60 +
61 +src_configure() {
62 + local dev hooks=() rundir
63 + use udev || dev="--without-dev --without-udev"
64 + hooks=( --with-hook=ntp.conf )
65 + use elibc_glibc && hooks+=( --with-hook=yp.conf )
66 + use kernel_linux && rundir="--rundir=${EPREFIX}/run"
67 + local myeconfargs=(
68 + --prefix="${EPREFIX}"
69 + --libexecdir="${EPREFIX}/lib/dhcpcd"
70 + --dbdir="${EPREFIX}/var/lib/dhcpcd"
71 + --localstatedir="${EPREFIX}/var"
72 + ${rundir}
73 + $(use_enable embedded)
74 + $(use_enable ipv6)
75 + ${dev}
76 + CC="$(tc-getCC)"
77 + ${hooks[@]}
78 + )
79 + econf "${myeconfargs[@]}"
80 +}
81 +
82 +src_install() {
83 + default
84 + keepdir /var/lib/dhcpcd
85 + newinitd "${FILESDIR}"/${PN}.initd ${PN}
86 + systemd_dounit "${FILESDIR}"/${PN}.service
87 +}
88 +
89 +pkg_postinst() {
90 + local dbdir="${EROOT%/}"/var/lib/dhcpcd old_files=()
91 +
92 + local old_old_duid="${EROOT%/}"/var/lib/dhcpcd/dhcpcd.duid
93 + local old_duid="${EROOT%/}"/etc/dhcpcd.duid
94 + local new_duid="${dbdir}"/duid
95 + if [[ -e "${old_old_duid}" ]] ; then
96 + # Upgrade the duid file to the new format if needed
97 + if ! grep -q '..:..:..:..:..:..' "${old_old_duid}"; then
98 + sed -i -e 's/\(..\)/\1:/g; s/:$//g' "${old_old_duid}"
99 + fi
100 +
101 + # Move the duid to /etc, a more sensible location
102 + if [[ ! -e "${old_duid}" ]] ; then
103 + cp -p "${old_old_duid}" "${new_duid}"
104 + fi
105 + old_files+=( "${old_old_duid}" )
106 + fi
107 +
108 + # dhcpcd-7 moves the files out of /etc
109 + if [[ -e "${old_duid}" ]] ; then
110 + if [[ ! -e "${new_duid}" ]] ; then
111 + cp -p "${old_duid}" "${new_duid}"
112 + fi
113 + old_files+=( "${old_duid}" )
114 + fi
115 + local old_secret="${EROOT%/}"/etc/dhcpcd.secret
116 + local new_secret="${dbdir}"/secret
117 + if [[ -e "${old_secret}" ]] ; then
118 + if [[ ! -e "${new_secret}" ]] ; then
119 + cp -p "${old_secret}" "${new_secret}"
120 + fi
121 + old_files+=( "${old_secret}" )
122 + fi
123 +
124 + # dhcpcd-7 renames some files in /var/lib/dhcpcd
125 + local old_rdm="${dbdir}"/dhcpcd-rdm.monotonic
126 + local new_rdm="${dbdir}"/rdm_monotonic
127 + if [[ -e "${old_rdm}" ]] ; then
128 + if [[ ! -e "${new_rdm}" ]] ; then
129 + cp -p "${old_rdm}" "${new_rdm}"
130 + fi
131 + old_files+=( "${old_rdm}" )
132 + fi
133 + local lease=
134 + for lease in "${dbdir}"/dhcpcd-*.lease*; do
135 + [[ -f "${lease}" ]] || continue
136 + old_files+=( "${lease}" )
137 + local new_lease=$(basename "${lease}" | sed -e "s/dhcpcd-//")
138 + [[ -e "${dbdir}/${new_lease}" ]] && continue
139 + cp "${lease}" "${dbdir}/${new_lease}"
140 + done
141 +
142 + # Warn about removing stale files
143 + if [[ -n "${old_files[@]}" ]] ; then
144 + elog
145 + elog "dhcpcd-7 has copied dhcpcd.duid and dhcpcd.secret from"
146 + elog "${EROOT%/}/etc to ${dbdir}"
147 + elog "and copied leases in ${dbdir} to new files with the dhcpcd-"
148 + elog "prefix dropped."
149 + elog
150 + elog "You should remove these files if you don't plan on reverting"
151 + elog "to an older version:"
152 + local old_file=
153 + for old_file in ${old_files[@]}; do
154 + elog " ${old_file}"
155 + done
156 + fi
157 +
158 + if [ -z "${REPLACING_VERSIONS}" ]; then
159 + elog
160 + elog "dhcpcd has zeroconf support active by default."
161 + elog "This means it will always obtain an IP address even if no"
162 + elog "DHCP server can be contacted, which will break any existing"
163 + elog "failover support you may have configured in your net configuration."
164 + elog "This behaviour can be controlled with the noipv4ll configuration"
165 + elog "file option or the -L command line switch."
166 + elog "See the dhcpcd and dhcpcd.conf man pages for more details."
167 +
168 + elog
169 + elog "Dhcpcd has duid enabled by default, and this may cause issues"
170 + elog "with some dhcp servers. For more information, see"
171 + elog "https://bugs.gentoo.org/show_bug.cgi?id=477356"
172 + fi
173 +
174 + if ! has_version net-dns/bind-tools; then
175 + elog
176 + elog "If you activate the lookup-hostname hook to look up your hostname"
177 + elog "using the dns, you need to install net-dns/bind-tools."
178 + fi
179 +}