[DRE-commits] r1298 - in packages-wip/libdaemons-ruby/trunk: . debian

Filipe Lautert filipe-guest at alioth.debian.org
Fri Mar 2 19:27:56 CET 2007


Author: filipe-guest
Date: 2007-03-02 18:27:55 +0000 (Fri, 02 Mar 2007)
New Revision: 1298

Added:
   packages-wip/libdaemons-ruby/trunk/debian/
   packages-wip/libdaemons-ruby/trunk/debian/changelog
   packages-wip/libdaemons-ruby/trunk/debian/compat
   packages-wip/libdaemons-ruby/trunk/debian/control
   packages-wip/libdaemons-ruby/trunk/debian/copyright
   packages-wip/libdaemons-ruby/trunk/debian/docs
   packages-wip/libdaemons-ruby/trunk/debian/rules
   packages-wip/libdaemons-ruby/trunk/debian/watch
Log:
[svn-inject] Applying Debian modifications to trunk


Property changes on: packages-wip/libdaemons-ruby/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: packages-wip/libdaemons-ruby/trunk/debian/changelog
===================================================================
--- packages-wip/libdaemons-ruby/trunk/debian/changelog	2007-03-02 18:27:43 UTC (rev 1297)
+++ packages-wip/libdaemons-ruby/trunk/debian/changelog	2007-03-02 18:27:55 UTC (rev 1298)
@@ -0,0 +1,5 @@
+libdaemons-ruby (1.0.5-1) UNRELEASED; urgency=low
+
+  * Initial release.
+
+ -- Filipe Lautert <filipe at icewall.org>  Wed, 28 Feb 2007 16:02:03 -0300

Added: packages-wip/libdaemons-ruby/trunk/debian/compat
===================================================================
--- packages-wip/libdaemons-ruby/trunk/debian/compat	2007-03-02 18:27:43 UTC (rev 1297)
+++ packages-wip/libdaemons-ruby/trunk/debian/compat	2007-03-02 18:27:55 UTC (rev 1298)
@@ -0,0 +1 @@
+4

Added: packages-wip/libdaemons-ruby/trunk/debian/control
===================================================================
--- packages-wip/libdaemons-ruby/trunk/debian/control	2007-03-02 18:27:43 UTC (rev 1297)
+++ packages-wip/libdaemons-ruby/trunk/debian/control	2007-03-02 18:27:55 UTC (rev 1298)
@@ -0,0 +1,31 @@
+Source: libdaemons-ruby
+Section: interpreters
+Priority: optional
+Maintainer: Filipe Lautert <filipe at icewall.org>
+Build-Depends: debhelper (>> 5.0.0), cdbs, ruby-pkg-tools (>= 0.8), ruby, ruby1.8-dev
+Standards-Version: 3.7.2
+
+Package: libdaemons-ruby
+Architecture: all
+Depends: libdaemons-ruby1.8
+Description: Ruby daemons library
+ Daemons provides an easy way to wrap existing ruby
+ scripts (for example a self-written server) 
+ to be run as a daemon and to be controlled by simple
+ start/stop/restart commands. daemons can also run 
+ and control blocks of Ruby code in a daemon process.
+ .
+ This is a dependency package which depends on Debian's default Ruby version
+ (currently 1.8.x).
+
+Package: libdaemons-ruby1.8
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: Ruby daemons library
+ Daemons provides an easy way to wrap existing ruby
+ scripts (for example a self-written server) 
+ to be run as a daemon and to be controlled by simple
+ start/stop/restart commands. daemons can also run 
+ and control blocks of Ruby code in a daemon process.
+ .
+ This package is built for Ruby 1.8.

Added: packages-wip/libdaemons-ruby/trunk/debian/copyright
===================================================================
--- packages-wip/libdaemons-ruby/trunk/debian/copyright	2007-03-02 18:27:43 UTC (rev 1297)
+++ packages-wip/libdaemons-ruby/trunk/debian/copyright	2007-03-02 18:27:55 UTC (rev 1298)
@@ -0,0 +1,36 @@
+This package was debianized by Filipe Lautert <filipe at icewall.org>
+Tue, 28 Feb 2007 16:04:42 -0300
+
+It was downloaded from http://rubyforge.org/projects/daemons/
+
+Upstream Author: Thomas Uehlinger <th.uehlinger at gmx.ch>
+
+Copyright (c) 2005-2007 Thomas Uehlinger
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+This license does not apply to daemonize.rb, which is was written by 
+Travis Whitton und published under the following license:
+
+The Daemonize extension module is copywrited free software by Travis Whitton
+<whitton at atlantic.net>. You can redistribute it under the terms specified in
+the COPYING file of the Ruby distribution.

Added: packages-wip/libdaemons-ruby/trunk/debian/docs
===================================================================
--- packages-wip/libdaemons-ruby/trunk/debian/docs	2007-03-02 18:27:43 UTC (rev 1297)
+++ packages-wip/libdaemons-ruby/trunk/debian/docs	2007-03-02 18:27:55 UTC (rev 1298)
@@ -0,0 +1,3 @@
+README
+examples
+TODO

Added: packages-wip/libdaemons-ruby/trunk/debian/rules
===================================================================
--- packages-wip/libdaemons-ruby/trunk/debian/rules	2007-03-02 18:27:43 UTC (rev 1297)
+++ packages-wip/libdaemons-ruby/trunk/debian/rules	2007-03-02 18:27:55 UTC (rev 1298)
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+#
+# CDBS file to build the Foo Ruby package.
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/ruby-pkg-tools/1/class/ruby-setup-rb.mk


Property changes on: packages-wip/libdaemons-ruby/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages-wip/libdaemons-ruby/trunk/debian/watch
===================================================================
--- packages-wip/libdaemons-ruby/trunk/debian/watch	2007-03-02 18:27:43 UTC (rev 1297)
+++ packages-wip/libdaemons-ruby/trunk/debian/watch	2007-03-02 18:27:55 UTC (rev 1298)
@@ -0,0 +1,2 @@
+version=3
+http://rubyforge.org/frs/?group_id=524 .*/daemons-(.*)\.tgz




More information about the Pkg-ruby-extras-commits mailing list