[DRE-commits] [SCM] gem2deb.git branch, master, updated. 0.2.7-15-g0f4aa06

Antonio Terceiro terceiro at softwarelivre.org
Sun Sep 11 20:38:27 UTC 2011


The following commit has been merged in the master branch:
commit 1ddc2e2e88db5054dab5e1633316fd09fe3ec462
Author: Antonio Terceiro <terceiro at softwarelivre.org>
Date:   Sun Sep 11 13:29:47 2011 -0700

    Prepare 0.2.8 release

diff --git a/Rakefile b/Rakefile
index 739b49e..6108347 100644
--- a/Rakefile
+++ b/Rakefile
@@ -46,7 +46,7 @@ end
 
 desc "Checks for inconsistencies between version numbers in the code and in debian/changelog"
 task :version_check do
-  code_version = `ruby -Ilib -rgem2deb -e 'puts Gem2Deb::VERSION'`.strip
+  code_version = `ruby -Ilib -rgem2deb/version -e 'puts Gem2Deb::VERSION'`.strip
   debian_version = `dpkg-parsechangelog | grep '^Version: ' | cut -d ' ' -f 2`.strip
   if code_version != debian_version
     msg ="W: Inconsistent version numbers: lib/gem2deb.rb says #{code_version}, debian/changelog says #{debian_version}"
diff --git a/debian/changelog b/debian/changelog
index dc70ef1..a45356d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,19 @@
+gem2deb (0.2.8) unstable; urgency=low
+
+  * Generate a non-lintian-clean copyright file
+  * Fix --only-tarball option
+  * Fix typo in integration test
+  * Keep upstream names that are not valid Debian package names
+  * Make tests more portable
+  * Rename test_helper samples file
+  * Make tests pass under Ruby 1.9 as well
+  * Run tests under 1.8 and 1.9 during build
+  * Make sure that programs without shebangs get one
+  * Keep correct permission bits on rewritten programs
+  * Rewrite shebangs before running tests
+
+ -- Antonio Terceiro <terceiro at debian.org>  Sun, 11 Sep 2011 13:29:03 -0700
+
 gem2deb (0.2.7) unstable; urgency=low
 
   * Fix .so/.rb name clash resolution for the case of multiple binary
diff --git a/lib/gem2deb.rb b/lib/gem2deb.rb
index 0d8ebc0..82797df 100644
--- a/lib/gem2deb.rb
+++ b/lib/gem2deb.rb
@@ -15,8 +15,6 @@
 
 module Gem2Deb
 
-  VERSION = '0.2.7'
-
   class CommandFailed < Exception
   end
 
@@ -28,3 +26,5 @@ module Gem2Deb
     end
   end
 end
+
+require 'gem2deb/version'
diff --git a/lib/gem2deb/version.rb b/lib/gem2deb/version.rb
new file mode 100644
index 0000000..ce4f03a
--- /dev/null
+++ b/lib/gem2deb/version.rb
@@ -0,0 +1,3 @@
+module Gem2Deb
+  VERSION = '0.2.8'
+end

-- 
gem2deb.git



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