[DRE-commits] r4850 - in trunk/librack-ruby: . bin debian test test/rackup

Sebastien Delafond seb at alioth.debian.org
Sun Feb 28 16:25:36 UTC 2010


Author: seb
Date: 2010-02-28 16:25:30 +0000 (Sun, 28 Feb 2010)
New Revision: 4850

Added:
   trunk/librack-ruby/.gitignore
   trunk/librack-ruby/debian/
   trunk/librack-ruby/debian/changelog
   trunk/librack-ruby/debian/compat
   trunk/librack-ruby/debian/control
   trunk/librack-ruby/debian/copyright
   trunk/librack-ruby/debian/librack-ruby.doc-base
   trunk/librack-ruby/debian/librack-ruby1.8.dirs
   trunk/librack-ruby/debian/librack-ruby1.9.debhelper.log
   trunk/librack-ruby/debian/librack-ruby1.9.substvars
   trunk/librack-ruby/debian/rules
   trunk/librack-ruby/debian/source.lintian-overrides
   trunk/librack-ruby/debian/watch
   trunk/librack-ruby/test/
   trunk/librack-ruby/test/rackup/
   trunk/librack-ruby/test/rackup/.gitignore
Modified:
   trunk/librack-ruby/bin/rackup
Log:
[svn-inject] Applying Debian modifications to trunk

Added: trunk/librack-ruby/.gitignore
===================================================================
--- trunk/librack-ruby/.gitignore	                        (rev 0)
+++ trunk/librack-ruby/.gitignore	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1,3 @@
+RDOX
+SPEC
+*.gem

Modified: trunk/librack-ruby/bin/rackup
===================================================================
--- trunk/librack-ruby/bin/rackup	2010-02-28 16:25:16 UTC (rev 4849)
+++ trunk/librack-ruby/bin/rackup	2010-02-28 16:25:30 UTC (rev 4850)
@@ -1,4 +1,4 @@
-#!/usr/bin/env ruby
+#! /usr/bin/ruby1.8
 
 require "rack"
 Rack::Server.start


Property changes on: trunk/librack-ruby/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: trunk/librack-ruby/debian/changelog
===================================================================
--- trunk/librack-ruby/debian/changelog	                        (rev 0)
+++ trunk/librack-ruby/debian/changelog	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1,53 @@
+librack-ruby (1.1.0-2) unstable; urgency=low
+
+  * Move to ruby1.9.1 (Closes: #569884).
+  * Removed unused lintian override.
+  * Bumped up Standards-Version.
+  
+ -- Sebastien Delafond <seb at debian.org>  Mon, 15 Feb 2010 19:42:49 +0100
+
+librack-ruby (1.1.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Sebastien Delafond <seb at debian.org>  Fri, 08 Jan 2010 18:50:25 +0100
+
+librack-ruby (1.0.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * Bumped up Standards revision.
+  * Moved to CDBS.
+  * Lintian cleanups.
+
+ -- Sebastien Delafond <seb at debian.org>  Wed, 21 Oct 2009 11:36:29 +0200
+
+librack-ruby (1.0.0-1) unstable; urgency=low
+
+  * New upstream release.
+  * Added debian/watch file.
+  * Bumped up Standards version to 3.8.1.
+  * BUmped up debhelper compat level to 6.
+  * Moved to section "ruby".
+  * Added proper versioned dependency on debhelper (for dh_lintian).
+  * Updated short description for librack-ruby1.8.
+
+ -- Sebastien Delafond <seb at debian.org>  Tue, 28 Apr 2009 02:14:00 -0700
+
+librack-ruby (0.9.1-1) unstable; urgency=low
+
+  * New upstream release (Closes: #516855).
+
+ -- Sebastien Delafond <seb at debian.org>  Mon, 23 Feb 2009 19:29:20 -0800
+
+librack-ruby (0.3.0-2) unstable; urgency=low
+
+  * Corrected short description for librack-ruby1.8
+
+ -- Sebastien Delafond <seb at debian.org>  Wed, 07 May 2008 14:13:26 -0700
+
+librack-ruby (0.3.0-1) unstable; urgency=low
+
+  * Initial Release (Closes: #480035).
+
+ -- Sebastien Delafond <seb at debian.org>  Wed, 07 May 2008 11:28:30 -0700
+

Added: trunk/librack-ruby/debian/compat
===================================================================
--- trunk/librack-ruby/debian/compat	                        (rev 0)
+++ trunk/librack-ruby/debian/compat	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1 @@
+6

Added: trunk/librack-ruby/debian/control
===================================================================
--- trunk/librack-ruby/debian/control	                        (rev 0)
+++ trunk/librack-ruby/debian/control	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1,56 @@
+Source: librack-ruby
+Section: ruby
+Priority: optional
+Maintainer: Sebastien Delafond <seb at debian.org>
+Build-Depends: debhelper (>= 6), cdbs, libsetup-ruby1.8, ruby-pkg-tools (>= 0.17)
+Build-Depends-Indep: ruby1.8, ruby1.9.1
+Standards-Version: 3.8.4
+Homepage: http://rack.rubyforge.org
+Vcs-Git: git://github.com/rack/rack.git
+Vcs-Browser: http://github.com/rack/rack/tree/master
+
+Package: librack-ruby1.9.1
+Architecture: all
+Depends: ruby1.9.1, ${misc:Depends}
+Description: A modular Ruby webserver interface (Ruby 1.9.1)
+ Rack provides a minimal, modular and adaptable interface for
+ developing web applications in Ruby.  By wrapping HTTP requests and
+ responses in the simplest way possible, it unifies and distills the
+ API for web servers, web frameworks, and software in between (the
+ so-called middleware) into a single method call.
+ .
+ The exact details of this are described in the Rack specification,
+ which all Rack applications should conform to.
+ .
+ This is the package for Ruby 1.9.1.
+
+Package: librack-ruby1.8
+Architecture: all
+Depends: ruby1.8, ${misc:Depends}
+Description: A modular Ruby webserver interface (Ruby 1.8)
+ Rack provides a minimal, modular and adaptable interface for
+ developing web applications in Ruby.  By wrapping HTTP requests and
+ responses in the simplest way possible, it unifies and distills the
+ API for web servers, web frameworks, and software in between (the
+ so-called middleware) into a single method call.
+ .
+ The exact details of this are described in the Rack specification,
+ which all Rack applications should conform to.
+ .
+ This is the package for Ruby 1.8.
+
+Package: librack-ruby
+Architecture: all
+Depends: librack-ruby1.8, ${misc:Depends}, libjs-jquery
+Description: A modular Ruby webserver interface
+ Rack provides a minimal, modular and adaptable interface for
+ developing web applications in Ruby.  By wrapping HTTP requests and
+ responses in the simplest way possible, it unifies and distills the
+ API for web servers, web frameworks, and software in between (the
+ so-called middleware) into a single method call.
+ .
+ The exact details of this are described in the Rack specification,
+ which all Rack applications should conform to.
+ .
+ This package provide documentation and depends on the package 
+ containing the actual library for the default Ruby version.

Added: trunk/librack-ruby/debian/copyright
===================================================================
--- trunk/librack-ruby/debian/copyright	                        (rev 0)
+++ trunk/librack-ruby/debian/copyright	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1,43 @@
+This package was debianized by Sebastien Delafond <seb at debian.org> on
+Wed, 07 May 2008 09:39:28 -0700.
+
+It was downloaded from <URL:http://rack.rubyforge.org>
+
+Upstream Authors:
+  * Christian Neukirchen <chneukirchen at gmail.com>
+  * HTTP authentication: Tim Fletcher <twoggle at gmail.com>
+  * Cookie sessions, Static handler: Luc Heinrich <luc at honk-honk.com>
+  * Pool sessions, OpenID authentication: blink <blinketje at gmail.com>
+  * LiteSpeed handler: Adrian Madrid
+  * SCGI handler: Jeremy Evans
+  * Official Logo: Armin Ronacher
+
+Copyright:
+  doc/js/jquery.js is Copyright (c) 2009 John Resig, and
+  is distributed under either the MIT or GPL licenses.
+
+  doc/js/thickbox-compressed.js is Copyright (c) 2007 Cody Lindley, and
+  is licensed under the MIT license.
+
+  The rest of the source is Copyright (c) 2007 Christian Neukirchen
+  <chneukirchen at gmail.com>.
+
+  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 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.
+
+On Debian systems, the text of the GPL license version 2 can be found at
+`/usr/share/common-licenses/GPL-2'
\ No newline at end of file

Added: trunk/librack-ruby/debian/librack-ruby.doc-base
===================================================================
--- trunk/librack-ruby/debian/librack-ruby.doc-base	                        (rev 0)
+++ trunk/librack-ruby/debian/librack-ruby.doc-base	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1,8 @@
+Document: librack-ruby
+Title: librack-ruby manual
+Abstract: This manual describes how librack-ruby works
+Section: Programming/Ruby
+
+Format: html
+Index: /usr/share/doc/librack-ruby/doc/index.html
+Files: /usr/share/doc/librack-ruby/doc/*/*.html

Added: trunk/librack-ruby/debian/librack-ruby1.8.dirs
===================================================================
--- trunk/librack-ruby/debian/librack-ruby1.8.dirs	                        (rev 0)
+++ trunk/librack-ruby/debian/librack-ruby1.8.dirs	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1,2 @@
+usr/lib/ruby/1.8
+usr/bin

Added: trunk/librack-ruby/debian/librack-ruby1.9.debhelper.log
===================================================================
--- trunk/librack-ruby/debian/librack-ruby1.9.debhelper.log	                        (rev 0)
+++ trunk/librack-ruby/debian/librack-ruby1.9.debhelper.log	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1,31 @@
+dh_installdirs
+dh_installdirs
+dh_installdocs
+dh_installexamples
+dh_installman
+dh_installinfo
+dh_installmenu
+dh_installcron
+dh_installinit
+dh_installdebconf
+dh_installemacsen
+dh_installcatalogs
+dh_installpam
+dh_installlogrotate
+dh_installlogcheck
+dh_installchangelogs
+dh_installudev
+dh_lintian
+dh_install
+dh_link
+dh_installmime
+dh_strip
+dh_compress
+dh_fixperms
+dh_makeshlibs
+dh_installdeb
+dh_perl
+dh_shlibdeps
+dh_gencontrol
+dh_md5sums
+dh_builddeb

Added: trunk/librack-ruby/debian/librack-ruby1.9.substvars
===================================================================
--- trunk/librack-ruby/debian/librack-ruby1.9.substvars	                        (rev 0)
+++ trunk/librack-ruby/debian/librack-ruby1.9.substvars	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1 @@
+misc:Depends=

Added: trunk/librack-ruby/debian/rules
===================================================================
--- trunk/librack-ruby/debian/rules	                        (rev 0)
+++ trunk/librack-ruby/debian/rules	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/ruby-pkg-tools/1/class/ruby-setup-rb.mk
+
+binary-post-install/librack-ruby::
+	cp -r doc example debian/librack-ruby/usr/share/doc/librack-ruby
+	ln -sf ../../../../javascript/jquery/jquery.js debian/librack-ruby/usr/share/doc/librack-ruby/doc/js/jquery.js
+
+binary-post-install/librack-ruby1.8::
+	mv debian/librack-ruby1.8/usr/bin/rackup debian/librack-ruby1.8/usr/bin/rackup1.8
+
+binary-post-install/librack-ruby1.9.1::
+	mv debian/librack-ruby1.9.1/usr/bin/rackup debian/librack-ruby1.9.1/usr/bin/rackup1.9
\ No newline at end of file


Property changes on: trunk/librack-ruby/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/librack-ruby/debian/source.lintian-overrides
===================================================================
--- trunk/librack-ruby/debian/source.lintian-overrides	                        (rev 0)
+++ trunk/librack-ruby/debian/source.lintian-overrides	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1,2 @@
+# libsetup-ruby1.8 is needed to clean
+#librack-ruby source: build-depends-without-arch-dep libsetup-ruby1.8

Added: trunk/librack-ruby/debian/watch
===================================================================
--- trunk/librack-ruby/debian/watch	                        (rev 0)
+++ trunk/librack-ruby/debian/watch	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1,8 @@
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# See uscan(1) for format
+
+# Compulsory line, this is a version 2 file
+version=3
+
+http://chneukirchen.org/releases/rack-([\d.]+)\.tar\.gz

Added: trunk/librack-ruby/test/rackup/.gitignore
===================================================================
--- trunk/librack-ruby/test/rackup/.gitignore	                        (rev 0)
+++ trunk/librack-ruby/test/rackup/.gitignore	2010-02-28 16:25:30 UTC (rev 4850)
@@ -0,0 +1 @@
+log_output




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