pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/geography/opencpn-plugin-debugger Fix 64bit time_t. Bu...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b0315e7cfe02
branches:  trunk
changeset: 363110:b0315e7cfe02
user:      bouyer <bouyer%pkgsrc.org@localhost>
date:      Thu Jun 01 10:26:16 2017 +0000

description:
Fix 64bit time_t. Bump PKGREVISION

diffstat:

 geography/opencpn-plugin-debugger/Makefile                              |   4 +-
 geography/opencpn-plugin-debugger/distinfo                              |   3 +-
 geography/opencpn-plugin-debugger/patches/patch-src_ocpndebugger_pi.cpp |  15 ++++++++++
 3 files changed, 19 insertions(+), 3 deletions(-)

diffs (46 lines):

diff -r 578634db5412 -r b0315e7cfe02 geography/opencpn-plugin-debugger/Makefile
--- a/geography/opencpn-plugin-debugger/Makefile        Thu Jun 01 09:58:42 2017 +0000
+++ b/geography/opencpn-plugin-debugger/Makefile        Thu Jun 01 10:26:16 2017 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.5 2017/04/14 16:42:24 bouyer Exp $
+# $NetBSD: Makefile,v 1.6 2017/06/01 10:26:16 bouyer Exp $
 #
 
 VERSION=       20170414
-#PKGREVISION=  2
+PKGREVISION=   1
 DISTNAME=      ocpndebugger_pi-${VERSION}
 PKGNAME=       opencpn-plugin-debugger-${VERSION}
 CATEGORIES=    geography
diff -r 578634db5412 -r b0315e7cfe02 geography/opencpn-plugin-debugger/distinfo
--- a/geography/opencpn-plugin-debugger/distinfo        Thu Jun 01 09:58:42 2017 +0000
+++ b/geography/opencpn-plugin-debugger/distinfo        Thu Jun 01 10:26:16 2017 +0000
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.2 2017/04/14 16:22:51 bouyer Exp $
+$NetBSD: distinfo,v 1.3 2017/06/01 10:26:16 bouyer Exp $
 
 SHA1 (ocpndebugger_pi-20170414-f2cea39ffcbf61c84e2d6066b155d866eaebff0f.tar.gz) = 77cb82bb97b95330d11985c4472f83c15c310091
 RMD160 (ocpndebugger_pi-20170414-f2cea39ffcbf61c84e2d6066b155d866eaebff0f.tar.gz) = 70b5760b67015a45c681ff5cb2c6312610cd008a
 SHA512 (ocpndebugger_pi-20170414-f2cea39ffcbf61c84e2d6066b155d866eaebff0f.tar.gz) = 
007f8c8c3c9334d9e71a2a471744fb7f5db5e67fe6f16440b4fb0134688c946f914505b2b11b5e4cbcb85defb00dd972f9ea7b5610042e8f946930d2a7f1326f
 Size (ocpndebugger_pi-20170414-f2cea39ffcbf61c84e2d6066b155d866eaebff0f.tar.gz) = 124761 bytes
 SHA1 (patch-cmake_PluginConfigure.cmake) = e56d5782610fe1191a8183e66bcf0ccf9133354a
+SHA1 (patch-src_ocpndebugger_pi.cpp) = 9b37f7773e3f0cbde2fc10465e71972413ebc474
diff -r 578634db5412 -r b0315e7cfe02 geography/opencpn-plugin-debugger/patches/patch-src_ocpndebugger_pi.cpp
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/geography/opencpn-plugin-debugger/patches/patch-src_ocpndebugger_pi.cpp   Thu Jun 01 10:26:16 2017 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_ocpndebugger_pi.cpp,v 1.1 2017/06/01 10:26:17 bouyer Exp $
+
+64bit time_t fix
+
+--- src/ocpndebugger_pi.cpp.orig       2017-06-01 12:14:55.978172546 +0200
++++ src/ocpndebugger_pi.cpp    2017-06-01 12:20:34.836463280 +0200
+@@ -173,7 +173,7 @@
+             _T("Cog: %f, Hdm: %f, Hdt: %f, Lat: %f, Lon: %f, ")
+             _T("Sog: %f, Var: %f, nSats: %d, Fixtime: %d\n"),
+             pfix.Cog, pfix.Hdm, pfix.Hdt, pfix.Lat, pfix.Lon, pfix.Sog,
+-            pfix.Var, pfix.nSats, pfix.FixTime);
++            pfix.Var, pfix.nSats, (int)pfix.FixTime);
+         m_pOpenCPNDebuggerDialog->SetNMEAEvent(msg);
+     }
+ }



Home | Main Index | Thread Index | Old Index