Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Mar 2017 13:35:49 +0000 (UTC)
From:      Emanuel Haupt <ehaupt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r435147 - in head/sysutils: . mog
Message-ID:  <201703011335.v21DZnKg034231@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <ehaupt@FreeBSD.org>
+# $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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703011335.v21DZnKg034231>