pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/misc/rocs
Module Name: pkgsrc
Committed By: joerg
Date: Thu Dec 15 23:58:18 UTC 2016
Modified Files:
pkgsrc/misc/rocs: Makefile distinfo
Added Files:
pkgsrc/misc/rocs/patches:
patch-VisualEditor_Actions_SelectMoveHandAction.cpp
Log Message:
Correct flag use. Bump revision.
To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 pkgsrc/misc/rocs/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/misc/rocs/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/misc/rocs/patches/patch-VisualEditor_Actions_SelectMoveHandAction.cpp
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/misc/rocs/Makefile
diff -u pkgsrc/misc/rocs/Makefile:1.41 pkgsrc/misc/rocs/Makefile:1.42
--- pkgsrc/misc/rocs/Makefile:1.41 Fri Oct 7 18:26:03 2016
+++ pkgsrc/misc/rocs/Makefile Thu Dec 15 23:58:18 2016
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.41 2016/10/07 18:26:03 adam Exp $
+# $NetBSD: Makefile,v 1.42 2016/12/15 23:58:18 joerg Exp $
DISTNAME= rocs-${_KDE_VERSION}
-PKGREVISION= 6
+PKGREVISION= 7
CATEGORIES= misc
COMMENT= KDE graph theory IDE
Index: pkgsrc/misc/rocs/distinfo
diff -u pkgsrc/misc/rocs/distinfo:1.12 pkgsrc/misc/rocs/distinfo:1.13
--- pkgsrc/misc/rocs/distinfo:1.12 Sat May 7 10:06:40 2016
+++ pkgsrc/misc/rocs/distinfo Thu Dec 15 23:58:18 2016
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.12 2016/05/07 10:06:40 joerg Exp $
+$NetBSD: distinfo,v 1.13 2016/12/15 23:58:18 joerg Exp $
SHA1 (rocs-4.14.3.tar.xz) = a6fac0cee375f8bdb8c9241bde4bf9dda0f38704
RMD160 (rocs-4.14.3.tar.xz) = c148e7720239043b21d112ac32bfa47ca88accd0
@@ -6,3 +6,4 @@ SHA512 (rocs-4.14.3.tar.xz) = f0c1d35fcd
Size (rocs-4.14.3.tar.xz) = 1146328 bytes
SHA1 (patch-RocsCore_DataStructures_Graph_GraphStructure.cpp) = 21b7e84ba223e120e01fd8eebf2393db28d23152
SHA1 (patch-RocsCore_LoadSave_Plugins_CMakeLists.txt) = ae4d15f9aa8fc2f19715db544a15ddbc2f0d98fb
+SHA1 (patch-VisualEditor_Actions_SelectMoveHandAction.cpp) = cb112a7f0dba8f3b9036e9e3b572a977aa07a0c1
Added files:
Index: pkgsrc/misc/rocs/patches/patch-VisualEditor_Actions_SelectMoveHandAction.cpp
diff -u /dev/null pkgsrc/misc/rocs/patches/patch-VisualEditor_Actions_SelectMoveHandAction.cpp:1.1
--- /dev/null Thu Dec 15 23:58:18 2016
+++ pkgsrc/misc/rocs/patches/patch-VisualEditor_Actions_SelectMoveHandAction.cpp Thu Dec 15 23:58:18 2016
@@ -0,0 +1,15 @@
+$NetBSD: patch-VisualEditor_Actions_SelectMoveHandAction.cpp,v 1.1 2016/12/15 23:58:18 joerg Exp $
+
+QFlags are for ORing together, not ANDing.
+
+--- VisualEditor/Actions/SelectMoveHandAction.cpp.orig 2016-12-15 15:40:54.181414380 +0000
++++ VisualEditor/Actions/SelectMoveHandAction.cpp
+@@ -84,7 +84,7 @@ bool SelectMoveHandAction::executePress(
+
+ if (_graphScene->items().count() > 600) { // 5! + 25 items on screen
+ _graphScene->views().at(0)->setRenderHints(QPainter::Antialiasing
+- & QPainter::TextAntialiasing);
++ | QPainter::TextAntialiasing);
+ }
+ return true;
+ }
Home |
Main Index |
Thread Index |
Old Index