pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/misc/rocs Correct flag use. Bump revision.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1930b4ddd8d4
branches:  trunk
changeset: 355935:1930b4ddd8d4
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Thu Dec 15 23:58:18 2016 +0000

description:
Correct flag use. Bump revision.

diffstat:

 misc/rocs/Makefile                                                    |   4 +-
 misc/rocs/distinfo                                                    |   3 +-
 misc/rocs/patches/patch-VisualEditor_Actions_SelectMoveHandAction.cpp |  15 ++++++++++
 3 files changed, 19 insertions(+), 3 deletions(-)

diffs (46 lines):

diff -r ffa749d574eb -r 1930b4ddd8d4 misc/rocs/Makefile
--- a/misc/rocs/Makefile        Thu Dec 15 23:57:33 2016 +0000
+++ b/misc/rocs/Makefile        Thu Dec 15 23:58:18 2016 +0000
@@ -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
 
diff -r ffa749d574eb -r 1930b4ddd8d4 misc/rocs/distinfo
--- a/misc/rocs/distinfo        Thu Dec 15 23:57:33 2016 +0000
+++ b/misc/rocs/distinfo        Thu Dec 15 23:58:18 2016 +0000
@@ -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 @@
 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
diff -r ffa749d574eb -r 1930b4ddd8d4 misc/rocs/patches/patch-VisualEditor_Actions_SelectMoveHandAction.cpp
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/rocs/patches/patch-VisualEditor_Actions_SelectMoveHandAction.cpp     Thu Dec 15 23:58:18 2016 +0000
@@ -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