[DRE-commits] r4445 - in trunk/librestclient-ruby: . bin debian

Lucas Nussbaum lucas at alioth.debian.org
Sat Dec 12 16:52:24 UTC 2009


Author: lucas
Date: 2009-12-12 16:52:23 +0000 (Sat, 12 Dec 2009)
New Revision: 4445

Added:
   trunk/librestclient-ruby/debian/
   trunk/librestclient-ruby/debian/changelog
   trunk/librestclient-ruby/debian/compat
   trunk/librestclient-ruby/debian/control
   trunk/librestclient-ruby/debian/copyright
   trunk/librestclient-ruby/debian/rules
   trunk/librestclient-ruby/debian/watch
Modified:
   trunk/librestclient-ruby/bin/restclient
Log:
[svn-inject] Applying Debian modifications to trunk

Modified: trunk/librestclient-ruby/bin/restclient
===================================================================
--- trunk/librestclient-ruby/bin/restclient	2009-12-12 16:52:19 UTC (rev 4444)
+++ trunk/librestclient-ruby/bin/restclient	2009-12-12 16:52:23 UTC (rev 4445)
@@ -1,4 +1,4 @@
-#!/usr/bin/env ruby
+#! /usr/bin/ruby1.8
 
 $:.unshift File.dirname(__FILE__) + "/../lib"
 require 'restclient'

Added: trunk/librestclient-ruby/debian/changelog
===================================================================
--- trunk/librestclient-ruby/debian/changelog	                        (rev 0)
+++ trunk/librestclient-ruby/debian/changelog	2009-12-12 16:52:23 UTC (rev 4445)
@@ -0,0 +1,5 @@
+librestclient-ruby (1.1.5-1) unstable; urgency=low
+
+  * Initial upload.
+
+ -- Lucas Nussbaum <lucas at lucas-nussbaum.net>  Sat, 12 Dec 2009 15:53:18 +0100

Added: trunk/librestclient-ruby/debian/compat
===================================================================
--- trunk/librestclient-ruby/debian/compat	                        (rev 0)
+++ trunk/librestclient-ruby/debian/compat	2009-12-12 16:52:23 UTC (rev 4445)
@@ -0,0 +1 @@
+7

Added: trunk/librestclient-ruby/debian/control
===================================================================
--- trunk/librestclient-ruby/debian/control	                        (rev 0)
+++ trunk/librestclient-ruby/debian/control	2009-12-12 16:52:23 UTC (rev 4445)
@@ -0,0 +1,26 @@
+Source: librestclient-ruby
+Section: ruby
+Priority: extra
+Maintainer: Lucas Nussbaum <lucas at lucas-nussbaum.net>
+Standards-Version: 3.8.3
+Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Build-Depends: cdbs, debhelper (>= 7), ruby-pkg-tools, libsetup-ruby1.8
+Build-Depends-Indep: ruby1.8
+Vcs-Svn: svn://svn.debian.org/svn/pkg-ruby-extras/trunk/librestclient-ruby/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-ruby-extras/trunk/librestclient-ruby/
+Homepage: http://rest-client.heroku.com/rdoc/
+
+Package: librestclient-ruby1.8
+Architecture: all
+Depends: ${misc:Depends}, ruby1.8, irb1.8
+Description: simple REST client for Ruby
+ This library provides a simple way to access RESTful web services in Ruby.
+
+Package: librestclient-ruby
+Architecture: all
+Depends: ${misc:Depends}, librestclient-ruby1.8
+Description: simple REST client for Ruby
+ This library provides a simple way to access RESTful web services in Ruby.
+ .
+ This is a dummy package depending on the library for the current default
+ version of Ruby.

Added: trunk/librestclient-ruby/debian/copyright
===================================================================
--- trunk/librestclient-ruby/debian/copyright	                        (rev 0)
+++ trunk/librestclient-ruby/debian/copyright	2009-12-12 16:52:23 UTC (rev 4445)
@@ -0,0 +1,40 @@
+Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=420
+Upstream-Name: Rest-Client
+Upstream-Maintainer: Adam Wiggins <adam at heroku.com>
+Upstream-Source: http://github.com/adamwiggins/rest-client
+
+Files: *
+License: (from README.rdoc)
+Written by Adam Wiggins (adam at heroku dot com)
+Major modifications by Blake Mizerany
+Patches contributed by: Chris Anderson, Greg Borenstein, Ardekantur, Pedro Belo, Rafael Souza, Rick Olson, and Aman Gupta
+Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
+
+Local copy of http://www.opensource.org/licenses/mit-license.php:
+  The MIT License
+  
+  Copyright (c) <year> <copyright holders>
+  
+  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.
+
+Files: debian/*
+Copyright: Copyright (c) 2009, Lucas Nussbaum <lucas at lucas-nussbaum.net>
+License: GPL-2
+ On Debian systems, the complete text of the GNU General Public
+ License can be found in /usr/share/common-licenses/GPL file.

Added: trunk/librestclient-ruby/debian/rules
===================================================================
--- trunk/librestclient-ruby/debian/rules	                        (rev 0)
+++ trunk/librestclient-ruby/debian/rules	2009-12-12 16:52:23 UTC (rev 4445)
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/ruby-pkg-tools/1/class/ruby-setup-rb.mk
+


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

Added: trunk/librestclient-ruby/debian/watch
===================================================================
--- trunk/librestclient-ruby/debian/watch	                        (rev 0)
+++ trunk/librestclient-ruby/debian/watch	2009-12-12 16:52:23 UTC (rev 4445)
@@ -0,0 +1,2 @@
+version=3
+http://githubredir.debian.net/github/adamwiggins/rest-client/ v(.*).tar.gz




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