From owner-svn-ports-all@freebsd.org Wed Mar 1 13:35:51 2017 Return-Path: Delivered-To: svn-ports-all@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 908CCCF3BEF; Wed, 1 Mar 2017 13:35:51 +0000 (UTC) (envelope-from ehaupt@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 438AE26C; Wed, 1 Mar 2017 13:35:51 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v21DZoDQ034235; Wed, 1 Mar 2017 13:35:50 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v21DZnKg034231; Wed, 1 Mar 2017 13:35:49 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201703011335.v21DZnKg034231@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 1 Mar 2017 13:35:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435147 - in head/sysutils: . mog 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.23 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: Wed, 01 Mar 2017 13:35:51 -0000 Author: ehaupt Date: Wed Mar 1 13:35:49 2017 New Revision: 435147 URL: https://svnweb.freebsd.org/changeset/ports/435147 Log: Add mog 0.4, different take on the UNIX tool cat. Added: head/sysutils/mog/ head/sysutils/mog/Makefile (contents, props changed) head/sysutils/mog/distinfo (contents, props changed) head/sysutils/mog/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Mar 1 13:35:26 2017 (r435146) +++ head/sysutils/Makefile Wed Mar 1 13:35:49 2017 (r435147) @@ -613,6 +613,7 @@ SUBDIR += mksunbootcd SUBDIR += mnrpes SUBDIR += modules + SUBDIR += mog SUBDIR += monit SUBDIR += monitord SUBDIR += monitorix Added: head/sysutils/mog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mog/Makefile Wed Mar 1 13:35:49 2017 (r435147) @@ -0,0 +1,25 @@ +# Created by: Emanuel Haupt +# $FreeBSD$ + +PORTNAME= mog +PORTVERSION= 0.4 +CATEGORIES= sysutils + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Different take on the UNIX tool cat + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments>0:textproc/py-pygments \ + mdv:devel/py-mdv +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USES= python +USE_GITHUB= yes +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +GH_ACCOUNT= witchard + +.include Added: head/sysutils/mog/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mog/distinfo Wed Mar 1 13:35:49 2017 (r435147) @@ -0,0 +1,3 @@ +TIMESTAMP = 1488372190 +SHA256 (witchard-mog-0.4_GH0.tar.gz) = 41f2592de8716b5609bce957a973f66d4acb4544a6cf021daaefa5d4da5bb2b5 +SIZE (witchard-mog-0.4_GH0.tar.gz) = 61029 Added: head/sysutils/mog/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mog/pkg-descr Wed Mar 1 13:35:49 2017 (r435147) @@ -0,0 +1,12 @@ +The man page for cat says that it can: concatenate files and print on the +standard output. Often its main use is for the latter. mog tries to help you +"print on the standard output" in a more intelligent way. For example, it can +be configured to: + + * Syntax highlight scripts + * Print a hex dump of binary files + * Show details of image files + * Perform objdump on executables + * List a directory + +WWW: https://github.com/witchard/mog/