[DRE-commits] r3923 - in trunk/libinline-ruby/debian: . patches

Gunnar Wolf gwolf at alioth.debian.org
Wed Aug 12 21:45:25 UTC 2009


Author: gwolf
Date: 2009-08-12 21:45:25 +0000 (Wed, 12 Aug 2009)
New Revision: 3923

Added:
   trunk/libinline-ruby/debian/patches/00-fix-shebang.patch
   trunk/libinline-ruby/debian/patches/series
Modified:
   trunk/libinline-ruby/debian/changelog
   trunk/libinline-ruby/debian/control
Log:
Preparing new upstream version; various fixes

Modified: trunk/libinline-ruby/debian/changelog
===================================================================
--- trunk/libinline-ruby/debian/changelog	2009-08-11 15:20:22 UTC (rev 3922)
+++ trunk/libinline-ruby/debian/changelog	2009-08-12 21:45:25 UTC (rev 3923)
@@ -1,17 +1,22 @@
-libinline-ruby (3.8.1-1) UNRELEASED; urgency=low
+libinline-ruby (3.8.3-1) unstable; urgency=low
 
-  [ Gunnar Wolf ]
-  * Changed section to Ruby as per ftp-masters' request
-
   [ Paul van Tilburg ]
-  * New upstream release.
   * debian/control:
     - Bumped standards version to 3.8.1; no changes required.
   * debian/patches:
     - Dropped 00-fix-shebang: upstream removed the binary in question. 
 
- -- Paul van Tilburg <paulvt at debian.org>  Tue, 05 May 2009 12:42:12 +0200
+  [ Gunnar Wolf ]
+  * New upstream release.
+  * Changed section to Ruby as per ftp-masters' request
+  * Added myself as an uploader
+  * Standards-version → 3.8.2 (no changes needed)
+  * Added #{misc:Depends} to the binary packages
+  * Resurrected 00-fix-shebang.patch, as several files still point to
+    /usr/local/bin/ruby (even to ruby17!)
 
+ -- Gunnar Wolf <gwolf at debian.org>  Wed, 12 Aug 2009 16:43:43 -0500
+
 libinline-ruby (3.6.7-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libinline-ruby/debian/control
===================================================================
--- trunk/libinline-ruby/debian/control	2009-08-11 15:20:22 UTC (rev 3922)
+++ trunk/libinline-ruby/debian/control	2009-08-12 21:45:25 UTC (rev 3923)
@@ -2,17 +2,17 @@
 Section: ruby
 Priority: optional
 Maintainer: Patrick Ringl <patrick_ at freenet.de>
-Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>, Paul van Tilburg <paulvt at debian.org>
-Build-Depends: cdbs, debhelper (>= 5.0.0)
+Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>, Paul van Tilburg <paulvt at debian.org>, Gunnar Wolf <gwolf at debian.org>
+Build-Depends: cdbs, debhelper (>= 5.0.0), quilt
 Build-Depends-Indep: ruby-pkg-tools (>= 0.8), ruby1.8, ruby1.8-dev
-Standards-Version: 3.8.1
+Standards-Version: 3.8.2
 Homepage: http://rubyforge.org/projects/rubyinline/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-ruby-extras/trunk/libinline-ruby/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-ruby-extras/trunk/libinline-ruby/
 
 Package: libinline-ruby
 Architecture: all
-Depends: libinline-ruby1.8
+Depends: ${misc:Depends}, libinline-ruby1.8
 Description: Ruby library for embedding C/++ external module code
  Ruby Inline is an analog to Perl's Inline::C. Out of the box,
  it allows you to embed C/++ external module code in your ruby script
@@ -24,7 +24,7 @@
 
 Package: libinline-ruby1.8
 Architecture: all
-Depends: ruby1.8, ruby1.8-dev
+Depends: ${misc:Depends}, ruby1.8, ruby1.8-dev
 Description: Ruby library for embedding C/++ external module code
  Ruby Inline is an analog to Perl's Inline::C. Out of the box,
  it allows you to embed C/++ external module code in your ruby script

Added: trunk/libinline-ruby/debian/patches/00-fix-shebang.patch
===================================================================
--- trunk/libinline-ruby/debian/patches/00-fix-shebang.patch	                        (rev 0)
+++ trunk/libinline-ruby/debian/patches/00-fix-shebang.patch	2009-08-12 21:45:25 UTC (rev 3923)
@@ -0,0 +1,40 @@
+Index: libinline-ruby-3.8.3/demo/hello.rb
+===================================================================
+--- libinline-ruby-3.8.3.orig/demo/hello.rb	2009-08-12 16:37:07.000000000 -0500
++++ libinline-ruby-3.8.3/demo/hello.rb	2009-08-12 16:39:45.000000000 -0500
+@@ -1,4 +1,4 @@
+-#!/usr/local/bin/ruby -w
++#!/usr/bin/env ruby
+ 
+ begin require 'rubygems' rescue LoadError end
+ require 'inline'
+Index: libinline-ruby-3.8.3/example.rb
+===================================================================
+--- libinline-ruby-3.8.3.orig/example.rb	2009-08-12 16:37:07.000000000 -0500
++++ libinline-ruby-3.8.3/example.rb	2009-08-12 16:39:50.000000000 -0500
+@@ -1,4 +1,4 @@
+-#!/usr/local/bin/ruby -w
++#!/usr/bin/env ruby
+ 
+ begin
+   require 'rubygems'
+Index: libinline-ruby-3.8.3/example2.rb
+===================================================================
+--- libinline-ruby-3.8.3.orig/example2.rb	2009-08-12 16:37:07.000000000 -0500
++++ libinline-ruby-3.8.3/example2.rb	2009-08-12 16:39:43.000000000 -0500
+@@ -1,4 +1,4 @@
+-#!/usr/local/bin/ruby17 -w
++#!/usr/bin/env ruby
+ 
+ begin
+   require 'rubygems'
+Index: libinline-ruby-3.8.3/lib/inline.rb
+===================================================================
+--- libinline-ruby-3.8.3.orig/lib/inline.rb	2009-08-12 16:37:07.000000000 -0500
++++ libinline-ruby-3.8.3/lib/inline.rb	2009-08-12 16:39:48.000000000 -0500
+@@ -1,4 +1,4 @@
+-#!/usr/local/bin/ruby -w
++#!/usr/bin/env ruby
+ 
+ ##
+ # Ruby Inline is a framework for writing ruby extensions in foreign

Added: trunk/libinline-ruby/debian/patches/series
===================================================================
--- trunk/libinline-ruby/debian/patches/series	                        (rev 0)
+++ trunk/libinline-ruby/debian/patches/series	2009-08-12 21:45:25 UTC (rev 3923)
@@ -0,0 +1 @@
+00-fix-shebang.patch




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