From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Nov 2 09:50:21 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 561FC16A41F for ; Wed, 2 Nov 2005 09:50:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAADB43D46 for ; Wed, 2 Nov 2005 09:50:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA29oKNf069300 for ; Wed, 2 Nov 2005 09:50:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA29oKsd069299; Wed, 2 Nov 2005 09:50:20 GMT (envelope-from gnats) Resent-Date: Wed, 2 Nov 2005 09:50:20 GMT Resent-Message-Id: <200511020950.jA29oKsd069299@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Murray Nesbitt Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E8E616A41F for ; Wed, 2 Nov 2005 09:43:16 +0000 (GMT) (envelope-from murray@gls-store.com) Received: from gls-store.com (gls-store.com [66.199.244.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FECE43D45 for ; Wed, 2 Nov 2005 09:43:16 +0000 (GMT) (envelope-from murray@gls-store.com) Received: by gls-store.com (Postfix, from userid 1002) id 89CDD88; Wed, 2 Nov 2005 01:50:21 -0800 (PST) Message-Id: <20051102095021.89CDD88@gls-store.com> Date: Wed, 2 Nov 2005 01:50:21 -0800 (PST) From: Murray Nesbitt To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/88391: New port: misc/loop is a shell programming utility that prints to stdout a series of numbers from `start' to `end' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Nov 2005 09:50:21 -0000 >Number: 88391 >Category: ports >Synopsis: New port: misc/loop is a shell programming utility that prints to stdout a series of numbers from `start' to `end' >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 02 09:50:20 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Murray Nesbitt >Release: FreeBSD 5.4-RELEASE-p7 i386 >Organization: >Environment: System: FreeBSD gls-store.com 5.4-RELEASE-p7 FreeBSD 5.4-RELEASE-p7 #0: Tue Sep 13 00:57:55 PDT 2005 root@gls-store.com:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: A shell programming utility that prints to stdout a series of numbers from `start' to `end' >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # loop # loop/files # loop/files/patch-Makefile # loop/pkg-descr # loop/distinfo # loop/Makefile # echo c - loop mkdir -p loop > /dev/null 2>&1 echo c - loop/files mkdir -p loop/files > /dev/null 2>&1 echo x - loop/files/patch-Makefile sed 's/^X//' >loop/files/patch-Makefile << 'END-of-loop/files/patch-Makefile' X--- Makefile.orig Wed Nov 2 01:23:17 2005 X+++ Makefile Wed Nov 2 01:18:17 2005 X@@ -1,7 +1,7 @@ X X-CC = gcc X-CFLAGS = -Wall -O X-DESTDIR = /usr/local X+CC ?= gcc X+CFLAGS += -Wall X+DESTDIR = ${PREFIX} X X loop: X ${CC} ${CFLAGS} -o loop loop.c END-of-loop/files/patch-Makefile echo x - loop/pkg-descr sed 's/^X//' >loop/pkg-descr << 'END-of-loop/pkg-descr' XPrints to stdout a series of numbers from `start' to `end', with Xoptional increment and zero-padded field width. Hex (-x) or octal X(-o) output formats are available. Negative numbers are allowed, Xand a negative `increment' does the expected thing. X END-of-loop/pkg-descr echo x - loop/distinfo sed 's/^X//' >loop/distinfo << 'END-of-loop/distinfo' XMD5 (loop-1.0.tar.gz) = d4454ed2d1b921733a225621bc508c68 XSIZE (loop-1.0.tar.gz) = 2012 END-of-loop/distinfo echo x - loop/Makefile sed 's/^X//' >loop/Makefile << 'END-of-loop/Makefile' X# New ports collection makefile for: loop X# Date created: 02 November 2005 X# Whom: Murray Nesbitt X# X# $FreeBSD$ X# X XPORTNAME= loop XPORTVERSION= 1.0 XCATEGORIES= misc XMASTER_SITES= http://www.nesbitt.ca/downloads/ X XMAINTAINER= freebsd@nesbitt.ca XCOMMENT= A shell scripting utility that prints to stdout a series of numbers from `start' to `end'. X XMAN1= loop.1 XMANCOMPRESSED= yes XPLIST_FILES= bin/loop X X.include END-of-loop/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: