Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 May 2018 15:12:45 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r468763 - in head/sysutils: . shuf
Message-ID:  <201805011512.w41FCjZF075049@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Tue May  1 15:12:45 2018
New Revision: 468763
URL: https://svnweb.freebsd.org/changeset/ports/468763

Log:
  shuf is a utility that outputs a random permutation of its input lines.
  
  WWW: https://devio.us/~bcallah/shuf/

Added:
  head/sysutils/shuf/
  head/sysutils/shuf/Makefile   (contents, props changed)
  head/sysutils/shuf/distinfo   (contents, props changed)
  head/sysutils/shuf/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Tue May  1 14:26:46 2018	(r468762)
+++ head/sysutils/Makefile	Tue May  1 15:12:45 2018	(r468763)
@@ -1159,6 +1159,7 @@
     SUBDIR += shlock
     SUBDIR += shmcat
     SUBDIR += showbeastie
+    SUBDIR += shuf
     SUBDIR += siegfried
     SUBDIR += signon-kwallet-extension
     SUBDIR += signon-plugin-oauth2

Added: head/sysutils/shuf/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/shuf/Makefile	Tue May  1 15:12:45 2018	(r468763)
@@ -0,0 +1,22 @@
+# Created by: Mark Felder <feld@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	shuf
+PORTVERSION=	1.8
+CATEGORIES=	sysutils
+MASTER_SITES=	https://devio.us/~bcallah/shuf/
+
+MAINTAINER=	feld@FreeBSD.org
+COMMENT=	Randomly permute input lines
+
+LICENSE=	ISCL
+
+GNU_CONFIGURE=	yes
+
+PLIST_FILES=	bin/shuf man/man1/shuf.1.gz
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/shuf ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/shuf.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
+
+.include <bsd.port.mk>

Added: head/sysutils/shuf/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/shuf/distinfo	Tue May  1 15:12:45 2018	(r468763)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1525186596
+SHA256 (shuf-1.8.tar.gz) = 9135103942e23b1d0e023364a11b4b150cb7965b56ed0fb168fcadbfeef7c503
+SIZE (shuf-1.8.tar.gz) = 5569

Added: head/sysutils/shuf/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/shuf/pkg-descr	Tue May  1 15:12:45 2018	(r468763)
@@ -0,0 +1,3 @@
+shuf is a utility that outputs a random permutation of its input lines.
+
+WWW: https://devio.us/~bcallah/shuf/



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