From owner-svn-ports-head@freebsd.org Wed Apr 18 12:02:32 2018 Return-Path: Delivered-To: svn-ports-head@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 9107AF8451C; Wed, 18 Apr 2018 12:02:32 +0000 (UTC) (envelope-from krion@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 465EF7B7A0; Wed, 18 Apr 2018 12:02:32 +0000 (UTC) (envelope-from krion@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 415F01ABBA; Wed, 18 Apr 2018 12:02:32 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3IC2Wqn024546; Wed, 18 Apr 2018 12:02:32 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3IC2V2U024542; Wed, 18 Apr 2018 12:02:31 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201804181202.w3IC2V2U024542@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Wed, 18 Apr 2018 12:02:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467706 - in head/sysutils: . rw X-SVN-Group: ports-head X-SVN-Commit-Author: krion X-SVN-Commit-Paths: in head/sysutils: . rw X-SVN-Commit-Revision: 467706 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Apr 2018 12:02:32 -0000 Author: krion Date: Wed Apr 18 12:02:31 2018 New Revision: 467706 URL: https://svnweb.freebsd.org/changeset/ports/467706 Log: rw is a command line program which copies information between files or byte streams. The rw command is designed to be a replacement for dd with standard style command line flags. WWW: https://sortix.org/rw/ PR: 227150 Submitted by: jsmith@resonatingmedia.com Added: head/sysutils/rw/ head/sysutils/rw/Makefile (contents, props changed) head/sysutils/rw/distinfo (contents, props changed) head/sysutils/rw/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Apr 18 11:26:59 2018 (r467705) +++ head/sysutils/Makefile Wed Apr 18 12:02:31 2018 (r467706) @@ -1105,6 +1105,7 @@ SUBDIR += runit SUBDIR += runit-faster SUBDIR += runwhen + SUBDIR += rw SUBDIR += s-tui SUBDIR += s6 SUBDIR += s6-rc Added: head/sysutils/rw/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rw/Makefile Wed Apr 18 12:02:31 2018 (r467706) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= rw +PORTVERSION= 1.0 +CATEGORIES= sysutils +MASTER_SITES= https://sortix.org/rw/release/ +DISTNAME= rw-portable-${PORTVERSION} + +MAINTAINER= jsmith@resonatingmedia.com +COMMENT= Simple replacement for dd wth standard command line flags + +LICENSE= ISCL + +PLIST_FILES= bin/rw man/man1/rw.1.gz + +pre-patch: + @${REINPLACE_CMD} -e 's|$$(PREFIX)/share|$$(PREFIX)|' \ + ${WRKSRC}/Makefile + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include Added: head/sysutils/rw/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rw/distinfo Wed Apr 18 12:02:31 2018 (r467706) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523993918 +SHA256 (rw-portable-1.0.tar.gz) = 50009730e36991dfe579716f91f4f616f5ba05ffb7bf69c03d41bf305ed93b6d +SIZE (rw-portable-1.0.tar.gz) = 12993 Added: head/sysutils/rw/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rw/pkg-descr Wed Apr 18 12:02:31 2018 (r467706) @@ -0,0 +1,5 @@ +rw is a command line program which copies information between files or byte +streams. The rw command is designed to be a replacement for dd with +standard style command line flags. + +WWW: https://sortix.org/rw/