From owner-svn-ports-head@freebsd.org Fri Feb 10 09:13:43 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4DE30CD9DEA; Fri, 10 Feb 2017 09:13:43 +0000 (UTC) (envelope-from krion@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 mx1.freebsd.org (Postfix) with ESMTPS id 0DAD5E2D; Fri, 10 Feb 2017 09:13:42 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1A9Dg9r069030; Fri, 10 Feb 2017 09:13:42 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1A9Dfp2069028; Fri, 10 Feb 2017 09:13:41 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201702100913.v1A9Dfp2069028@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarew Date: Fri, 10 Feb 2017 09:13:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433788 - in head/dns/ddclient: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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: Fri, 10 Feb 2017 09:13:43 -0000 Author: krion Date: Fri Feb 10 09:13:41 2017 New Revision: 433788 URL: https://svnweb.freebsd.org/changeset/ports/433788 Log: Fix stale dependencies. PR: 216526 Submitted by: bhtooefr@gmail.com Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9488 Modified: head/dns/ddclient/Makefile head/dns/ddclient/files/patch-ddclient Modified: head/dns/ddclient/Makefile ============================================================================== --- head/dns/ddclient/Makefile Fri Feb 10 09:01:27 2017 (r433787) +++ head/dns/ddclient/Makefile Fri Feb 10 09:13:41 2017 (r433788) @@ -3,6 +3,7 @@ PORTNAME= ddclient PORTVERSION= 3.8.3 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -18,7 +19,7 @@ USE_PERL5= run USE_RC_SUBR= ${PORTNAME} -RUN_DEPENDS= p5-JSON-Any>=0:converters/p5-JSON-Any +RUN_DEPENDS= p5-JSON-PP>=0:converters/p5-JSON-PP SUB_FILES= pkg-message ddclient_force @@ -31,7 +32,7 @@ SSL_RUN_DEPENDS=ca_root_nss>0:security/c PORTDOCS= COPYRIGHT ChangeLog README.cisco README.ssl README.md \ sample-etc_cron.d_ddclient sample-etc_dhclient-exit-hooks \ sample-etc_dhcpc_dhcpcd-eth0.exe sample-etc_ppp_ip-up.local -PLIST_FILES= etc/ddclient.conf.sample etc/periodic/daily/ddclient_force \ +PLIST_FILES= "@sample etc/ddclient.conf.sample" etc/periodic/daily/ddclient_force \ sbin/ddclient post-patch: Modified: head/dns/ddclient/files/patch-ddclient ============================================================================== --- head/dns/ddclient/files/patch-ddclient Fri Feb 10 09:01:27 2017 (r433787) +++ head/dns/ddclient/files/patch-ddclient Fri Feb 10 09:13:41 2017 (r433788) @@ -1,14 +1,14 @@ ---- ./ddclient.orig 2011-07-25 19:41:39.000000000 -0700 -+++ ./ddclient 2011-07-25 19:41:48.000000000 -0700 -@@ -19,6 +18,7 @@ +--- ddclient.orig 2015-05-30 21:37:38.000000000 +1200 ++++ ddclient 2017-02-08 11:00:23.812579000 +1300 +@@ -25,6 +25,7 @@ use Getopt::Long; use Sys::Hostname; use IO::Socket; +use POSIX 'setsid'; - my ($VERSION) = q$Revision: 157 $ =~ /(\d+)/; + # my ($VERSION) = q$Revision: 184 $ =~ /(\d+)/; -@@ -29,9 +29,9 @@ +@@ -35,9 +36,9 @@ $program =~ s/d$//; my $now = time; my $hostname = hostname(); @@ -21,7 +21,7 @@ my $msgs = ''; my $last_msgs = ''; -@@ -39,7 +39,7 @@ +@@ -45,7 +46,7 @@ local $file = ''; local $lineno = ''; @@ -30,7 +30,7 @@ sub T_ANY {'any'}; sub T_STRING {'string'}; -@@ -678,6 +678,9 @@ +@@ -743,6 +744,9 @@ ; } elsif (opt('daemon')) { $SIG{'CHLD'} = 'IGNORE'; @@ -40,7 +40,7 @@ my $pid = fork; if ($pid < 0) { print STDERR "${program}: can not fork ($!)\n"; -@@ -685,10 +688,9 @@ +@@ -750,10 +754,9 @@ } elsif ($pid) { exit 0; } @@ -53,7 +53,7 @@ } # write out the pid file if we're daemon'ized -@@ -1478,17 +1480,17 @@ +@@ -1544,17 +1547,17 @@ ## execute the command. local *FD; if (! open(FD, $cmd)) { @@ -75,7 +75,24 @@ } else { $ok = 1; -@@ -1878,6 +1880,7 @@ +@@ -1878,13 +1881,13 @@ + ## load_json_support + ###################################################################### + sub load_json_support { +- my $json_loaded = eval {require JSON::Any}; ++ my $json_loaded = eval {require JSON::PP}; + unless ($json_loaded) { + fatal(<<"EOM"); +-Error loading the Perl module JSON::Any needed for cloudflare update. ++Error loading the Perl module JSON::PP needed for cloudflare update. + EOM + } +- import JSON::Any; ++ import JSON::PP (qw/decode_json/); + } + ###################################################################### + ## geturl +@@ -1957,6 +1960,7 @@ $sd = IO::Socket::SSL->new( PeerAddr => $peer, PeerPort => $port, @@ -83,3 +100,29 @@ Proto => 'tcp', MultiHomed => 1, Timeout => opt('timeout'), +@@ -4096,9 +4100,9 @@ + + # Strip header + $reply =~ s/^.*?\n\n//s; +- my $response = JSON::Any->jsonToObj($reply); +- if ($response->{result} eq 'error') { +- failed ("%s", $response->{msg}); ++ my $response = eval {decode_json($reply)}; ++ if (!defined $response || !defined $response->{result}) { ++ failed ("invalid json or result."); + next; + } + +@@ -4128,9 +4132,9 @@ + + # Strip header + $reply =~ s/^.*?\n\n//s; +- $response = JSON::Any->jsonToObj($reply); +- if ($response->{result} eq 'error') { +- failed ("%s", $response->{msg}); ++ $response = eval {decode_json($reply)}; ++ if (!defined $response || !defined $response->{result}) { ++ failed ("invalid json or result."); + } else { + success ("%s -- Updated Successfully to %s", $domain, $ip); +