[hamradio-commits] [limesuite] 05/09: Remove backported fix-abs-overload patch, included in release

Andreas E. Bombe aeb at moszumanska.debian.org
Thu Mar 30 23:19:30 UTC 2017


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

aeb pushed a commit to branch master
in repository limesuite.

commit 1a3de54a0ff11c9534b6c2ebc750c67dc16e70d6
Author: Andreas Bombe <aeb at debian.org>
Date:   Thu Mar 30 14:41:36 2017 +0200

    Remove backported fix-abs-overload patch, included in release
---
 debian/changelog                |  7 +++++++
 debian/patches/fix-abs-overload | 25 -------------------------
 debian/patches/series           |  1 -
 3 files changed, 7 insertions(+), 26 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 9396e18..272b85b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+limesuite (17.02.1+dfsg-1) UNRELEASED; urgency=medium
+
+  * New upstream release 17.02.1
+  * Remove backported fix-abs-overload patch, included in release
+
+ -- Andreas Bombe <aeb at debian.org>  Thu, 30 Mar 2017 14:38:41 +0200
+
 limesuite (16.12.0+dfsg-1) unstable; urgency=medium
 
   * New upstream release 16.12.0
diff --git a/debian/patches/fix-abs-overload b/debian/patches/fix-abs-overload
deleted file mode 100644
index 23d8ed3..0000000
--- a/debian/patches/fix-abs-overload
+++ /dev/null
@@ -1,25 +0,0 @@
-Description: Fix compile error
- This patch comes from upstream git fixing a compile error. Original changelog:
- .
- "Subject: Fix abs() overload for mcu lms7002m calibrations
- .
-  on ubuntu yakkety (gcc 6.2.0) abs(int8_t) had some resolution issue,
-  it was picking up a double type which it could not or with 0x40.
-  The fix was to force the integer version of abs with a cast."
-Author: Josh Blum <josh at joshknows.com>
-Origin: upstream, https://github.com/myriadrf/LimeSuite/commit/fd7b8c707859873c204509b12ae559b0cfb0c19c
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
-diff --git a/mcu_program/common_src/lms7002m_calibrations.c b/mcu_program/common_src/lms7002m_calibrations.c
-index 10b1351..f2c3386 100644
---- a/mcu_program/common_src/lms7002m_calibrations.c
-+++ b/mcu_program/common_src/lms7002m_calibrations.c
-@@ -65,7 +65,7 @@ static uint8_t toDCOffset(const int8_t offset)
- {
-     if(offset >= 0)
-         return offset;
--    return abs(offset) | 0x40;
-+    return (uint8_t)(abs((int)offset) | 0x40);
- }
- 
- static void FlipRisingEdge(const uint16_t addr, const uint8_t bits)
diff --git a/debian/patches/series b/debian/patches/series
index e9f11d6..f633518 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -4,4 +4,3 @@ use-system-glew
 link-libatomic
 fix-icon-install
 fix-libusb-include
-fix-abs-overload

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-hamradio/limesuite.git



More information about the pkg-hamradio-commits mailing list