From owner-svn-ports-all@freebsd.org Tue May 12 11:53:42 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 43FE32EBD1C; Tue, 12 May 2020 11:53:42 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49Lx5y0kl4z47dH; Tue, 12 May 2020 11:53:42 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1466A7941; Tue, 12 May 2020 11:53:42 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04CBrfR4079021; Tue, 12 May 2020 11:53:41 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04CBrfxa079016; Tue, 12 May 2020 11:53:41 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <202005121153.04CBrfxa079016@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Tue, 12 May 2020 11:53:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r534990 - head/net/dhcpcd-devel X-SVN-Group: ports-head X-SVN-Commit-Author: woodsb02 X-SVN-Commit-Paths: head/net/dhcpcd-devel X-SVN-Commit-Revision: 534990 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 May 2020 11:53:42 -0000 Author: woodsb02 Date: Tue May 12 11:53:41 2020 New Revision: 534990 URL: https://svnweb.freebsd.org/changeset/ports/534990 Log: net/dhcpcd-devel: Update to 2020-05-12 This change removes the chroot directory, as dhcpcd can now work with an empty chroot directory. Modified: head/net/dhcpcd-devel/Makefile head/net/dhcpcd-devel/distinfo head/net/dhcpcd-devel/pkg-descr head/net/dhcpcd-devel/pkg-plist Modified: head/net/dhcpcd-devel/Makefile ============================================================================== --- head/net/dhcpcd-devel/Makefile Tue May 12 11:46:03 2020 (r534989) +++ head/net/dhcpcd-devel/Makefile Tue May 12 11:53:41 2020 (r534990) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= dhcpcd -PORTVERSION= g20200507 +PORTVERSION= g20200512 CATEGORIES= net MASTER_SITES= https://roy.marples.name/cgit/dhcpcd.git/snapshot/ PKGNAMESUFFIX= -devel DISTNAME= ${PORTNAME}-${GITTAG} -GITTAG= 727b7e9 +GITTAG= 5ccec78 MAINTAINER= woodsb02@FreeBSD.org COMMENT= DHCP/IPv4LL/IPv6RS/DHCPv6 client @@ -25,16 +25,10 @@ CONFIGURE_ARGS= --datadir=${PREFIX}/share/examples \ --privsepuser="_dhcp" USE_RC_SUBR= dhcpcd -.include - -.if ${OPSYS} == FreeBSD -CHROOTDIR= /var/chroot/dhcpcd -CONFIGURE_ARGS+= --chrootdir="${CHROOTDIR}" -.endif - post-install: ${MV} ${STAGEDIR}${PREFIX}/etc/dhcpcd.conf \ ${STAGEDIR}${PREFIX}/share/examples/dhcpcd @${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/dhcpcd + ${MKDIR} ${STAGEDIR}/var/db/dhcpcd -.include +.include Modified: head/net/dhcpcd-devel/distinfo ============================================================================== --- head/net/dhcpcd-devel/distinfo Tue May 12 11:46:03 2020 (r534989) +++ head/net/dhcpcd-devel/distinfo Tue May 12 11:53:41 2020 (r534990) @@ -1,3 +1,3 @@ -TIMESTAMP = 1588893196 -SHA256 (dhcpcd-727b7e9.tar.xz) = 909ad77fe51dba2ffa0ed1ea04e8c801f4505a0372caacff3cb21c4135c8ad89 -SIZE (dhcpcd-727b7e9.tar.xz) = 246100 +TIMESTAMP = 1589282909 +SHA256 (dhcpcd-5ccec78.tar.xz) = a5a05d914d5765167fd24180354097f273a31c8d16226fc3a52802c4f3d936dc +SIZE (dhcpcd-5ccec78.tar.xz) = 246156 Modified: head/net/dhcpcd-devel/pkg-descr ============================================================================== --- head/net/dhcpcd-devel/pkg-descr Tue May 12 11:46:03 2020 (r534989) +++ head/net/dhcpcd-devel/pkg-descr Tue May 12 11:53:41 2020 (r534990) @@ -4,7 +4,7 @@ listening for carrier up/down events and managing rout dhcpcd-9 introduces a number of security improvements: - privilege separation; operations which do not require root privileges - are run in a chroot /var/chroot/dhcpcd as the unprivileged user _dhcp + are run as the unprivileged user _dhcp - capsicumized all network facing processes; all fd's in network facing processes are fully limited Modified: head/net/dhcpcd-devel/pkg-plist ============================================================================== --- head/net/dhcpcd-devel/pkg-plist Tue May 12 11:46:03 2020 (r534989) +++ head/net/dhcpcd-devel/pkg-plist Tue May 12 11:53:41 2020 (r534990) @@ -12,3 +12,4 @@ sbin/dhcpcd %%EXAMPLESDIR%%/hooks/29-lookup-hostname %%EXAMPLESDIR%%/hooks/50-ypbind @sample %%EXAMPLESDIR%%/dhcpcd.conf etc/dhcpcd.conf +@dir(_dhcp,_dhcp,) /var/db/dhcpcd