svn commit: r468763 - in head/sysutils: . shuf
Mark Felder
feld at FreeBSD.org
Tue May 1 15:12:47 UTC 2018
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 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= shuf
+PORTVERSION= 1.8
+CATEGORIES= sysutils
+MASTER_SITES= https://devio.us/~bcallah/shuf/
+
+MAINTAINER= feld at 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/
More information about the svn-ports-all
mailing list