diff options
author | taca <taca@pkgsrc.org> | 2010-09-10 07:22:54 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2010-09-10 07:22:54 +0000 |
commit | 7cc4ec0b8548551d2075491f4c13485cf217a462 (patch) | |
tree | 692c2e1b0bfc8fc80e7f4c19d83a25ffbfa88c3d /misc/ruby-daemons/Makefile | |
parent | f125fc58be2d68ce125ba8916d44c18763f35183 (diff) | |
download | pkgsrc-7cc4ec0b8548551d2075491f4c13485cf217a462.tar.gz |
Update misc/ruby-daemons to 1.1.0.
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Add LICENSE.
== Release 1.1.0: June 20, 2010
* Honour the options[:app_name] in Daemons.daemonize (thanks to Ryan Tecco).
* Included a new option :stop_proc to specify a proc that will be called when a
daemonized process receives a request to stop (thanks to Dave Dupre).
* Only delete the pidfile if the current pid is the original pid (ghazel).
* Start when restart but no application running (pcreux).
* Silently continue if there is no pidfile (ghazel).
* We now per default wait for processes to stop and
kill them automatically it if they do not stop within a given time
(force_kill_waittime). Use the option --no_wait to not wait for processes to
stop.
* Set log files mode to 0644 (mikehale).
* Set pid file permissions to 0644 (mikehale).
* Added ability to change process uid/gid (mikehale).
* Fix for: If you happen to start a daemon from a process that has open file
descriptors these will stay open. As it is daemonize.rb only closes ruby IO
objects (thanks to Han Holl).
* New reload command (SIGHUP) (thanks to Michael Schuerig).
Diffstat (limited to 'misc/ruby-daemons/Makefile')
-rw-r--r-- | misc/ruby-daemons/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/ruby-daemons/Makefile b/misc/ruby-daemons/Makefile index 08322d776dc..229628037b7 100644 --- a/misc/ruby-daemons/Makefile +++ b/misc/ruby-daemons/Makefile @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.6 2008/04/04 15:19:57 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2010/09/10 07:22:54 taca Exp $ -DISTNAME= daemons-1.0.10 -PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME} +DISTNAME= daemons-1.1.0 CATEGORIES= misc MAINTAINER= minskim@NetBSD.org HOMEPAGE= http://daemons.rubyforge.org/ COMMENT= Toolkit to convert Ruby scripts to a daemon +LICENSE= mit -.include "../../misc/rubygems/rubygem.mk" +.include "../../lang/ruby/gem.mk" .include "../../mk/bsd.pkg.mk" |