From owner-svn-ports-head@freebsd.org Thu Aug 6 08:14:35 2015 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 2F4E99B4185; Thu, 6 Aug 2015 08:14:35 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 13D6DC6; Thu, 6 Aug 2015 08:14:35 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t768EY7c014289; Thu, 6 Aug 2015 08:14:34 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t768EX4C014285; Thu, 6 Aug 2015 08:14:33 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201508060814.t768EX4C014285@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Thu, 6 Aug 2015 08:14:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393638 - in head/dns: . renewck 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.20 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, 06 Aug 2015 08:14:35 -0000 Author: danfe Date: Thu Aug 6 08:14:33 2015 New Revision: 393638 URL: https://svnweb.freebsd.org/changeset/ports/393638 Log: Add a port of renewck, utility that checks expiration times of one or more domains and notifies user via email about the domains that are approaching expiring. WWW: http://www.gnu.org.ua/software/dnstools/renewck.html Added: head/dns/renewck/ head/dns/renewck/Makefile (contents, props changed) head/dns/renewck/distinfo (contents, props changed) head/dns/renewck/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Thu Aug 6 07:57:29 2015 (r393637) +++ head/dns/Makefile Thu Aug 6 08:14:33 2015 (r393638) @@ -170,6 +170,7 @@ SUBDIR += rbldnsd SUBDIR += rbllookup SUBDIR += rbllookup-ng + SUBDIR += renewck SUBDIR += rubygem-dnsruby SUBDIR += rubygem-net-dns SUBDIR += rubygem-public_suffix Added: head/dns/renewck/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/renewck/Makefile Thu Aug 6 08:14:33 2015 (r393638) @@ -0,0 +1,24 @@ +# Created by: Alexey Dokuchaev +# $FreeBSD$ + +PORTNAME= renewck +PORTVERSION= 1.00 +CATEGORIES= dns perl5 +MASTER_SITES= ftp://download.gnu.org.ua/pub/release/dnstools/ \ + http://freebsd.nsu.ru/distfiles/ + +MAINTAINER= danfe@FreeBSD.org +COMMENT= Check for expiring domains and send email notifications + +LICENSE= GPLv3 + +RUN_DEPENDS= p5-Time-modules>0:${PORTSDIR}/devel/p5-Time-modules \ + p5-Mail-Tools>0:${PORTSDIR}/mail/p5-Mail-Tools \ + p5-GDBM>0:${PORTSDIR}/databases/p5-GDBM + +USES= perl5 +USE_PERL5= configure + +PLIST_FILES= bin/renewck man/man1/renewck.1.gz + +.include Added: head/dns/renewck/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/renewck/distinfo Thu Aug 6 08:14:33 2015 (r393638) @@ -0,0 +1,2 @@ +SHA256 (renewck-1.00.tar.gz) = fabe933aae381839c32115b54b203e0b6a2bd200d3a63d2f75d135e4921c59b4 +SIZE (renewck-1.00.tar.gz) = 7486 Added: head/dns/renewck/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/renewck/pkg-descr Thu Aug 6 08:14:33 2015 (r393638) @@ -0,0 +1,7 @@ +renewck checks expiration times of one or more domains and notifies user +via email about the domains that are approaching expiring. + +It is part of dnstools, a set of utilities for DNS management and related +tasks. + +WWW: http://www.gnu.org.ua/software/dnstools/renewck.html