From nobody@FreeBSD.org  Tue Nov  4 12:36:00 2008
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 7B9801065670
	for <freebsd-gnats-submit@FreeBSD.org>; Tue,  4 Nov 2008 12:36:00 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21])
	by mx1.freebsd.org (Postfix) with ESMTP id 512AA8FC0C
	for <freebsd-gnats-submit@FreeBSD.org>; Tue,  4 Nov 2008 12:36:00 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.3/8.14.3) with ESMTP id mA4CZxQE020483
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 4 Nov 2008 12:35:59 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.3/8.14.3/Submit) id mA4CZx86020482;
	Tue, 4 Nov 2008 12:35:59 GMT
	(envelope-from nobody)
Message-Id: <200811041235.mA4CZx86020482@www.freebsd.org>
Date: Tue, 4 Nov 2008 12:35:59 GMT
From: Arjan van der Velde <noresult@noresult.net>
To: freebsd-gnats-submit@FreeBSD.org
Subject: Submitting a port
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         128581
>Category:       ports
>Synopsis:       [new port] sysutils/spindown: SCSI/firewire harddrive spindown daemon
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Nov 04 12:40:04 UTC 2008
>Closed-Date:    Fri Nov 21 21:15:36 UTC 2008
>Last-Modified:  Fri Nov 21 21:20:06 UTC 2008
>Originator:     Arjan van der Velde
>Release:        7.0
>Organization:
>Environment:
FreeBSD sk1 7.0-RELEASE-p5 FreeBSD 7.0-RELEASE-p5 #1: Sat Oct 25 22:26:32 CEST 2008     root@freebsd7.mohja-home:/usr/obj/usr/src/sys/soekris  i386


>Description:
Hi,

I'd like to submit a port. The port (Makefile and stuff) can be downloaded from http://www.noresult.net/freebsd/spindown/port.tar.gz. Please let me know if you require anything.

Thanks.

Regards,

Arjan



>How-To-Repeat:
-
>Fix:
-

>Release-Note:
>Audit-Trail:
Class-Changed-From-To: maintainer-update->change-request 
Class-Changed-By: edwin 
Class-Changed-When: Tue Nov 4 15:49:55 UTC 2008 
Class-Changed-Why:  
Fix category (new ports should be change-requests) (via the GNATS Auto 
Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=128581 
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Wed Nov 5 05:34:28 UTC 2008 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=128581 
State-Changed-From-To: open->feedback 
State-Changed-By: miwi 
State-Changed-When: Sun Nov 9 16:49:55 UTC 2008 
State-Changed-Why:  

Hi, 


I think this port need a bit rework, - WWW is missing - COMMENT exceeds 
70 characters limit 

You should check this port with portlint -AC Please look at the Porters 
Handbook for instructions.  Please followup this pr with a new patch. 

Thanks. 


http://www.freebsd.org/cgi/query-pr.cgi?pr=128581 

From: Arjan van der Velde <noresult@xs4all.nl>
To: bug-followup@FreeBSD.org, noresult@noresult.net
Cc:  
Subject: Re: ports/128581: [new port] sysutils/spindown: SCSI/firewire harddrive spindown daemon
Date: Sun, 9 Nov 2008 23:04:30 +0100

 Thanks. I updated the file.
 
 Regards,
 
 Arjan.

From: Arjan van der Velde <noresult@xs4all.nl>
To: bug-followup@FreeBSD.org, noresult@noresult.net
Cc:  
Subject: Re: ports/128581: [new port] sysutils/spindown: SCSI/firewire harddrive spindown daemon
Date: Mon, 10 Nov 2008 12:30:42 +0100

 # 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:
 #
 #	Makefile
 #	pkg-descr
 #	distinfo
 #
 echo x - Makefile
 sed 's/^X//' >Makefile << 'END-of-Makefile'
 X# New ports collection makefile for:  spindown
 X# Date created:        4 november 2008
 X# Whom:                noresult
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=	spindown
 XPORTVERSION=	0.1a
 XCATEGORIES=	sysutils
 XMASTER_SITES=	http://www.noresult.net/freebsd/spindown/
 X
 XMAINTAINER=	noresult@noresult.net
 XCOMMENT=	SCSI/firewire harddrive spindown daemon
 X
 XWRKSRC=		${WRKDIR}/${PORTNAME}
 X
 XPLIST_FILES=	sbin/spindown etc/rc.d/spindown
 X
 Xdo-install:
 X	${INSTALL_PROGRAM} ${WRKSRC}/spindown ${PREFIX}/sbin
 X	${INSTALL_SCRIPT} ${WRKSRC}/rc.d/spindown ${PREFIX}/etc/rc.d
 X
 X.include <bsd.port.mk>
 END-of-Makefile
 echo x - pkg-descr
 sed 's/^X//' >pkg-descr << 'END-of-pkg-descr'
 XSCSI / firewire harddrive spindown daemon
 X
 XThis is a small program for handling automated spinning down of
 XSCSI harddrives. With SCSI devices it is not as common to spindown
 Xfor power management purposes as for ATA however it might be required
 Xto spin down a disk contained in a firewire enclosure for instance.
 X
 XThe program can be started using the appropriate rc.d(8) script. The
 Xfollowing configuration parameters in rc.conf(5) are supported:
 X
 Xspindown_enable	(YES or NO)
 Xspindown_flags (see below)
 Xspindown_pidfile (defaults to /var/run/spindown.pid)
 X
 XUsage:
 X
 Xspindown [ -D ] [ -b ] [ -p pidfile ] [ -d device ] [ -t seconds ]
 X         [ -i seconds ]
 X
 X	-D runs spindown in debug mode, preventing it from daemonizing
 X	-b makes spindown run in the background
 X	-p pidfile
 X	-d a device to be monitored (multiple devices may be specified)
 X	   The idle time at which the drive will spin down is the time
 X	   specified by the last -t parameter before this -d option. This
 X	   way idle times can be set independently for each device.
 X	-t idle time at which a device will spin down (defaults to 600
 X	   seconds) this option can be specified more than one. -d options
 X	   specified will use the last -t option encountered before the
 X	   -d option itself.
 X	-i check interval. This is the interval between device activity
 X	   checks (defaults to 60 seconds)
 X
 XIf a running daemon is sent a SIGHUP, it will report up-to-date
 Xinformation on activity of the devices monitored
 X
 XAuthor: Arjan van der Velde (noresult@noresult.net)
 XWWW: http://www.noresult.net/freebsd/spindown/
 END-of-pkg-descr
 echo x - distinfo
 sed 's/^X//' >distinfo << 'END-of-distinfo'
 XMD5 (spindown-0.1a.tar.gz) = 6e4ac88f0b330f8d64eaf3024eb0ca54
 XSHA256 (spindown-0.1a.tar.gz) =  
 db5d2e33d57d92a294eff0f24acde0e565e37a7c86b3a1af8ebda391a2b93c27
 XSIZE (spindown-0.1a.tar.gz) = 7470
 END-of-distinfo
 exit
 
 

From: Arjan van der Velde <noresult@xs4all.nl>
To: bug-followup@FreeBSD.org, noresult@noresult.net
Cc:  
Subject: Re: ports/128581: [new port] sysutils/spindown: SCSI/firewire harddrive spindown daemon
Date: Thu, 13 Nov 2008 17:09:06 +0100

 # 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:
 #
 #	Makefile
 #	distinfo
 #	pkg-descr
 #
 echo x - Makefile
 sed 's/^X//' >Makefile << 'END-of-Makefile'
 X# New ports collection makefile for:  spindown
 X# Date created:        4 november 2008
 X# Whom:                noresult
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=	spindown
 XPORTVERSION=	0.2a
 XCATEGORIES=	sysutils
 XMASTER_SITES=	http://www.noresult.net/freebsd/spindown/
 X
 XMAINTAINER=	noresult@noresult.net
 XCOMMENT=	SCSI/firewire harddrive spindown daemon
 X
 XWRKSRC=		${WRKDIR}/${PORTNAME}
 X
 XPLIST_FILES=	sbin/spindown etc/rc.d/spindown
 X
 Xdo-install:
 X	${INSTALL_PROGRAM} ${WRKSRC}/spindown ${PREFIX}/sbin
 X	${INSTALL_SCRIPT} ${WRKSRC}/rc.d/spindown ${PREFIX}/etc/rc.d
 X
 X.include <bsd.port.mk>
 END-of-Makefile
 echo x - distinfo
 sed 's/^X//' >distinfo << 'END-of-distinfo'
 XMD5 (spindown-0.2a.tar.gz) = 7a26e5f532a4afa9e599e7973c5f80eb
 XSHA256 (spindown-0.2a.tar.gz) =  
 8720031437610f10bdf3da4ab7b7d07161639ac0896261881e94be1eeb0ff9d3
 XSIZE (spindown-0.2a.tar.gz) = 7584
 END-of-distinfo
 echo x - pkg-descr
 sed 's/^X//' >pkg-descr << 'END-of-pkg-descr'
 XSCSI / firewire harddrive spindown daemon
 X
 XThis is a small program for handling automated spinning down of
 XSCSI harddrives. With SCSI devices it is not as common to spindown
 Xfor power management purposes as for ATA however it might be required
 Xto spin down a disk contained in a firewire enclosure for instance.
 X
 XThe program can be started using the appropriate rc.d(8) script. The
 Xfollowing configuration parameters in rc.conf(5) are supported:
 X
 Xspindown_enable	(YES or NO)
 Xspindown_flags (see below)
 Xspindown_pidfile (defaults to /var/run/spindown.pid)
 X
 XUsage:
 X
 Xspindown [ -D ] [ -b ] [ -p pidfile ] [ -d device ] [ -t seconds ]
 X         [ -i seconds ]
 X
 X	-D runs spindown in debug mode, preventing it from daemonizing
 X	-b makes spindown run in the background
 X	-p pidfile
 X	-d a device to be monitored (multiple devices may be specified)
 X	   The idle time at which the drive will spin down is the time
 X	   specified by the last -t parameter before this -d option. This
 X	   way idle times can be set independently for each device.
 X	-t idle time at which a device will spin down (defaults to 600
 X	   seconds) this option can be specified more than one. -d options
 X	   specified will use the last -t option encountered before the
 X	   -d option itself.
 X	-i check interval. This is the interval between device activity
 X	   checks (defaults to 60 seconds)
 X
 XIf a running daemon is sent a SIGHUP, it will report up-to-date
 Xinformation on activity of the devices monitored
 X
 XAuthor: Arjan van der Velde (noresult@noresult.net)
 XWWW: http://www.noresult.net/freebsd/spindown/
 END-of-pkg-descr
 exit
 
 
State-Changed-From-To: feedback->closed 
State-Changed-By: miwi 
State-Changed-When: Fri Nov 21 21:15:35 UTC 2008 
State-Changed-Why:  
New port added. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=128581 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/128581: commit references a PR
Date: Fri, 21 Nov 2008 21:16:03 +0000 (UTC)

 miwi        2008-11-21 21:15:49 UTC
 
   FreeBSD ports repository
 
   Modified files:
     sysutils             Makefile 
   Added files:
     sysutils/spindown    Makefile distinfo pkg-descr 
   Log:
   SCSI / firewire harddrive spindown daemon
   
   This is a small program for handling automated spinning down of
   SCSI harddrives. With SCSI devices it is not as common to spindown
   for power management purposes as for ATA however it might be required
   to spin down a disk contained in a firewire enclosure for instance.
   
   WWW: http://www.noresult.net/freebsd/spindown/
   
   PR:             ports/128581
   Submitted by:   Arjan van der Velde <noresult at xs4all.nl>
   
   Revision  Changes    Path
   1.1045    +1 -0      ports/sysutils/Makefile
   1.1       +24 -0     ports/sysutils/spindown/Makefile (new)
   1.1       +3 -0      ports/sysutils/spindown/distinfo (new)
   1.1       +8 -0      ports/sysutils/spindown/pkg-descr (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
