Date: Sun, 24 Feb 2019 13:43:29 +0000 (UTC) From: Kai Knoblich <kai@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493760 - in head/net/parpd: . files Message-ID: <201902241343.x1ODhTNC006303@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kai Date: Sun Feb 24 13:43:29 2019 New Revision: 493760 URL: https://svnweb.freebsd.org/changeset/ports/493760 Log: net/parpd: Update to 1.2 While I'm here: * Pacify portlint Changelog: * Extended to provide the needed IPv6 ND packets in addition to IPv4 ARP PR: 235830 Submitted by: lutz@donnerhacke.de (maintainer) Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D19311 Modified: head/net/parpd/Makefile head/net/parpd/distinfo head/net/parpd/files/parpd.in head/net/parpd/pkg-descr Modified: head/net/parpd/Makefile ============================================================================== --- head/net/parpd/Makefile Sun Feb 24 13:39:55 2019 (r493759) +++ head/net/parpd/Makefile Sun Feb 24 13:43:29 2019 (r493760) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= parpd -DISTVERSION= 1.1 +DISTVERSION= 1.2 CATEGORIES= net MASTER_SITES= ftp://ftp.iks-jena.de/pub/mitarb/lutz/parpd/ @@ -13,8 +13,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= tar:tgz USE_RC_SUBR= parpd -NO_TEST= yes +NO_TEST= yes PLIST_FILES= sbin/parpd man/man8/parpd.8.gz do-install: Modified: head/net/parpd/distinfo ============================================================================== --- head/net/parpd/distinfo Sun Feb 24 13:39:55 2019 (r493759) +++ head/net/parpd/distinfo Sun Feb 24 13:43:29 2019 (r493760) @@ -1,3 +1,3 @@ -TIMESTAMP = 1510322377 -SHA256 (parpd-1.1.tgz) = 95318905767c1123eab87efa4fa664a57e5ed8f697802c6b7d5d0799ad8ea6e6 -SIZE (parpd-1.1.tgz) = 17197 +TIMESTAMP = 1550477955 +SHA256 (parpd-1.2.tgz) = 71f830d3d8ddafcabd7c6a0f7e6cdb848cc103ef4549ee4d7213fab7f6e438c0 +SIZE (parpd-1.2.tgz) = 25012 Modified: head/net/parpd/files/parpd.in ============================================================================== --- head/net/parpd/files/parpd.in Sun Feb 24 13:39:55 2019 (r493759) +++ head/net/parpd/files/parpd.in Sun Feb 24 13:43:29 2019 (r493760) @@ -33,12 +33,10 @@ eval ": \${${name}_enable:='NO'}" eval ": \${${name}_flags:=%%PREFIX%%/etc/${name}.conf}" eval "config_file=\$${name}_flags" -[ -s "$config_file" ] || err 1 "Missing configuration file '$config_file'" - -if get_pidfile_from_conf pidfile "$config_file"; then +if [ -s "$config_file" ] && get_pidfile_from_conf pidfile "$config_file"; then pidfile="$_pidfile_from_conf" else - err 1 "$config_file does not specify an pidfile" + pidfile="/var/run/parpd.pid" fi eval "unset ${name}_flags" Modified: head/net/parpd/pkg-descr ============================================================================== --- head/net/parpd/pkg-descr Sun Feb 24 13:39:55 2019 (r493759) +++ head/net/parpd/pkg-descr Sun Feb 24 13:43:29 2019 (r493760) @@ -1,5 +1,5 @@ -The parpd daemon provide the missing ARP packets in non-broadcast -multiple-access networks with overly strict first-hop security +The parpd daemon provide the missing IPV4-ARP and IPv6-ND packets in +non-broadcast multiple-access networks with overly strict first-hop security filters. WWW: https://lutz.donnerhacke.de/Projekte/parpd
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902241343.x1ODhTNC006303>