From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 7 21:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7C0177 for ; Sat, 7 Dec 2013 21:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 82B401907 for ; Sat, 7 Dec 2013 21:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB7L00EB084061 for ; Sat, 7 Dec 2013 21:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB7L00fI084060; Sat, 7 Dec 2013 21:00:00 GMT (envelope-from gnats) Resent-Date: Sat, 7 Dec 2013 21:00:00 GMT Resent-Message-Id: <201312072100.rB7L00fI084060@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Allan Jude Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BEAEE66 for ; Sat, 7 Dec 2013 20:56:08 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1F6C518D8 for ; Sat, 7 Dec 2013 20:56:08 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB7Ku6tG092587 for ; Sat, 7 Dec 2013 20:56:06 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB7Ku6Ew092586; Sat, 7 Dec 2013 20:56:06 GMT (envelope-from nobody) Message-Id: <201312072056.rB7Ku6Ew092586@oldred.freebsd.org> Date: Sat, 7 Dec 2013 20:56:06 GMT From: Allan Jude To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184583: [maintainer][patch] Update dns/gdnsd to 1.11.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Dec 2013 21:00:00 -0000 >Number: 184583 >Category: ports >Synopsis: [maintainer][patch] Update dns/gdnsd to 1.11.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Dec 07 21:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Allan Jude >Release: 9.2-RELEASE >Organization: ScaleEngine Inc. >Environment: FreeBSD Trooper.HML3.ScaleEngine.net 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Upgrade gdnsd to version 1.11.0 Patches the Makefile to remove a check for the gdnsd user (too early) that breaks staging. Sadly his necessitates autotools >How-To-Repeat: >Fix: Patch attached with submission follows: Index: dns/gdnsd/Makefile =================================================================== --- dns/gdnsd/Makefile (revision 335838) +++ dns/gdnsd/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gdnsd -PORTVERSION= 1.10.1 +PORTVERSION= 1.11.0 CATEGORIES= dns MASTER_SITES= http://downloads.gdnsd.net/ \ http://gdnsd.scaleengine.net/gdnsd/ @@ -19,6 +19,8 @@ USE_LDCONFIG= yes USE_XZ= yes USES= pkgconfig +USE_AUTOTOOLS= automake aclocal +AUTOMAKE_ARGS= --add-missing CPPFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib USE_RC_SUBR= gdnsd Index: dns/gdnsd/distinfo =================================================================== --- dns/gdnsd/distinfo (revision 335838) +++ dns/gdnsd/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (gdnsd-1.10.1.tar.xz) = bd879d90f9c0c7695f6b46feb910a30beb904335b8c5c7d12d1f8d60a1140447 -SIZE (gdnsd-1.10.1.tar.xz) = 624772 +SHA256 (gdnsd-1.11.0.tar.xz) = 45c60d3c739d3b4e25777edc3d552b093275b20226e610cbacbb143300412c94 +SIZE (gdnsd-1.11.0.tar.xz) = 627912 Index: dns/gdnsd/files/patch-Makefile.am =================================================================== --- dns/gdnsd/files/patch-Makefile.am (revision 0) +++ dns/gdnsd/files/patch-Makefile.am (working copy) @@ -0,0 +1,14 @@ +--- Makefile.am.orig 2013-11-05 02:44:31.000000000 -0500 ++++ Makefile.am 2013-12-07 15:50:57.018807055 -0500 +@@ -44,11 +44,5 @@ + $(MKDIR_P) "$(DESTDIR)$(sysconfdir)/gdnsd/geoip"; + $(MKDIR_P) "$(DESTDIR)$(GDNSD_SYSRUNDIR)/gdnsd"; + endif +- @id gdnsd >/dev/null 2>&1; if test $$? -ne 0; then \ +- echo; \ +- echo === READ ME ===; \ +- echo The default user \"gdnsd\" \(for privdrop when executed as root\) does not seem to exist yet!; \ +- echo; \ +- fi + + include $(top_srcdir)/docs.am >Release-Note: >Audit-Trail: >Unformatted: