[DRE-commits] r3498 - packages-wip/libbackgroundrb-ruby/trunk/debian

Ryan Niebur ryan52-guest at alioth.debian.org
Sun May 3 07:29:31 UTC 2009


Author: ryan52-guest
Date: 2009-05-03 07:29:30 +0000 (Sun, 03 May 2009)
New Revision: 3498

Added:
   packages-wip/libbackgroundrb-ruby/trunk/debian/docs
   packages-wip/libbackgroundrb-ruby/trunk/debian/examples
   packages-wip/libbackgroundrb-ruby/trunk/debian/libbackgroundrb-ruby1.8.lintian-overrides
   packages-wip/libbackgroundrb-ruby/trunk/debian/watch
Modified:
   packages-wip/libbackgroundrb-ruby/trunk/debian/changelog
   packages-wip/libbackgroundrb-ruby/trunk/debian/control
   packages-wip/libbackgroundrb-ruby/trunk/debian/rules
Log:
complete packaging

Modified: packages-wip/libbackgroundrb-ruby/trunk/debian/changelog
===================================================================
--- packages-wip/libbackgroundrb-ruby/trunk/debian/changelog	2009-05-02 14:44:57 UTC (rev 3497)
+++ packages-wip/libbackgroundrb-ruby/trunk/debian/changelog	2009-05-03 07:29:30 UTC (rev 3498)
@@ -1,4 +1,4 @@
-libbackgroundrb-ruby (1.1-1) UNRELEASED; urgency=low
+libbackgroundrb-ruby (1.1-1) unstable; urgency=low
 
   [ Micah Anderson ]
   * Initial release. (Closes: #522637)
@@ -6,4 +6,4 @@
   [ Ryan Niebur ]
   * Finished packaging
 
- -- Ryan Niebur <ryanryan52 at gmail.com>  Mon, 27 Apr 2009 23:18:20 -0700
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Sun, 03 May 2009 00:29:05 -0700

Modified: packages-wip/libbackgroundrb-ruby/trunk/debian/control
===================================================================
--- packages-wip/libbackgroundrb-ruby/trunk/debian/control	2009-05-02 14:44:57 UTC (rev 3497)
+++ packages-wip/libbackgroundrb-ruby/trunk/debian/control	2009-05-03 07:29:30 UTC (rev 3498)
@@ -4,8 +4,8 @@
 Maintainer: Ryan Niebur <ryanryan52 at gmail.com>
 Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
 Build-Depends: cdbs, debhelper (>= 5)
-Build-Depends-Indep: ruby-pkg-tools (>= 0.8), ruby1.8
 Standards-Version: 3.8.1
+Homepage: http://backgroundrb.rubyforge.org/
 
 Package: libbackgroundrb-ruby
 Architecture: all
@@ -13,11 +13,11 @@
 Description: job server and scheduler for moving long-running tasks into the background
  BackgrounDRb is a Ruby job server and scheduler. Its main intent is to
  be used with Ruby on Rails applications for offloading long-running
- tasks. 
+ tasks.
  .
  Since a Rails application blocks while serving a request it is best to
  move long-running tasks off into a background process that is
- divorced from http request/response cycle. 
+ divorced from http request/response cycle.
  .
  This package is part of the Ruby library extras, a supplement to Ruby's
  standard library.
@@ -27,15 +27,15 @@
 
 Package: libbackgroundrb-ruby1.8
 Architecture: all
-Depends: ${misc:Depends}, ruby, libpacket-ruby1.8
+Depends: ${misc:Depends}, ruby, libpacket-ruby1.8, libchronic-ruby
 Description: job server and scheduler for moving long-running tasks into the background
  BackgrounDRb is a Ruby job server and scheduler. Its main intent is to
  be used with Ruby on Rails applications for offloading long-running
- tasks. 
+ tasks.
  .
  Since a Rails application blocks while serving a request it is best to
  move long-running tasks off into a background process that is
- divorced from http request/response cycle. 
+ divorced from http request/response cycle.
  .
  This package is part of the Ruby library extras, a supplement to Ruby's
  standard library.

Added: packages-wip/libbackgroundrb-ruby/trunk/debian/docs
===================================================================
--- packages-wip/libbackgroundrb-ruby/trunk/debian/docs	                        (rev 0)
+++ packages-wip/libbackgroundrb-ruby/trunk/debian/docs	2009-05-03 07:29:30 UTC (rev 3498)
@@ -0,0 +1,4 @@
+README
+know_issues.org
+release_points.org
+TODO.org

Added: packages-wip/libbackgroundrb-ruby/trunk/debian/examples
===================================================================
--- packages-wip/libbackgroundrb-ruby/trunk/debian/examples	                        (rev 0)
+++ packages-wip/libbackgroundrb-ruby/trunk/debian/examples	2009-05-03 07:29:30 UTC (rev 3498)
@@ -0,0 +1 @@
+examples/*

Added: packages-wip/libbackgroundrb-ruby/trunk/debian/libbackgroundrb-ruby1.8.lintian-overrides
===================================================================
--- packages-wip/libbackgroundrb-ruby/trunk/debian/libbackgroundrb-ruby1.8.lintian-overrides	                        (rev 0)
+++ packages-wip/libbackgroundrb-ruby/trunk/debian/libbackgroundrb-ruby1.8.lintian-overrides	2009-05-03 07:29:30 UTC (rev 3498)
@@ -0,0 +1 @@
+libbackgroundrb-ruby1.8: script-not-executable

Modified: packages-wip/libbackgroundrb-ruby/trunk/debian/rules
===================================================================
--- packages-wip/libbackgroundrb-ruby/trunk/debian/rules	2009-05-02 14:44:57 UTC (rev 3497)
+++ packages-wip/libbackgroundrb-ruby/trunk/debian/rules	2009-05-03 07:29:30 UTC (rev 3498)
@@ -1,4 +1,11 @@
 #!/usr/bin/make -f
 
+binary-install/libbackgroundrb-ruby1.8:: debian/libbackgroundrb-ruby1.8.install
+
+debian/libbackgroundrb-ruby1.8.install:
+	ls | sed -e '/debian/ d' -e '/examples/ d' -e '/release_points/ d' -e '/README/ d' -e '/LICENSE/ d' -e '/TODO/ d' -e '/know_issues/ d' -e '/ChangeLog/ d' -e 's,$$, usr/share/backgroundrb/,' > debian/libbackgroundrb-ruby1.8.install
+
+clean::
+	rm -f debian/libbackgroundrb-ruby1.8.install
+
 include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/ruby-pkg-tools/1/class/ruby-setup-rb.mk

Added: packages-wip/libbackgroundrb-ruby/trunk/debian/watch
===================================================================
--- packages-wip/libbackgroundrb-ruby/trunk/debian/watch	                        (rev 0)
+++ packages-wip/libbackgroundrb-ruby/trunk/debian/watch	2009-05-03 07:29:30 UTC (rev 3498)
@@ -0,0 +1,2 @@
+version=3
+http://githubredir.debian.net/github/gnufied/backgroundrb .*/v(.+).tar.gz




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