[DRE-commits] [ruby-backports] 02/02: Update changelog for 3.6.8-1 release

zeha at debian.org zeha at debian.org
Thu May 5 22:54:04 UTC 2016


This is an automated email from the git hooks/post-receive script.

zeha pushed a commit to branch master
in repository ruby-backports.

commit 48ed064fb586c07b53595c44db9fea90b279b6f4
Author: Christian Hofstaedtler <zeha at debian.org>
Date:   Thu May 5 22:46:59 2016 +0000

    Update changelog for 3.6.8-1 release
    
    And drop upstream applied patch, refresh gemspec.
---
 debian/backports.gemspec                        |  8 +++---
 debian/changelog                                | 15 +++++++++++
 debian/patches/fix-collision-with-hash-function | 36 -------------------------
 debian/patches/series                           |  1 -
 4 files changed, 19 insertions(+), 41 deletions(-)

diff --git a/debian/backports.gemspec b/debian/backports.gemspec
index 02e0d18..6be84f8 100644
--- a/debian/backports.gemspec
+++ b/debian/backports.gemspec
@@ -1,20 +1,20 @@
 # -*- encoding: utf-8 -*-
-# stub: backports 3.6.6 ruby lib
+# stub: backports 3.6.8 ruby lib
 
 Gem::Specification.new do |s|
   s.name = "backports"
-  s.version = "3.6.6"
+  s.version = "3.6.8"
 
   s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
   s.require_paths = ["lib"]
   s.authors = ["Marc-Andr\u{e9} Lafortune"]
-  s.date = "2015-09-09"
+  s.date = "2016-05-05"
   s.description = "Essential backports that enable many of the nice features of Ruby 1.8.7 up to 2.1.0 for earlier versions."
   s.email = ["github at marc-andre.ca"]
   s.files = [".document", ".gitignore", ".gitmodules", ".irbrc", ".travis.yml", "CHANGELOG.rdoc", "Gemfile", "Gemfile.lock", "LICENSE.txt", "README.rdoc", "Rakefile", "backports.gemspec", "default.mspec", "lib/backports.rb", "lib/backports/1.8.7.rb", "lib/backports/1.8.7/argf.rb", "lib/backports/1.8.7/argf/bytes.rb", "lib/backports/1.8.7/argf/chars.rb", "lib/backports/1.8.7/argf/each.rb", "lib/backports/1.8.7/argf/each_byte.rb", "lib/backports/1.8.7/argf/each_char.rb", "lib/backports/1.8 [...]
   s.homepage = "http://github.com/marcandre/backports"
   s.licenses = ["MIT"]
-  s.rubygems_version = "2.2.2"
+  s.rubygems_version = "2.5.1"
   s.summary = "Backports of Ruby features for older Ruby."
   s.test_files = ["spec/tags/1.8.6/core/argf/each_line_spec.rb", "spec/tags/1.8.6/core/argf/each_spec.rb", "spec/tags/1.8.6/core/argf/lines_spec.rb", "spec/tags/1.8.6/core/array/collect_spec.rb", "spec/tags/1.8.6/core/array/rotate_spec.rb", "spec/tags/1.8.6/core/array/uniq_spec.rb", "spec/tags/1.8.6/core/complex/to_r_spec.rb", "spec/tags/1.8.6/core/enumerable/each_entry_spec.rb", "spec/tags/1.8.6/core/enumerator/next_spec.rb", "spec/tags/1.8.6/core/env/to_h_spec.rb", "spec/tags/1.8.6/cor [...]
 end
diff --git a/debian/changelog b/debian/changelog
index 992598a..f3d96ca 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,18 @@
+ruby-backports (3.6.8-1) unstable; urgency=medium
+
+  * Team upload.
+
+  [ Cédric Boutillier ]
+  * Remove version in the gem2deb build-dependency
+  * Use https:// in Vcs-* fields
+  * Bump Standards-Version to 3.9.7 (no changes needed)
+  * Run wrap-and-sort on packaging files
+
+  [ Christian Hofstaedtler ]
+  * New upstream version, drop upstream applied patch.
+
+ -- Christian Hofstaedtler <zeha at debian.org>  Thu, 05 May 2016 22:46:47 +0000
+
 ruby-backports (3.6.6-1) unstable; urgency=low
 
   * New upstream version.
diff --git a/debian/patches/fix-collision-with-hash-function b/debian/patches/fix-collision-with-hash-function
deleted file mode 100644
index 1afa970..0000000
--- a/debian/patches/fix-collision-with-hash-function
+++ /dev/null
@@ -1,36 +0,0 @@
-Description: Fix hash function collision 
- It seems that the hash function defined in the tests sources, collides with
- the hash function provided by the library.
-
-Bug-Debian: http://bugs.debian.org/720249
-Author: David Suárez <david.sephirot at gmail.com>
-Last-Update: 2013-12-04
-
---- ruby-backports-3.3.5.orig/test/_backport_guards_test.rb
-+++ ruby-backports-3.3.5/test/_backport_guards_test.rb
-@@ -35,14 +35,14 @@ class AAA_TestBackportGuards < Test::Uni
-   EXCLUDE.map!(&:to_sym) if instance_methods.first.is_a?(Symbol)
- 
-   # For some very strange reason, Hash[kvp.flatten] doesn't always work in 1.8.6??
--  def hash(key_value_pairs)
-+  def own_hash(key_value_pairs)
-     h = {}
-     key_value_pairs.each{|k,v| h[k] = v}
-     h
-   end
- 
-   def class_signature(klass)
--    hash(
-+    own_hash(
-       (klass.instance_methods - EXCLUDE).map{|m| [m, klass.instance_method(m)] } +
-       (klass.methods - EXCLUDE).map{|m| [".#{m}", klass.method(m) ]}
-     )
-@@ -62,7 +62,7 @@ class AAA_TestBackportGuards < Test::Uni
-   end
- 
-   def digest
--    hash(
-+    own_hash(
-       CLASSES.map { |klass| [klass, class_signature(klass)] }
-     )
-   end
diff --git a/debian/patches/series b/debian/patches/series
index eab0d5a..7b9a43c 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
-fix-collision-with-hash-function
 use-system-library-paths-when-running-under-autopkgtest

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-backports.git



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