From nobody@FreeBSD.org  Sun Nov 30 21:49:40 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 549C81065677
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 30 Nov 2008 21:49:40 +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 43E3A8FC19
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 30 Nov 2008 21:49:40 +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 mAULndWI009185
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 30 Nov 2008 21:49:39 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.3/8.14.3/Submit) id mAULndDS009184;
	Sun, 30 Nov 2008 21:49:39 GMT
	(envelope-from nobody)
Message-Id: <200811302149.mAULndDS009184@www.freebsd.org>
Date: Sun, 30 Nov 2008 21:49:39 GMT
From: Arjan van der Velde <noresult@noresult.net>
To: freebsd-gnats-submit@FreeBSD.org
Subject: Update spindown
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         129313
>Category:       ports
>Synopsis:       Update sysutils/spindown
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sun Nov 30 21:50:00 UTC 2008
>Closed-Date:    Sun Dec 07 09:43:32 UTC 2008
>Last-Modified:  Sun Dec  7 09:50:06 UTC 2008
>Originator:     Arjan van der Velde
>Release:        7.0
>Organization:
>Environment:
FreeBSD soekris.mohja-home 7.0-RELEASE-p5 FreeBSD 7.0-RELEASE-p5 #5: Sun Nov 23 20:53:28 CET 2008     root@freebsd7.mohja-home:/usr/obj/usr/src/sys/soekris  i386


>Description:
Added a man page.


# 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.3a
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
XMAN1=		spindown.1
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	${INSTALL_MAN} ${WRKSRC}/spindown.1 ${MANPREFIX}/man/man1/spindown.1
X
X.include <bsd.port.mk>
END-of-Makefile
echo x - distinfo
sed 's/^X//' >distinfo << 'END-of-distinfo'
XMD5 (spindown-0.3a.tar.gz) = 762aec6ea4dd87d3af6aa89b7960e620
XSHA256 (spindown-0.3a.tar.gz) = b98d24c0a97e9d83a46e3fce711fd95e23ffd2e59b295d74b03c2daf7498c78d
XSIZE (spindown-0.3a.tar.gz) = 7395
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



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

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Sun Nov 30 22:18:03 UTC 2008 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=129313 
Class-Changed-From-To: update->maintainer-update 
Class-Changed-By: edwin 
Class-Changed-When: Mon Dec 1 10:36:21 UTC 2008 
Class-Changed-Why:  
Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=129313 
State-Changed-From-To: open->closed 
State-Changed-By: miwi 
State-Changed-When: Sun Dec 7 09:43:31 UTC 2008 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/129313: commit references a PR
Date: Sun,  7 Dec 2008 09:43:32 +0000 (UTC)

 miwi        2008-12-07 09:43:23 UTC
 
   FreeBSD ports repository
 
   Modified files:
     sysutils/spindown    Makefile distinfo 
   Log:
   - Update to 0.3a
   
   PR:             129313
   Submitted by:   Arjan van der Velde <noresult@noresult.net> (maintainer)
   
   Revision  Changes    Path
   1.2       +3 -1      ports/sysutils/spindown/Makefile
   1.2       +3 -3      ports/sysutils/spindown/distinfo
 _______________________________________________
 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:
