pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/cad/kicad Fix reversed assignement, pointed out by he@...
details: https://anonhg.NetBSD.org/pkgsrc/rev/d815d190946b
branches: trunk
changeset: 353007:d815d190946b
user: bouyer <bouyer%pkgsrc.org@localhost>
date: Wed Sep 21 13:16:06 2016 +0000
description:
Fix reversed assignement, pointed out by he@ (thanks !)
diffstat:
cad/kicad/Makefile | 4 ++--
cad/kicad/distinfo | 4 ++--
cad/kicad/patches/patch-eeschema_sch_component.cpp | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diffs (51 lines):
diff -r 56e218075717 -r d815d190946b cad/kicad/Makefile
--- a/cad/kicad/Makefile Wed Sep 21 12:21:51 2016 +0000
+++ b/cad/kicad/Makefile Wed Sep 21 13:16:06 2016 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.11 2016/09/08 09:32:28 bouyer Exp $
+# $NetBSD: Makefile,v 1.12 2016/09/21 13:16:06 bouyer Exp $
#
V= 4.0.4
DISTNAME= kicad-${V}
-#PKGREVISION= 1
+PKGREVISION= 1
CATEGORIES= cad
MASTER_SITES= https://launchpad.net/kicad/4.0/${V}/+download/
EXTRACT_SUFX= .tar.xz
diff -r 56e218075717 -r d815d190946b cad/kicad/distinfo
--- a/cad/kicad/distinfo Wed Sep 21 12:21:51 2016 +0000
+++ b/cad/kicad/distinfo Wed Sep 21 13:16:06 2016 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2016/09/08 09:32:28 bouyer Exp $
+$NetBSD: distinfo,v 1.6 2016/09/21 13:16:06 bouyer Exp $
SHA1 (kicad-4.0.4.tar.xz) = d0a124218f91cd40958ca0d68f8fe1f36d368cc3
RMD160 (kicad-4.0.4.tar.xz) = 563b5168bd94b8c4a34f720fdb60e677c75f75fe
@@ -14,7 +14,7 @@
SHA1 (patch-common_tool_tool_manager.cpp) = 242a0755b7aff280e5eb2b423a546f1dc4fdea2c
SHA1 (patch-cvpcb_CMakeLists.txt) = 2eaa753054851efab680f402fbf808d78d84205a
SHA1 (patch-eeschema_CMakeLists.txt) = a6dec7f84f5854ccedc2cae5e8c290ea3d41bfa3
-SHA1 (patch-eeschema_sch_component.cpp) = 2c858779f6359e2baa1fb06e599c6085b85d9c2d
+SHA1 (patch-eeschema_sch_component.cpp) = 7b3363a917e408327061f313e7cce8f77f0977e8
SHA1 (patch-eeschema_sch_sheet.cpp) = 83dd03910b1a7f78f46d3fc591bf5ec2670f2ce4
SHA1 (patch-gerbview_CMakeLists.txt) = 817f7fa3f27e77e42d37e0df4fab1525cfb35053
SHA1 (patch-include-kicad_string.h) = 16f2db87cab7716171360220a6c41d9a8ee5b8d1
diff -r 56e218075717 -r d815d190946b cad/kicad/patches/patch-eeschema_sch_component.cpp
--- a/cad/kicad/patches/patch-eeschema_sch_component.cpp Wed Sep 21 12:21:51 2016 +0000
+++ b/cad/kicad/patches/patch-eeschema_sch_component.cpp Wed Sep 21 13:16:06 2016 +0000
@@ -1,4 +1,4 @@
-$NetBSD: patch-eeschema_sch_component.cpp,v 1.3 2016/09/08 09:32:28 bouyer Exp $
+$NetBSD: patch-eeschema_sch_component.cpp,v 1.4 2016/09/21 13:16:07 bouyer Exp $
64bit time_t fix
Reported upstream as bug id 1280901
@@ -11,7 +11,7 @@
- sscanf( line + 1, "%d %d %lX", &m_unit, &m_convert, &m_TimeStamp );
+ u_long tmstp;
+ sscanf( line + 1, "%d %d %lX", &m_unit, &m_convert, &tmstp );
-+ tmstp = m_TimeStamp;
++ m_TimeStamp = tmstp;
}
else if( line[0] == 'P' )
{
Home |
Main Index |
Thread Index |
Old Index