New Upstream Snapshot - ruby-em-redis

Ready changes

Summary

Merged new upstream version: 0.3.0+gh+git20170912.1.0525c42 (was: 0.3.0+gh).

Resulting package

Built on 2023-01-20T05:24 (took 4m40s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots ruby-em-redis

Lintian Result

Diff

diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 29ca08b..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-.DS_Store
-pkg
diff --git a/debian/changelog b/debian/changelog
index 555d261..0cf5d9f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,11 @@
-ruby-em-redis (0.3.0+gh-4) UNRELEASED; urgency=medium
+ruby-em-redis (0.3.0+gh+git20170912.1.0525c42-1) UNRELEASED; urgency=medium
 
   * Set upstream metadata fields: Bug-Database, Bug-Submit.
   * Set upstream metadata fields: Repository-Browse.
   * Update standards version to 4.6.1, no changes needed.
+  * New upstream snapshot.
 
- -- Debian Janitor <janitor@jelmer.uk>  Tue, 22 Jun 2021 17:32:49 -0000
+ -- Debian Janitor <janitor@jelmer.uk>  Fri, 20 Jan 2023 05:21:44 -0000
 
 ruby-em-redis (0.3.0+gh-3) unstable; urgency=medium
 
diff --git a/debian/patches/disable_test_random_order.patch b/debian/patches/disable_test_random_order.patch
index 96924f8..a6bd910 100644
--- a/debian/patches/disable_test_random_order.patch
+++ b/debian/patches/disable_test_random_order.patch
@@ -3,9 +3,11 @@ Author: Cédric Boutillier <boutil@debian.org>
 Bug: https://github.com/madsimian/em-redis/issues/9 
 Last-Update: 2014-09-30
 
---- a/spec/redis_commands_spec.rb
-+++ b/spec/redis_commands_spec.rb
-@@ -752,7 +752,7 @@
+Index: ruby-em-redis.git/spec/redis_commands_spec.rb
+===================================================================
+--- ruby-em-redis.git.orig/spec/redis_commands_spec.rb
++++ ruby-em-redis.git/spec/redis_commands_spec.rb
+@@ -752,7 +752,7 @@ EM.describe EM::Protocols::Redis, "with
      @r.smembers "user:one:interests"
      @r.smembers "user:two:interests"
      @r.exec do |user_interests|
diff --git a/debian/patches/no_rubygems.patch b/debian/patches/no_rubygems.patch
index 87c4cf8..cee0eea 100644
--- a/debian/patches/no_rubygems.patch
+++ b/debian/patches/no_rubygems.patch
@@ -2,8 +2,10 @@ Description: do not require rubygems
 Author: Cédric Boutillier <boutil@debian.org>
 Last-Update: 2014-04-23
 
---- a/lib/em-redis/redis_protocol.rb
-+++ b/lib/em-redis/redis_protocol.rb
+Index: ruby-em-redis.git/lib/em-redis/redis_protocol.rb
+===================================================================
+--- ruby-em-redis.git.orig/lib/em-redis/redis_protocol.rb
++++ ruby-em-redis.git/lib/em-redis/redis_protocol.rb
 @@ -1,4 +1,3 @@
 -require 'rubygems'
  require 'eventmachine'
diff --git a/debian/patches/port_to_newer_redis.patch b/debian/patches/port_to_newer_redis.patch
index 08bbea6..7269da2 100644
--- a/debian/patches/port_to_newer_redis.patch
+++ b/debian/patches/port_to_newer_redis.patch
@@ -7,9 +7,11 @@ Author: Cédric Boutillier <boutil@debian.org>
 Forwared: https://github.com/madsimian/em-redis/pull/8
 Last-Update: 2014-04-23
 
---- a/spec/redis_commands_spec.rb
-+++ b/spec/redis_commands_spec.rb
-@@ -563,7 +563,7 @@
+Index: ruby-em-redis.git/spec/redis_commands_spec.rb
+===================================================================
+--- ruby-em-redis.git.orig/spec/redis_commands_spec.rb
++++ ruby-em-redis.git/spec/redis_commands_spec.rb
+@@ -563,7 +563,7 @@ EM.describe EM::Protocols::Redis do
    #
    it "should provide info (INFO)" do
      @r.info do |r|
@@ -18,7 +20,7 @@ Last-Update: 2014-04-23
          r.keys.include?(x).should == true
        end
        done
-@@ -759,4 +759,4 @@
+@@ -759,4 +759,4 @@ EM.describe EM::Protocols::Redis, "with
        done
      end
    end
diff --git a/lib/em-redis/redis_protocol.rb b/lib/em-redis/redis_protocol.rb
index b2d97e8..6f8791a 100644
--- a/lib/em-redis/redis_protocol.rb
+++ b/lib/em-redis/redis_protocol.rb
@@ -51,7 +51,7 @@ module EventMachine
             info[k.to_sym] = v
           }
           info
-        }, 
+        },
         "hgetall"   => lambda{|r|
           Hash[*r]
         }
@@ -119,7 +119,6 @@ module EventMachine
         "list_remove"          => "lrem",
         "index"                => "lindex",
         "trim"                 => "ltrim",
-        "list_range"           => "lrange",
         "range"                => "lrange",
         "list_len"             => "llen",
         "len"                  => "llen",
@@ -133,7 +132,6 @@ module EventMachine
         "member?"              => "sismember",
         "intersect"            => "sinter",
         "intersect_and_store"  => "sinterstore",
-        "members"              => "smembers",
         "exists?"              => "exists"
       }
 
@@ -402,7 +400,7 @@ module EventMachine
         #e.g. :8
         when COLON
           dispatch_response(Integer(reply_args))
-        #e.g. *2\r\n$1\r\na\r\n$1\r\nb\r\n 
+        #e.g. *2\r\n$1\r\na\r\n$1\r\nb\r\n
         when ASTERISK
           multibulk_count = Integer(reply_args)
           if multibulk_count == -1 || multibulk_count == 0
diff --git a/spec/redis_commands_spec.rb b/spec/redis_commands_spec.rb
index 95140ca..dae6880 100644
--- a/spec/redis_commands_spec.rb
+++ b/spec/redis_commands_spec.rb
@@ -635,7 +635,7 @@ EM.describe EM::Protocols::Redis do
   end
 
   # Tests are disabled due uncatchable exceptions. We should use on_error callback,
-  # intead of raising exceptions in random places.
+  # instead of raising exceptions in random places.
   #
   # it "should raise error when invoke MONITOR" do
   #   # lambda { @r.monitor }.should.raise

Debdiff

File lists identical (after any substitutions)

No differences were encountered in the control files

More details

Full run details