From owner-svn-ports-all@freebsd.org Tue May 1 15:12:47 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2CB87FADD9E; Tue, 1 May 2018 15:12:47 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EF81B7C763; Tue, 1 May 2018 15:12:45 +0000 (UTC) (envelope-from feld@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EA5D923BAB; Tue, 1 May 2018 15:12:45 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w41FCjwG075053; Tue, 1 May 2018 15:12:45 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w41FCjZF075049; Tue, 1 May 2018 15:12:45 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201805011512.w41FCjZF075049@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 1 May 2018 15:12:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468763 - in head/sysutils: . shuf X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in head/sysutils: . shuf X-SVN-Commit-Revision: 468763 X-SVN-Commit-Repository: ports 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.25 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: Tue, 01 May 2018 15:12:47 -0000 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 +# $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 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/