From owner-svn-ports-head@freebsd.org Mon Aug 6 22:13:47 2018 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 074C31067B8A; Mon, 6 Aug 2018 22:13:47 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A281E8E387; Mon, 6 Aug 2018 22:13:46 +0000 (UTC) (envelope-from crees@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 645BD1302E; Mon, 6 Aug 2018 22:13:46 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w76MDkPx057055; Mon, 6 Aug 2018 22:13:46 GMT (envelope-from crees@FreeBSD.org) Received: (from crees@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w76MDjlI057052; Mon, 6 Aug 2018 22:13:45 GMT (envelope-from crees@FreeBSD.org) Message-Id: <201808062213.w76MDjlI057052@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: crees set sender to crees@FreeBSD.org using -f From: Chris Rees Date: Mon, 6 Aug 2018 22:13:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476551 - in head/dns: . namesilo_ddns X-SVN-Group: ports-head X-SVN-Commit-Author: crees X-SVN-Commit-Paths: in head/dns: . namesilo_ddns X-SVN-Commit-Revision: 476551 X-SVN-Commit-Repository: ports 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.27 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: Mon, 06 Aug 2018 22:13:47 -0000 Author: crees Date: Mon Aug 6 22:13:45 2018 New Revision: 476551 URL: https://svnweb.freebsd.org/changeset/ports/476551 Log: Dynamic DNS record update with NameSilo. This is a shell script to update Namesilo's DNS record when IP changed. Set to run this script as cronjob in your system. WWW: https://github.com/crees/namesilo_ddns Added: head/dns/namesilo_ddns/ head/dns/namesilo_ddns/Makefile (contents, props changed) head/dns/namesilo_ddns/distinfo (contents, props changed) head/dns/namesilo_ddns/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Mon Aug 6 21:26:20 2018 (r476550) +++ head/dns/Makefile Mon Aug 6 22:13:45 2018 (r476551) @@ -111,6 +111,7 @@ SUBDIR += mdnsd SUBDIR += mydns SUBDIR += mydns-ng + SUBDIR += namesilo_ddns SUBDIR += noip SUBDIR += nsd SUBDIR += nslint Added: head/dns/namesilo_ddns/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/namesilo_ddns/Makefile Mon Aug 6 22:13:45 2018 (r476551) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= namesilo_ddns +PORTVERSION= 2.0 +DISTVERSIONPREFIX=v +CATEGORIES= dns net + +MAINTAINER= crees@FreeBSD.org +COMMENT= Updates DNS records with Namesilo for dynamic IP addresses + +LICENSE= MIT + +RUN_DEPENDS= curl:ftp/curl \ + xmllint:textproc/libxml2 + +USE_GITHUB= yes +GH_ACCOUNT= crees + +NO_BUILD= yes + +PLIST_FILES= sbin/${PORTNAME} "@sample etc/${PORTNAME}.conf.sample" + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.sh \ + ${STAGEDIR}${PREFIX}/sbin/${PORTNAME} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf.sample \ + ${STAGEDIR}${PREFIX}/etc/ + +.include Added: head/dns/namesilo_ddns/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/namesilo_ddns/distinfo Mon Aug 6 22:13:45 2018 (r476551) @@ -0,0 +1,3 @@ +TIMESTAMP = 1533592899 +SHA256 (crees-namesilo_ddns-v2.0_GH0.tar.gz) = c460d272250af293bc7bfe8e665f453b69a9a74317d1c02e62e6f8b6ad25dc2d +SIZE (crees-namesilo_ddns-v2.0_GH0.tar.gz) = 3878 Added: head/dns/namesilo_ddns/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/namesilo_ddns/pkg-descr Mon Aug 6 22:13:45 2018 (r476551) @@ -0,0 +1,6 @@ +Dynamic DNS record update with NameSilo. + +This is a shell script to update Namesilo's DNS record when IP changed. +Set to run this script as cronjob in your system. + +WWW: https://github.com/crees/namesilo_ddns