From owner-svn-ports-all@FreeBSD.ORG Thu Dec 4 12:28:36 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F37F861; Thu, 4 Dec 2014 12:28:36 +0000 (UTC) Received: from svn.freebsd.org (svn.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 628B7BC0; Thu, 4 Dec 2014 12:28:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sB4CSa9v086318; Thu, 4 Dec 2014 12:28:36 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sB4CSZIM086313; Thu, 4 Dec 2014 12:28:35 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201412041228.sB4CSZIM086313@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 4 Dec 2014 12:28:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373881 - in head/sysutils: . odo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Dec 2014 12:28:36 -0000 Author: amdmi3 Date: Thu Dec 4 12:28:34 2014 New Revision: 373881 URL: https://svnweb.freebsd.org/changeset/ports/373881 QAT: https://qat.redports.org/buildarchive/r373881/ Log: odo is an atomic odometer for the command line WWW: http://github.com/atomicobject/odo PR: 195566 Submitted by: neel@neelc.org Added: head/sysutils/odo/ head/sysutils/odo/Makefile (contents, props changed) head/sysutils/odo/distinfo (contents, props changed) head/sysutils/odo/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Dec 4 12:26:53 2014 (r373880) +++ head/sysutils/Makefile Thu Dec 4 12:28:34 2014 (r373881) @@ -564,6 +564,7 @@ SUBDIR += nvramtool SUBDIR += oak SUBDIR += obliterate + SUBDIR += odo SUBDIR += ods2 SUBDIR += open SUBDIR += openipmi Added: head/sysutils/odo/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/odo/Makefile Thu Dec 4 12:28:34 2014 (r373881) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= odo +PORTVERSION= 0.2.1 +CATEGORIES= sysutils + +MAINTAINER= neel@neelc.org +COMMENT= Atomic odometer for the command line + +LICENSE= ISCL + +USE_GITHUB= yes +GH_ACCOUNT= atomicobject +GH_TAGNAME= v${PORTVERSION} +GH_COMMIT= 8c590a3 + +PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 + +regression-test: build + cd ${WRKSRC} && ${SH} ./test_odo + +.include Added: head/sysutils/odo/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/odo/distinfo Thu Dec 4 12:28:34 2014 (r373881) @@ -0,0 +1,2 @@ +SHA256 (odo-0.2.1.tar.gz) = ba5ede6e3174477299b3cdcc286af88b0796f566b71376ced2e4329679dce1d1 +SIZE (odo-0.2.1.tar.gz) = 8017 Added: head/sysutils/odo/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/odo/pkg-descr Thu Dec 4 12:28:34 2014 (r373881) @@ -0,0 +1,3 @@ +odo is an atomic odometer for the command line + +WWW: http://github.com/atomicobject/odo