[DRE-commits] [ruby-msgpack] 04/08: Endian problem has been fixed, remove patch 20_fix_bigendian.

Taku YASUI tach at debian.org
Fri Aug 16 10:26:59 UTC 2013


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

tach pushed a commit to branch master
in repository ruby-msgpack.

commit 97e1cdd9ebadb3fe664ab4bbf7c0a94a2364056d
Author: Taku YASUI <tach at debian.org>
Date:   Fri Aug 16 18:58:35 2013 +0900

    Endian problem has been fixed, remove patch 20_fix_bigendian.
---
 debian/changelog                |    1 +
 debian/patches/20_fix_bigendian |   41 ---------------------------------------
 debian/patches/series           |    1 -
 3 files changed, 1 insertion(+), 42 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 3f754b6..b2ee782 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ ruby-msgpack (0.5.5-1) unstable; urgency=low
 
   * New upstream release.
     - Testing framework changed, remove patch 10_fix_test_path.
+    - Endian problem has been fixed, remove patch 20_fix_bigendian.
 
  -- Taku YASUI <tach at debian.org>  Fri, 16 Aug 2013 18:46:15 +0900
 
diff --git a/debian/patches/20_fix_bigendian b/debian/patches/20_fix_bigendian
deleted file mode 100644
index 7f9ff7c..0000000
--- a/debian/patches/20_fix_bigendian
+++ /dev/null
@@ -1,41 +0,0 @@
---- a/msgpack/sysdep.h
-+++ b/msgpack/sysdep.h
-@@ -153,24 +153,24 @@
- #define _msgpack_be64(x) (x)
- 
- #define _msgpack_load16(cast, from) ((cast)( \
--        (((uint16_t)((uint8_t*)from)[1]) << 8) | \
--        (((uint16_t)((uint8_t*)from)[0])     ) ))
-+        (((uint16_t)((uint8_t*)from)[0]) << 8) | \
-+        (((uint16_t)((uint8_t*)from)[1])     ) ))
- 
- #define _msgpack_load32(cast, from) ((cast)( \
--        (((uint32_t)((uint8_t*)from)[3]) << 24) | \
--        (((uint32_t)((uint8_t*)from)[2]) << 16) | \
--        (((uint32_t)((uint8_t*)from)[1]) <<  8) | \
--        (((uint32_t)((uint8_t*)from)[0])      ) ))
-+        (((uint32_t)((uint8_t*)from)[0]) << 24) | \
-+        (((uint32_t)((uint8_t*)from)[1]) << 16) | \
-+        (((uint32_t)((uint8_t*)from)[2]) <<  8) | \
-+        (((uint32_t)((uint8_t*)from)[3])      ) ))
- 
- #define _msgpack_load64(cast, from) ((cast)( \
--        (((uint64_t)((uint8_t*)from)[7]) << 56) | \
--        (((uint64_t)((uint8_t*)from)[6]) << 48) | \
--        (((uint64_t)((uint8_t*)from)[5]) << 40) | \
--        (((uint64_t)((uint8_t*)from)[4]) << 32) | \
--        (((uint64_t)((uint8_t*)from)[3]) << 24) | \
--        (((uint64_t)((uint8_t*)from)[2]) << 16) | \
--        (((uint64_t)((uint8_t*)from)[1]) << 8)  | \
--        (((uint64_t)((uint8_t*)from)[0])     )  ))
-+        (((uint64_t)((uint8_t*)from)[0]) << 56) | \
-+        (((uint64_t)((uint8_t*)from)[1]) << 48) | \
-+        (((uint64_t)((uint8_t*)from)[2]) << 40) | \
-+        (((uint64_t)((uint8_t*)from)[3]) << 32) | \
-+        (((uint64_t)((uint8_t*)from)[4]) << 24) | \
-+        (((uint64_t)((uint8_t*)from)[5]) << 16) | \
-+        (((uint64_t)((uint8_t*)from)[6]) << 8)  | \
-+        (((uint64_t)((uint8_t*)from)[7])     )  ))
- #endif
- 
- 
diff --git a/debian/patches/series b/debian/patches/series
index 07b8818..e69de29 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +0,0 @@
-20_fix_bigendian

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



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