From owner-svn-ports-head@freebsd.org Wed Sep 5 03:45:55 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 6BA92FE18E8; Wed, 5 Sep 2018 03:45:55 +0000 (UTC) (envelope-from swills@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 15B4E8F081; Wed, 5 Sep 2018 03:45:55 +0000 (UTC) (envelope-from swills@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 10602207C8; Wed, 5 Sep 2018 03:45:55 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w853jsIb035834; Wed, 5 Sep 2018 03:45:54 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w853jsm1035829; Wed, 5 Sep 2018 03:45:54 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201809050345.w853jsm1035829@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 5 Sep 2018 03:45:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479008 - in head: . misc misc/timediff misc/tzdiff X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head: . misc misc/timediff misc/tzdiff X-SVN-Commit-Revision: 479008 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: Wed, 05 Sep 2018 03:45:55 -0000 Author: swills Date: Wed Sep 5 03:45:53 2018 New Revision: 479008 URL: https://svnweb.freebsd.org/changeset/ports/479008 Log: misc/timediff: renamed and update project renamed from timediff to tzdiff, so update port accordingly. While here, update to 0.9. PR: 231141 Submitted by: Yuichiro NAITO (maintainer) Added: head/misc/tzdiff/ - copied from r479007, head/misc/timediff/ Deleted: head/misc/timediff/ Modified: head/MOVED head/misc/Makefile head/misc/tzdiff/Makefile head/misc/tzdiff/distinfo head/misc/tzdiff/pkg-descr Modified: head/MOVED ============================================================================== --- head/MOVED Wed Sep 5 03:35:33 2018 (r479007) +++ head/MOVED Wed Sep 5 03:45:53 2018 (r479008) @@ -10515,3 +10515,4 @@ devel/rlvm|games/rlvm|2018-09-03|Moved to better categ dns/openmdns|net/openmdns|2018-09-03|Moved to better category www/hs-activehs||2018-09-03|Has expired: Doesn't build with recent dependencies science/mpqc-mpich|science/mpqc|2018-09-03|MPI option is enabled by default in mpqc, no need for mpqc-mpich +misc/timediff|misc/tzdiff|2018-09-04|Project was renamed Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Wed Sep 5 03:35:33 2018 (r479007) +++ head/misc/Makefile Wed Sep 5 03:45:53 2018 (r479008) @@ -515,7 +515,6 @@ SUBDIR += termatrix SUBDIR += teseq SUBDIR += thefuck - SUBDIR += timediff SUBDIR += tkcron SUBDIR += tkinfo SUBDIR += tkregexp @@ -526,6 +525,7 @@ SUBDIR += tudu SUBDIR += tvbrowser SUBDIR += typetrainer + SUBDIR += tzdiff SUBDIR += uk-phone SUBDIR += uk-postcodes SUBDIR += umodunpack Modified: head/misc/tzdiff/Makefile ============================================================================== --- head/misc/timediff/Makefile Wed Sep 5 03:35:33 2018 (r479007) +++ head/misc/tzdiff/Makefile Wed Sep 5 03:45:53 2018 (r479008) @@ -1,8 +1,8 @@ # Created by: Naito Yuichiro # $FreeBSD$ -PORTNAME= timediff -PORTVERSION= 0.8 +PORTNAME= tzdiff +PORTVERSION= 0.9 CATEGORIES= misc MAINTAINER= naito.yuichiro@gmail.com @@ -12,19 +12,19 @@ LICENSE= BSD2CLAUSE USE_GITHUB= yes GH_ACCOUNT= belgianbeer -GH_PROJECT= timediff +GH_PROJECT= tzdiff -PLIST_FILES= sbin/timediff +PLIST_FILES= bin/tzdiff NO_ARCH= yes NO_BUILD= yes do-patch: ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ - ${WRKSRC}/timediff + ${WRKSRC}/tzdiff do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/timediff \ - ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_SCRIPT} ${WRKSRC}/tzdiff \ + ${STAGEDIR}${PREFIX}/bin .include Modified: head/misc/tzdiff/distinfo ============================================================================== --- head/misc/timediff/distinfo Wed Sep 5 03:35:33 2018 (r479007) +++ head/misc/tzdiff/distinfo Wed Sep 5 03:45:53 2018 (r479008) @@ -1,3 +1,3 @@ -TIMESTAMP = 1534900639 -SHA256 (belgianbeer-timediff-0.8_GH0.tar.gz) = a106bdea42b6569c3f2e1c7d06aea41e47af665e4fdea4bfd38f23d5e6871936 -SIZE (belgianbeer-timediff-0.8_GH0.tar.gz) = 3349 +TIMESTAMP = 1536023257 +SHA256 (belgianbeer-tzdiff-0.9_GH0.tar.gz) = d6e600e15cffe9ccebc72f6efc7798d9f3deb9ced4bc03aef1b8607b43446795 +SIZE (belgianbeer-tzdiff-0.9_GH0.tar.gz) = 3415 Modified: head/misc/tzdiff/pkg-descr ============================================================================== --- head/misc/timediff/pkg-descr Wed Sep 5 03:35:33 2018 (r479007) +++ head/misc/tzdiff/pkg-descr Wed Sep 5 03:45:53 2018 (r479008) @@ -1,4 +1,4 @@ -timediff is a simple command line tool to show time pairs +tzdiff is a simple command line tool to show time pairs between target timezone and localtime. -WWW: https://github.com/belgianbeer/timediff +WWW: https://github.com/belgianbeer/tzdiff