Gentoo Archives: gentoo-commits

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