dhcpcd: update to 9.4.1

This commit is contained in:
Juergen Daubert 2021-10-26 13:00:45 +02:00
parent 58306deb21
commit 350c2f6bc7
3 changed files with 24 additions and 22 deletions

View File

@ -21,6 +21,7 @@ drwxr-xr-x root/root usr/share/dhcpcd/hooks/
-rw-r--r-- root/root usr/share/dhcpcd/hooks/10-wpa_supplicant
-rw-r--r-- root/root usr/share/dhcpcd/hooks/15-timezone
-rw-r--r-- root/root usr/share/dhcpcd/hooks/29-lookup-hostname
-rw-r--r-- root/root usr/share/dhcpcd/hooks/50-yp.conf
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man5/
-rw-r--r-- root/root usr/share/man/man5/dhcpcd.conf.5.gz

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqo56oWySd8PkjyaKCYAnp8pAusgeG5n2x7rzK4Zrj0FVFktiSQ10IeYoLE2TVW8tnYlY213xe/ky3+8RsJvluwU=
SHA256 (Pkgfile) = dfa2216368ab66beaa47a499964d9f0e10696165ca0ca497914596f2db7048fa
SHA256 (.footprint) = 60d0a7b5ba09f8ab2c617616f70daf25c50bcce9603dbbc43c70f788c982b9fb
SHA256 (dhcpcd-9.4.0.tar.xz) = 41a69297f380bf15ee8f94f73154f8c2bca7157a087c0d5aca8de000ba1d4513
RWRJc1FUaeVeqvtvXS7wzGWsKfxBTvRRJj5cQTHyIF6FEGJ5jwG6BoqDkmBYoCC+2nUqrnBKPBiNFOdedpdnpoScJgTktZcbLQ4=
SHA256 (Pkgfile) = b9cbd206bc48067835b0ffc70359eb3917de18a08a3148d0348dc8629f6329dd
SHA256 (.footprint) = 6794a3116abf6567ff89e551b7560d585d97371577a6897efbd2bfcf75cd9db3
SHA256 (dhcpcd-9.4.1.tar.xz) = 819357634efed1ea5cf44ec01b24d3d3f8852fec8b4249925dcc5667c54e376c
SHA256 (rc.dhcpcd) = 1cd4f2ae6b969226c789806eb380658ec5f224f4252ef4795c543862e436b531

View File

@ -1,29 +1,30 @@
# Description: An RFC2131-compliant DHCP client daemon
# URL: https://roy.marples.name/projects/dhcpcd/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: eudev
# URL: https://roy.marples.name/projects/dhcpcd/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: eudev
name=dhcpcd
version=9.4.0
version=9.4.1
release=1
source=(https://roy.marples.name/downloads/dhcpcd/$name-$version.tar.xz
rc.dhcpcd)
rc.dhcpcd)
build () {
cd $name-$version
build() {
cd $name-$version
./configure --prefix= \
--libexecdir=/lib/dhcpcd \
--dbdir=/var/lib/dhcpcd \
--sysconfdir=/etc/dhcpcd \
--enable-privsep \
--privsepuser=dhcpcd
./configure \
--prefix= \
--libexecdir=/lib/dhcpcd \
--dbdir=/var/lib/dhcpcd \
--sysconfdir=/etc/dhcpcd \
--enable-privsep \
--privsepuser=dhcpcd
make
make DESTDIR=$PKG install
make
make DESTDIR=$PKG install
install -d -o dhcpcd -g dhcpcd $PKG/var/lib/dhcpcd
install -D -m 0755 $SRC/rc.dhcpcd $PKG/etc/rc.d/dhcpcd
install -d -o dhcpcd -g dhcpcd $PKG/var/lib/dhcpcd
install -D -m 0755 $SRC/rc.dhcpcd $PKG/etc/rc.d/dhcpcd
chmod -R u+w $PKG
chmod -R u+w $PKG
}