[Pkg-mongodb-maintainers] [pkg-mongodb] 345/394: Drop 0010-fix-integer-signs.patch
Apollon Oikonomopoulos
apoikos at moszumanska.debian.org
Wed Sep 21 14:00:22 UTC 2016
This is an automated email from the git hooks/post-receive script.
apoikos pushed a commit to branch master
in repository pkg-mongodb.
commit 6682433ae788a353f8f1a97e96a460d22cfe7615
Author: Apollon Oikonomopoulos <apoikos at debian.org>
Date: Fri Jan 15 12:25:08 2016 +0200
Drop 0010-fix-integer-signs.patch
Upstream is now casting the values to be tested correctly.
---
debian/patches/0010-fix-integer-signs.patch | 64 -----------------------------
debian/patches/series | 1 -
2 files changed, 65 deletions(-)
diff --git a/debian/patches/0010-fix-integer-signs.patch b/debian/patches/0010-fix-integer-signs.patch
deleted file mode 100644
index 9755105..0000000
--- a/debian/patches/0010-fix-integer-signs.patch
+++ /dev/null
@@ -1,64 +0,0 @@
-Description: make ints unsigned to match boost library
- argc should be unsigned everywhere, negative values have no sense
-Author: Laszlo Boszormenyi (GCS) <gcs at debian.org>
-Bug-Debian: http://bugs.debian.org/724100
-Last-Update: 2013-10-13
-
----
-
---- a/src/mongo/util/cmdline_utils/censor_cmdline_test.cpp
-+++ b/src/mongo/util/cmdline_utils/censor_cmdline_test.cpp
-@@ -85,7 +85,7 @@
- "KEEP",
- "--servicePasswordFake=KEEP"
- };
-- const int argc = boost::size(argv);
-+ const unsigned int argc = boost::size(argv);
- testCensoringArgv(argv, argv, argc);
- }
-
-@@ -102,7 +102,7 @@
- "--servicePassword",
- "get out of dodge"
- };
-- const int argc = boost::size(argv);
-+ const unsigned int argc = boost::size(argv);
-
- const char* const expected[] = {
- "first",
-@@ -134,7 +134,7 @@
- "-servicePassword",
- "get out of dodge"
- };
-- const int argc = boost::size(argv);
-+ const unsigned int argc = boost::size(argv);
-
- const char* const expected[] = {
- "first",
-@@ -166,7 +166,7 @@
- "KEEP",
- "--servicePasswordFake=KEEP"
- };
-- const int argc = boost::size(argv);
-+ const unsigned int argc = boost::size(argv);
- testCensoringVector(argv, argv, argc);
- }
-
-@@ -183,7 +183,7 @@
- "--servicePassword",
- "get out of dodge"
- };
-- const int argc = boost::size(argv);
-+ const unsigned int argc = boost::size(argv);
-
- const char* const expected[] = {
- "first",
-@@ -215,7 +215,7 @@
- "-servicePassword",
- "get out of dodge"
- };
-- const int argc = boost::size(argv);
-+ const unsigned int argc = boost::size(argv);
-
- const char* const expected[] = {
- "first",
diff --git a/debian/patches/series b/debian/patches/series
index 35babd4..057bebd 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -4,7 +4,6 @@
0006-Fix-ARM-alignment-problems.patch
0007-Use-TIME_UTC_-macro.patch
0009-ignore-unused-local-typedefs.patch
-0010-fix-integer-signs.patch
0099-Pagesize-hacks.patch
0004-Support-ppc64el-builds.patch
0012-support-gnu.patch
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mongodb/pkg-mongodb.git
More information about the Pkg-mongodb-maintainers
mailing list