From owner-svn-ports-head@freebsd.org Thu Feb 14 00:45:54 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF79D14DD62B; Thu, 14 Feb 2019 00:45:53 +0000 (UTC) (envelope-from leres@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 6B7748492F; Thu, 14 Feb 2019 00:45:53 +0000 (UTC) (envelope-from leres@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 568372EF8E; Thu, 14 Feb 2019 00:45:53 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1E0jr75062524; Thu, 14 Feb 2019 00:45:53 GMT (envelope-from leres@FreeBSD.org) Received: (from leres@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1E0jq6K062523; Thu, 14 Feb 2019 00:45:52 GMT (envelope-from leres@FreeBSD.org) Message-Id: <201902140045.x1E0jq6K062523@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: leres set sender to leres@FreeBSD.org using -f From: Craig Leres Date: Thu, 14 Feb 2019 00:45:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r492892 - in head/dns/dsc: . files X-SVN-Group: ports-head X-SVN-Commit-Author: leres X-SVN-Commit-Paths: in head/dns/dsc: . files X-SVN-Commit-Revision: 492892 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6B7748492F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.950,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Feb 2019 00:45:54 -0000 Author: leres Date: Thu Feb 14 00:45:52 2019 New Revision: 492892 URL: https://svnweb.freebsd.org/changeset/ports/492892 Log: Upgrade to 2.8.0: - New indexer 'response_time' - Support for MaxMind DB (GeoIP2) - Update 'pcap_layers' with fixes for 'scan-build' warnings - Fix port in debug output of DNS message Changes made in addition to the PR supplied patch: - The port had USES=shebangfix but none of the SHEBANG_ variables were set; replace the cron_upload-prep.pl patch with a working shebangfix setup and then use REINPLACE_CMD to adjust the conf path in upload-prep.pl - While we're here use REINPLACE_CMD to obey PREFIX in other files PR: 235711 Submitted by: Leo Vandewoestijne (maintainer) Reviewed by: ler (mentor) Approved by: ler (mentor) Differential Revision: https://reviews.freebsd.org/D19187 Deleted: head/dns/dsc/files/patch-cron_upload-prep.pl Modified: head/dns/dsc/Makefile head/dns/dsc/distinfo Modified: head/dns/dsc/Makefile ============================================================================== --- head/dns/dsc/Makefile Thu Feb 14 00:29:20 2019 (r492891) +++ head/dns/dsc/Makefile Thu Feb 14 00:45:52 2019 (r492892) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= dsc -PORTVERSION= 2.7.0 -PORTREVISION= 1 +PORTVERSION= 2.8.0 CATEGORIES= dns MASTER_SITES= https://www.dns-oarc.net/files/dsc/ \ https://dns.company/files/dsc/ @@ -26,9 +25,20 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-extra-cflags=-I${LOCALBASE}/include SUB_FILES= pkg-message +SHEBANG_FILES= cron/upload-prep.pl -USE_RC_SUBR= dsc +USE_RC_SUBR= dsc OPTIONS_DEFINE= DOCS + +post-extract: + ${REINPLACE_CMD} -e 's|/usr/local/dsc/etc|${PREFIX}/etc/dsc|' \ + ${WRKSRC}/cron/upload-prep.pl + ${REINPLACE_CMD} -e 's|/usr/local/|${PREFIX}/|' \ + ${WRKSRC}/cron/upload-rsync.sh \ + ${WRKSRC}/cron/upload-ssh.sh \ + ${WRKSRC}/cron/upload-x509.sh \ + ${WRKSRC}/src/dsc.conf.5.in \ + ${WRKSRC}/src/dsc.sh .include Modified: head/dns/dsc/distinfo ============================================================================== --- head/dns/dsc/distinfo Thu Feb 14 00:29:20 2019 (r492891) +++ head/dns/dsc/distinfo Thu Feb 14 00:45:52 2019 (r492892) @@ -1,3 +1,3 @@ -TIMESTAMP = 1534374842 -SHA256 (dsc-2.7.0.tar.gz) = eab7f79229a800087d96cb8bac39927558f1d512428d7825d5edb5f7064d2c31 -SIZE (dsc-2.7.0.tar.gz) = 325520 +TIMESTAMP = 1550048113 +SHA256 (dsc-2.8.0.tar.gz) = a8e7ee0063f1ac34f686bdba773ec209a0a974ccdf0e032ba10163800ec86880 +SIZE (dsc-2.8.0.tar.gz) = 333408