From owner-svn-ports-all@freebsd.org Wed Dec 23 10:57:51 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7CB3BA5052E; Wed, 23 Dec 2015 10:57:51 +0000 (UTC) (envelope-from ak@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 mx1.freebsd.org (Postfix) with ESMTPS id 4C5D815C8; Wed, 23 Dec 2015 10:57:51 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBNAvoMD096035; Wed, 23 Dec 2015 10:57:50 GMT (envelope-from ak@FreeBSD.org) Received: (from ak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBNAvoV7096031; Wed, 23 Dec 2015 10:57:50 GMT (envelope-from ak@FreeBSD.org) Message-Id: <201512231057.tBNAvoV7096031@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ak set sender to ak@FreeBSD.org using -f From: Alex Kozlov Date: Wed, 23 Dec 2015 10:57:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404282 - in head/archivers/rpm2cpio: . files X-SVN-Group: ports-head 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.20 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: Wed, 23 Dec 2015 10:57:51 -0000 Author: ak Date: Wed Dec 23 10:57:49 2015 New Revision: 404282 URL: https://svnweb.freebsd.org/changeset/ports/404282 Log: - Print usage if there are no arguments and stdin is terminal - Fix grammar in pkg-descr Modified: head/archivers/rpm2cpio/Makefile head/archivers/rpm2cpio/files/rpm2cpio head/archivers/rpm2cpio/pkg-descr Modified: head/archivers/rpm2cpio/Makefile ============================================================================== --- head/archivers/rpm2cpio/Makefile Wed Dec 23 10:50:00 2015 (r404281) +++ head/archivers/rpm2cpio/Makefile Wed Dec 23 10:57:49 2015 (r404282) @@ -3,6 +3,7 @@ PORTNAME= rpm2cpio PORTVERSION= 1.4 +PORTREVISION= 1 CATEGORIES= archivers MASTER_SITES= # none DISTFILES= # none Modified: head/archivers/rpm2cpio/files/rpm2cpio ============================================================================== --- head/archivers/rpm2cpio/files/rpm2cpio Wed Dec 23 10:50:00 2015 (r404281) +++ head/archivers/rpm2cpio/files/rpm2cpio Wed Dec 23 10:57:49 2015 (r404282) @@ -4,7 +4,7 @@ PATH=/bin:/usr/bin -if [ $# -eq 0 ]; then +if [ $# -eq 0 -a ! -t 0 ]; then f=/dev/stdin elif [ $# -eq 1 ]; then f=$1 Modified: head/archivers/rpm2cpio/pkg-descr ============================================================================== --- head/archivers/rpm2cpio/pkg-descr Wed Dec 23 10:50:00 2015 (r404281) +++ head/archivers/rpm2cpio/pkg-descr Wed Dec 23 10:57:49 2015 (r404282) @@ -1,7 +1,7 @@ -Convert .rpm files to cpio format +Convert .rpm files to cpio format. Why does the world need another rpm2cpio? because the existing one won't build unless you have half a ton of things that aren't really required for it, since it uses the same library used to extract RPM's. -This version just a tiny wrapper around bsdtar. +This version is just a tiny wrapper around bsdtar.