[Pkg-mongodb-maintainers] [mongo-cxx-driver-legacy] 01/02: Release 1.1.2-1

Apollon Oikonomopoulos apoikos at moszumanska.debian.org
Fri Nov 11 17:54:22 UTC 2016


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

apoikos pushed a commit to annotated tag debian/1.1.2-2
in repository mongo-cxx-driver-legacy.

commit 4bbcf3bc4bfa38232e1d0d22353246f44d96fb4e
Author: Apollon Oikonomopoulos <apoikos at debian.org>
Date:   Wed Nov 9 16:07:12 2016 +0200

    Release 1.1.2-1
---
 debian/changelog                                | 19 ++++++++++++++++++-
 debian/patches/1004_fix_ftbfs_with_gcc6.1.patch | 18 ++++++++++++++++++
 debian/patches/series                           |  1 +
 3 files changed, 37 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 7fc51d6..13f1098 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,20 @@
+mongo-cxx-driver-legacy (1.1.2-1) unstable; urgency=medium
+
+  * New upstream release
+  * Place the package under pkg-mongodb
+    + Add Giulio and myself to Uploaders
+  * Drop 1002_fix_compilation_on_freebsd_and_hurd.patch
+  * Refresh patches remaining patches
+  * Set SONAME to libmongoclient.so.0; upstream does not provide a SONAME
+    currently, but will do so in the future.
+  * Fix building against OpenSSL 1.1.
+  * Enable C++11 mode and use std::regex instead of boost::regex
+  * Make packages Multi-Arch: same
+  * Include versioned dependency in .shlibs
+  * Add mongodb-dev transitional binary package (moved from mongodb-server)
+
+ -- Apollon Oikonomopoulos <apoikos at debian.org>  Thu, 10 Nov 2016 17:42:47 +0200
+
 mongo-cxx-driver-legacy (1.1.1-2) experimental; urgency=medium
 
   * Limit libssl-dev version (<< 1.1) in build dependencies.
@@ -12,4 +29,4 @@ mongo-cxx-driver-legacy (1.1.1-1) experimental; urgency=medium
     Closes: #818286
 
  -- Giulio Paci <giuliopaci at gmail.com>  Mon, 23 May 2016 09:32:23 +0200
- 
\ No newline at end of file
+ 
diff --git a/debian/patches/1004_fix_ftbfs_with_gcc6.1.patch b/debian/patches/1004_fix_ftbfs_with_gcc6.1.patch
new file mode 100644
index 0000000..5980736
--- /dev/null
+++ b/debian/patches/1004_fix_ftbfs_with_gcc6.1.patch
@@ -0,0 +1,18 @@
+Author: Apollon Oikonomopoulos <apoikos at debian.org>
+Description: Fix FTBFS (test failure) with GCC 6.1
+ Hex float constants are part of C++17 (and only GNU extensions in C++11)
+ and GCC 6.1 errors out when src/mongo/base/parse_number_test.cpp is
+ compiled using -std=c++11.
+Last-Update: 2016-11-11
+Forwarded: no (legacy)
+--- a/src/mongo/base/parse_number_test.cpp
++++ b/src/mongo/base/parse_number_test.cpp
+@@ -279,7 +279,7 @@
+ 
+     ASSERT_PARSES(double, "0xff", 0xff);
+     ASSERT_PARSES(double, "-0xff", -0xff);
+-    ASSERT_PARSES(double, "0xabcab.defdefP-10", 0xabcab.defdefP-10);
++    //ASSERT_PARSES(double, "0xabcab.defdefP-10", 0xabcab.defdefP-10);
+ #endif
+ }
+ 
diff --git a/debian/patches/series b/debian/patches/series
index 707cbce..358e37a 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,5 @@
 1001_set_soname.patch
 1002_openssl_1.1_compat.patch
 1003_C++11_compat.patch
+1004_fix_ftbfs_with_gcc6.1.patch
 2001_use_system_libraries_if_possible.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mongodb/mongo-cxx-driver-legacy.git



More information about the Pkg-mongodb-maintainers mailing list