[DRE-commits] r1954 - in packages-wip/camping/trunk: . debian debian/patches

paulvt at alioth.debian.org paulvt at alioth.debian.org
Sun Oct 7 08:30:43 UTC 2007


Author: paulvt
Date: 2007-10-07 08:30:43 +0000 (Sun, 07 Oct 2007)
New Revision: 1954

Added:
   packages-wip/camping/trunk/debian/
   packages-wip/camping/trunk/debian/README.Debian
   packages-wip/camping/trunk/debian/changelog
   packages-wip/camping/trunk/debian/compat
   packages-wip/camping/trunk/debian/control
   packages-wip/camping/trunk/debian/control.in
   packages-wip/camping/trunk/debian/copyright
   packages-wip/camping/trunk/debian/examples
   packages-wip/camping/trunk/debian/manpages
   packages-wip/camping/trunk/debian/patches/
   packages-wip/camping/trunk/debian/patches/01_add-activesupport-loadpath.diff
   packages-wip/camping/trunk/debian/rules
   packages-wip/camping/trunk/debian/watch
Log:
[svn-inject] Applying Debian modifications to trunk


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

Added: packages-wip/camping/trunk/debian/README.Debian
===================================================================
--- packages-wip/camping/trunk/debian/README.Debian	                        (rev 0)
+++ packages-wip/camping/trunk/debian/README.Debian	2007-10-07 08:30:43 UTC (rev 1954)
@@ -0,0 +1,18 @@
+Camping for Debian
+------------------
+
+  Camping uses and thus depends on Active Support.  Since this is currently
+  contained in the Rails package, it is a dependency of this package. 
+  However, since the Rails package doesn't put the Active libraries in
+  Ruby's standard $LOAD_PATH locations, Camping will be unable to find it. 
+  I have patched the camping script itself to include the path to the
+  $LOAD_PATH, but, if you are writing a Camping dispatch-script or any
+  other scripts that directly taps into the Camping API, you have to add
+  this to the top of your script (i.e. before: require "camping"):
+
+    $LOAD_PATH.unshift "/usr/share/rails/activesupport/lib"
+
+  Hopefully, the Active libraries will be split of the Rails package soon
+  and this will no longer be necessary.
+
+ -- Paul van Tilburg <paulvt at debian.org>  Sun,  5 Nov 2006 10:48:15 +0100

Added: packages-wip/camping/trunk/debian/changelog
===================================================================
--- packages-wip/camping/trunk/debian/changelog	                        (rev 0)
+++ packages-wip/camping/trunk/debian/changelog	2007-10-07 08:30:43 UTC (rev 1954)
@@ -0,0 +1,21 @@
+camping (1.5+svn186-1) luon-sid; urgency=low
+
+  * Subversion snapshot that fixes several issues:
+    - When using X-Sendfile, a erroneous newline is no longer prepended
+      to the data.
+    - Small fastcgi fixes.
+    - Query string building added to R().
+  * Removed patch 02_webrick-typo since this has been fixed upstream.
+  * Changed both the build-depend and depend from ruby1.8 to ruby.
+
+ -- Paul van Tilburg <paulvt at debian.org>  Tue, 20 Mar 2007 19:53:55 +0100
+
+camping (1.5-1) luon-sid; urgency=low
+
+  * Initial release. (Closes: #396891)
+  * Added patch 01_add-activesupport-loadpath to help Camping find
+    the active support library directory which is not in a standard location.
+  * Added patch 02_webrick-typo to fix a typo made in the WEBrick code
+    which emerges when serving static files.
+
+ -- Paul van Tilburg <paulvt at debian.org>  Sat,  4 Nov 2006 22:08:29 +0100

Added: packages-wip/camping/trunk/debian/compat
===================================================================
--- packages-wip/camping/trunk/debian/compat	                        (rev 0)
+++ packages-wip/camping/trunk/debian/compat	2007-10-07 08:30:43 UTC (rev 1954)
@@ -0,0 +1 @@
+5

Added: packages-wip/camping/trunk/debian/control
===================================================================
--- packages-wip/camping/trunk/debian/control	                        (rev 0)
+++ packages-wip/camping/trunk/debian/control	2007-10-07 08:30:43 UTC (rev 1954)
@@ -0,0 +1,21 @@
+Source: camping
+Section: web
+Priority: optional
+Maintainer: Paul van Tilburg <paulvt at debian.org>
+Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>, Antonio S. de A. Terceiro <asaterceiro at inf.ufrgs.br>, David Moreno Garza <damog at debian.org>, David Nusinow <dnusinow at debian.org>, Esteban Manchado Velázquez <zoso at debian.org>, Arnaud Cornet <arnaud.cornet at gmail.com>, Lucas Nussbaum <lucas at lucas-nussbaum.net>, Thierry Reding <thierry at doppeltgemoppelt.de>, Marc Dequènes (Duck) <Duck at DuckCorp.org>, Ari Pollak <ari at debian.org>, Daigo Moriwaki <daigo at debian.org>, Vincent Fourmond <vincent.fourmond at 9online.fr>, Rudi Cilibrasi <cilibrar at cilibrar.com>, Patrick Ringl <patrick_ at freenet.de>, Filipe Lautert <filipelautert at celepar.pr.gov.br>, Florian Ragwitz <rafl at debian.org>, Gunnar Wolf <gwolf at debian.org>, Maxim Komar <komar at ukr.net>
+Build-Depends: cdbs, debhelper (>= 5), ruby-pkg-tools (>= 0.8), ruby
+Standards-Version: 3.7.2
+
+Package: camping
+Architecture: all
+Depends: ruby, rails, libmarkaby-ruby1.8
+Recommends: libsqlite3-ruby1.8
+Suggests: libfcgi-ruby1.8
+Description: a small Ruby web framework for Model-View-Controller type applications
+ Camping is a web framework which consistently stays at less than 4kb of
+ code.  The idea here is to store a complete fledgling web application
+ (written in Ruby) in a single file like many small CGIs, but to organize
+ it as a Model-View-Controller application like Rails does.  You can then
+ easily move it to Rails once you've got it going.
+ .
+ Homepage: http://code.whytheluckystiff.net/camping/

Added: packages-wip/camping/trunk/debian/control.in
===================================================================
--- packages-wip/camping/trunk/debian/control.in	                        (rev 0)
+++ packages-wip/camping/trunk/debian/control.in	2007-10-07 08:30:43 UTC (rev 1954)
@@ -0,0 +1,21 @@
+Source: camping
+Section: web
+Priority: optional
+Maintainer: Paul van Tilburg <paulvt at debian.org>
+Uploaders: @RUBY_EXTRAS_TEAM@
+Build-Depends: cdbs, debhelper (>= 5), ruby-pkg-tools (>= 0.8), ruby
+Standards-Version: 3.7.2
+
+Package: camping
+Architecture: all
+Depends: ruby, rails, libmarkaby-ruby1.8
+Recommends: libsqlite3-ruby1.8
+Suggests: libfcgi-ruby1.8
+Description: a small Ruby web framework for Model-View-Controller type applications
+ Camping is a web framework which consistently stays at less than 4kb of
+ code.  The idea here is to store a complete fledgling web application
+ (written in Ruby) in a single file like many small CGIs, but to organize
+ it as a Model-View-Controller application like Rails does.  You can then
+ easily move it to Rails once you've got it going.
+ .
+ Homepage: http://code.whytheluckystiff.net/camping/

Added: packages-wip/camping/trunk/debian/copyright
===================================================================
--- packages-wip/camping/trunk/debian/copyright	                        (rev 0)
+++ packages-wip/camping/trunk/debian/copyright	2007-10-07 08:30:43 UTC (rev 1954)
@@ -0,0 +1,30 @@
+This package was debianized by Paul van Tilburg <paulvt at debian.org> on
+Fri,  4 Nov 2006 21:34:39 +0100.
+
+It was downloaded from: http://rubyforge.org/frs/?group_id=1273
+
+Copyright: (c) 2006 Why the lucky stiff <why at whytheluckystiff.net>
+
+License:
+
+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.
+
+--------
+The setup.rb file included in the package's source is released under the GNU
+LGPL. On Debian systems, the complete text of the GNU Lesser General Public
+can be found in `/usr/share/common-licenses/LGPL'.

Added: packages-wip/camping/trunk/debian/examples
===================================================================
--- packages-wip/camping/trunk/debian/examples	                        (rev 0)
+++ packages-wip/camping/trunk/debian/examples	2007-10-07 08:30:43 UTC (rev 1954)
@@ -0,0 +1 @@
+examples/*

Added: packages-wip/camping/trunk/debian/manpages
===================================================================
--- packages-wip/camping/trunk/debian/manpages	                        (rev 0)
+++ packages-wip/camping/trunk/debian/manpages	2007-10-07 08:30:43 UTC (rev 1954)
@@ -0,0 +1 @@
+doc/camping.1.gz

Added: packages-wip/camping/trunk/debian/patches/01_add-activesupport-loadpath.diff
===================================================================
--- packages-wip/camping/trunk/debian/patches/01_add-activesupport-loadpath.diff	                        (rev 0)
+++ packages-wip/camping/trunk/debian/patches/01_add-activesupport-loadpath.diff	2007-10-07 08:30:43 UTC (rev 1954)
@@ -0,0 +1,12 @@
+--- bin/camping.orig	2006-11-04 22:06:36.000000000 +0100
++++ bin/camping	2006-11-04 22:07:33.000000000 +0100
+@@ -1,5 +1,9 @@
+ #! /usr/bin/ruby1.8
+ 
++# Add active_support path in Rails package since this is not in a 
++# standard location.
++$LOAD_PATH.unshift "/usr/share/rails/activesupport/lib"
++
+ require 'delegate'
+ require 'optparse'
+ require 'ostruct'

Added: packages-wip/camping/trunk/debian/rules
===================================================================
--- packages-wip/camping/trunk/debian/rules	                        (rev 0)
+++ packages-wip/camping/trunk/debian/rules	2007-10-07 08:30:43 UTC (rev 1954)
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+#
+# CDBS file to build the Camping package.
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+include /usr/share/ruby-pkg-tools/1/class/ruby-setup-rb.mk
+include /usr/share/ruby-pkg-tools/1/rules/uploaders.mk


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

Added: packages-wip/camping/trunk/debian/watch
===================================================================
--- packages-wip/camping/trunk/debian/watch	                        (rev 0)
+++ packages-wip/camping/trunk/debian/watch	2007-10-07 08:30:43 UTC (rev 1954)
@@ -0,0 +1,3 @@
+version=3
+
+http://rubyforge.org/frs/?group_id=7203 .*camping-(.*)\.t.*




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