pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/geography/opencpn-plugin-debugger
Module Name: pkgsrc
Committed By: bouyer
Date: Thu Jun 1 10:26:17 UTC 2017
Modified Files:
pkgsrc/geography/opencpn-plugin-debugger: Makefile distinfo
Added Files:
pkgsrc/geography/opencpn-plugin-debugger/patches:
patch-src_ocpndebugger_pi.cpp
Log Message:
Fix 64bit time_t. Bump PKGREVISION
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/geography/opencpn-plugin-debugger/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/geography/opencpn-plugin-debugger/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/geography/opencpn-plugin-debugger/patches/patch-src_ocpndebugger_pi.cpp
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/geography/opencpn-plugin-debugger/Makefile
diff -u pkgsrc/geography/opencpn-plugin-debugger/Makefile:1.5 pkgsrc/geography/opencpn-plugin-debugger/Makefile:1.6
--- pkgsrc/geography/opencpn-plugin-debugger/Makefile:1.5 Fri Apr 14 16:42:24 2017
+++ pkgsrc/geography/opencpn-plugin-debugger/Makefile Thu Jun 1 10:26:16 2017
@@ -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
Index: pkgsrc/geography/opencpn-plugin-debugger/distinfo
diff -u pkgsrc/geography/opencpn-plugin-debugger/distinfo:1.2 pkgsrc/geography/opencpn-plugin-debugger/distinfo:1.3
--- pkgsrc/geography/opencpn-plugin-debugger/distinfo:1.2 Fri Apr 14 16:22:51 2017
+++ pkgsrc/geography/opencpn-plugin-debugger/distinfo Thu Jun 1 10:26:16 2017
@@ -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
Added files:
Index: pkgsrc/geography/opencpn-plugin-debugger/patches/patch-src_ocpndebugger_pi.cpp
diff -u /dev/null pkgsrc/geography/opencpn-plugin-debugger/patches/patch-src_ocpndebugger_pi.cpp:1.1
--- /dev/null Thu Jun 1 10:26:17 2017
+++ pkgsrc/geography/opencpn-plugin-debugger/patches/patch-src_ocpndebugger_pi.cpp Thu Jun 1 10:26:17 2017
@@ -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