[DRE-commits] r3767 - in packages/libhaml-ruby/trunk/debian: . patches

Gunnar Wolf gwolf at alioth.debian.org
Mon Jul 6 22:02:51 UTC 2009


Author: gwolf
Date: 2009-07-06 22:02:50 +0000 (Mon, 06 Jul 2009)
New Revision: 3767

Modified:
   packages/libhaml-ruby/trunk/debian/changelog
   packages/libhaml-ruby/trunk/debian/control
   packages/libhaml-ruby/trunk/debian/patches/fix-hardcoded-gem-paths
   packages/libhaml-ruby/trunk/debian/patches/get-version-from-right-path
Log:
New upstream version

Modified: packages/libhaml-ruby/trunk/debian/changelog
===================================================================
--- packages/libhaml-ruby/trunk/debian/changelog	2009-07-05 22:35:41 UTC (rev 3766)
+++ packages/libhaml-ruby/trunk/debian/changelog	2009-07-06 22:02:50 UTC (rev 3767)
@@ -1,13 +1,15 @@
-libhaml-ruby (2.0.9-2) UNRELEASED; urgency=low
+libhaml-ruby (2.2.0-1) unstable; urgency=low
 
+  [ Ryan Niebur ]
+  * fix watch file
+
   [ Gunnar Wolf ]
   * Changed section to Ruby as per ftp-masters' request
+  * New upstream release
+  * Updated standards-version 3.8.0→3.8.2 (no changes needed)
 
-  [ Ryan Niebur ]
-  * fix watch file
+ -- Gunnar Wolf <gwolf at debian.org>  Mon, 06 Jul 2009 17:02:01 -0500
 
- -- Gunnar Wolf <gwolf at debian.org>  Tue, 21 Apr 2009 15:54:11 -0500
-
 libhaml-ruby (2.0.9-1) unstable; urgency=low
 
   * New upstream release

Modified: packages/libhaml-ruby/trunk/debian/control
===================================================================
--- packages/libhaml-ruby/trunk/debian/control	2009-07-05 22:35:41 UTC (rev 3766)
+++ packages/libhaml-ruby/trunk/debian/control	2009-07-06 22:02:50 UTC (rev 3767)
@@ -5,7 +5,7 @@
 Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
 Build-Depends: ruby-pkg-tools (>= 0.8), cdbs, debhelper (>= 7), libsetup-ruby1.8, graphviz, quilt
 Build-Depends-Indep: ruby1.8, rdoc
-Standards-Version: 3.8.0
+Standards-Version: 3.8.2
 Homepage: http://haml.hamptoncatlin.com/
 Vcs-Svn: svn://svn.debian.org/pkg-ruby-extras/libhaml-ruby/trunk/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-ruby-extras/libhaml-ruby/trunk/

Modified: packages/libhaml-ruby/trunk/debian/patches/fix-hardcoded-gem-paths
===================================================================
--- packages/libhaml-ruby/trunk/debian/patches/fix-hardcoded-gem-paths	2009-07-05 22:35:41 UTC (rev 3766)
+++ packages/libhaml-ruby/trunk/debian/patches/fix-hardcoded-gem-paths	2009-07-06 22:02:50 UTC (rev 3767)
@@ -3,10 +3,10 @@
 #
 # Besides this, this patch also collects the changes auto-made by
 # setup.rb to the actual interpreter (/usr/bin/ruby1.8)
-Index: libhaml-ruby-2.0.6/bin/css2sass
+Index: libhaml-ruby-2.2.0/bin/css2sass
 ===================================================================
---- libhaml-ruby-2.0.6.orig/bin/css2sass	2008-12-17 05:14:51.000000000 -0600
-+++ libhaml-ruby-2.0.6/bin/css2sass	2008-12-18 19:41:21.000000000 -0600
+--- libhaml-ruby-2.2.0.orig/bin/css2sass	2009-07-06 16:54:29.000000000 -0500
++++ libhaml-ruby-2.2.0/bin/css2sass	2009-07-06 16:55:18.000000000 -0500
 @@ -1,6 +1,6 @@
 -#!/usr/bin/env ruby
 +#! /usr/bin/ruby1.8
@@ -16,10 +16,10 @@
  require 'haml/exec'
  
  opts = Haml::Exec::CSS2Sass.new(ARGV)
-Index: libhaml-ruby-2.0.6/bin/haml
+Index: libhaml-ruby-2.2.0/bin/haml
 ===================================================================
---- libhaml-ruby-2.0.6.orig/bin/haml	2008-12-17 05:14:51.000000000 -0600
-+++ libhaml-ruby-2.0.6/bin/haml	2008-12-18 19:41:21.000000000 -0600
+--- libhaml-ruby-2.2.0.orig/bin/haml	2009-07-06 16:54:28.000000000 -0500
++++ libhaml-ruby-2.2.0/bin/haml	2009-07-06 16:55:18.000000000 -0500
 @@ -1,7 +1,6 @@
 -#!/usr/bin/env ruby
 +#! /usr/bin/ruby1.8
@@ -29,10 +29,10 @@
  require 'haml'
  require 'haml/exec'
  
-Index: libhaml-ruby-2.0.6/bin/html2haml
+Index: libhaml-ruby-2.2.0/bin/html2haml
 ===================================================================
---- libhaml-ruby-2.0.6.orig/bin/html2haml	2008-12-17 05:14:51.000000000 -0600
-+++ libhaml-ruby-2.0.6/bin/html2haml	2008-12-18 19:41:21.000000000 -0600
+--- libhaml-ruby-2.2.0.orig/bin/html2haml	2009-07-06 16:54:29.000000000 -0500
++++ libhaml-ruby-2.2.0/bin/html2haml	2009-07-06 16:55:18.000000000 -0500
 @@ -1,6 +1,6 @@
 -#!/usr/bin/env ruby
 +#! /usr/bin/ruby1.8
@@ -42,10 +42,10 @@
  require 'haml/exec'
  
  opts = Haml::Exec::HTML2Haml.new(ARGV)
-Index: libhaml-ruby-2.0.6/bin/sass
+Index: libhaml-ruby-2.2.0/bin/sass
 ===================================================================
---- libhaml-ruby-2.0.6.orig/bin/sass	2008-12-17 05:14:51.000000000 -0600
-+++ libhaml-ruby-2.0.6/bin/sass	2008-12-18 19:41:21.000000000 -0600
+--- libhaml-ruby-2.2.0.orig/bin/sass	2009-07-06 16:54:28.000000000 -0500
++++ libhaml-ruby-2.2.0/bin/sass	2009-07-06 16:55:18.000000000 -0500
 @@ -1,7 +1,7 @@
 -#!/usr/bin/env ruby
 +#! /usr/bin/ruby1.8

Modified: packages/libhaml-ruby/trunk/debian/patches/get-version-from-right-path
===================================================================
--- packages/libhaml-ruby/trunk/debian/patches/get-version-from-right-path	2009-07-05 22:35:41 UTC (rev 3766)
+++ packages/libhaml-ruby/trunk/debian/patches/get-version-from-right-path	2009-07-06 22:02:50 UTC (rev 3767)
@@ -1,16 +1,18 @@
 # Upstream has defined that, at initialization, the version number should
 # be retrieved from the path this would be installed... Were it to be installed
 # as a Gem :-/ Fix that... In a somewhat dirty way, but still.
-Index: libhaml-ruby-2.0.8/lib/haml/version.rb
+Index: libhaml-ruby-2.2.0/lib/haml/version.rb
 ===================================================================
---- libhaml-ruby-2.0.8.orig/lib/haml/version.rb	2009-02-13 18:59:37.000000000 -0600
-+++ libhaml-ruby-2.0.8/lib/haml/version.rb	2009-02-13 19:00:18.000000000 -0600
-@@ -8,7 +8,7 @@
+--- libhaml-ruby-2.2.0.orig/lib/haml/version.rb	2009-07-06 16:56:34.000000000 -0500
++++ libhaml-ruby-2.2.0/lib/haml/version.rb	2009-07-06 16:56:57.000000000 -0500
+@@ -27,8 +27,8 @@
      def version
        return @@version if defined?(@@version)
  
 -      numbers = File.read(scope('VERSION')).strip.split('.').map { |n| n.to_i }
+-      name = File.read(scope('VERSION_NAME')).strip
 +      numbers = File.read('/usr/lib/ruby/1.8/haml/VERSION').strip.split('.').map { |n| n.to_i }
++      name = File.read('/usr/lib/ruby/1.8/haml/VERSION_NAME').strip
        @@version = {
          :major => numbers[0],
          :minor => numbers[1],




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