diff --git a/desktop/toolkit/motif/openmotif/actions.py b/desktop/toolkit/motif/openmotif/actions.py
index edcc2065b6..21367837c2 100644
--- a/desktop/toolkit/motif/openmotif/actions.py
+++ b/desktop/toolkit/motif/openmotif/actions.py
@@ -9,7 +9,7 @@ from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
-WorkDir = "motif-2.3.4"
+WorkDir = "motif-2.3.7"
mwmlibdir = "/usr/lib/X11"
mwmconfigdir = "/etc/X11/mwm"
diff --git a/desktop/toolkit/motif/openmotif/pspec.xml b/desktop/toolkit/motif/openmotif/pspec.xml
index a705d72820..d7af448493 100644
--- a/desktop/toolkit/motif/openmotif/pspec.xml
+++ b/desktop/toolkit/motif/openmotif/pspec.xml
@@ -13,7 +13,7 @@
app
Open Motif implementation
Freely available version of the well known Motif user interface toolkit for Open Source operating systems.
- mirrors://sourceforge/motif/motif-2.3.4-src.tgz
+ mirrors://sourceforge/motif/motif-2.3.7.tar.gz
libXmu-devel
libXft-devel
@@ -33,9 +33,9 @@
openmotif-uil.patch
openmotif-unaligned.patch
- sentinel.patch
- strcmp.patch
- warn.patch
+
+
+
openMotif-2.3.0-no_X11R6.patch
motif-2.3.4-bindings.patch
motif-2.3.4-mwmrc_dir.patch
@@ -57,6 +57,7 @@
libjpeg-turbo
libX11
libpng
+ freetype
/etc
@@ -95,7 +96,6 @@
emul32
libSM-32bit
-
libXt-32bit
libXp-32bit
libXmu-32bit
@@ -119,6 +119,7 @@
libXft-32bit
libXext-32bit
fontconfig-32bit
+ freetype-32bit
libjpeg-turbo-32bit
@@ -127,6 +128,13 @@
+
+ 2017-04-11
+ 2.3.7
+ Version Bump
+ Kamil Atlı
+ suvari@pisilinux.org
+
2016-06-09
2.3.4
diff --git a/desktop/toolkit/wxGTK2.8/files/wxGTK-2.8.12.1-r2-gcc6.patch b/desktop/toolkit/wxGTK2.8/files/wxGTK-2.8.12.1-r2-gcc6.patch
new file mode 100644
index 0000000000..f575d61fda
--- /dev/null
+++ b/desktop/toolkit/wxGTK2.8/files/wxGTK-2.8.12.1-r2-gcc6.patch
@@ -0,0 +1,72 @@
+--- wxPython-src-2.8.12.1/src/gtk/bdiag.xbm 2007-07-04 21:25:08.000000000 +0200
++++ wxPython-src-2.8.12.1/src/gtk/bdiag.xbm 2016-08-31 23:37:12.299122408 +0200
+@@ -1,6 +1,6 @@
+ #define bdiag_width 16
+ #define bdiag_height 16
+ static char bdiag_bits[] = {
+- 0x80, 0x80, 0x40, 0x40, 0x20, 0x20, 0x10, 0x10, 0x08, 0x08, 0x04, 0x04,
+- 0x02, 0x02, 0x01, 0x01, 0x80, 0x80, 0x40, 0x40, 0x20, 0x20, 0x10, 0x10,
+- 0x08, 0x08, 0x04, 0x04, 0x02, 0x02, 0x01, 0x01};
++ (char)0x80, (char)0x80, (char)0x40, (char)0x40, (char)0x20, (char)0x20, (char)0x10, (char)0x10, (char)0x08, (char)0x08, (char)0x04, (char)0x04,
++ (char)0x02, (char)0x02, (char)0x01, (char)0x01, (char)0x80, (char)0x80, (char)0x40, (char)0x40, (char)0x20, (char)0x20, (char)0x10, (char)0x10,
++ (char)0x08, (char)0x08, (char)0x04, (char)0x04, (char)0x02, (char)0x02, (char)0x01, (char)0x01};
+--- wxPython-src-2.8.12.1/src/gtk/fdiag.xbm 2007-07-04 21:25:08.000000000 +0200
++++ wxPython-src-2.8.12.1/src/gtk/fdiag.xbm 2016-08-31 23:40:46.011086115 +0200
+@@ -1,6 +1,6 @@
+ #define fdiag_width 16
+ #define fdiag_height 16
+ static char fdiag_bits[] = {
+- 0x01, 0x01, 0x02, 0x02, 0x04, 0x04, 0x08, 0x08, 0x10, 0x10, 0x20, 0x20,
+- 0x40, 0x40, 0x80, 0x80, 0x01, 0x01, 0x02, 0x02, 0x04, 0x04, 0x08, 0x08,
+- 0x10, 0x10, 0x20, 0x20, 0x40, 0x40, 0x80, 0x80};
++ (char)0x01, (char)0x01, (char)0x02, (char)0x02, (char)0x04, (char)0x04, (char)0x08, (char)0x08, (char)0x10, (char)0x10, (char)0x20, (char)0x20,
++ (char)0x40, (char)0x40, (char)0x80, (char)0x80, (char)0x01, (char)0x01, (char)0x02, (char)0x02, (char)0x04, (char)0x04, (char)0x08, (char)0x08,
++ (char)0x10, (char)0x10, (char)0x20, (char)0x20, (char)0x40, (char)0x40, (char)0x80, (char)0x80};
+--- wxPython-src-2.8.12.1/src/gtk/cdiag.xbm 2007-07-04 21:25:08.000000000 +0200
++++ wxPython-src-2.8.12.1/src/gtk/cdiag.xbm 2016-08-31 23:43:36.585258499 +0200
+@@ -1,6 +1,6 @@
+ #define cdiag_width 16
+ #define cdiag_height 16
+ static char cdiag_bits[] = {
+- 0x81, 0x81, 0x42, 0x42, 0x24, 0x24, 0x18, 0x18, 0x18, 0x18, 0x24, 0x24,
+- 0x42, 0x42, 0x81, 0x81, 0x81, 0x81, 0x42, 0x42, 0x24, 0x24, 0x18, 0x18,
+- 0x18, 0x18, 0x24, 0x24, 0x42, 0x42, 0x81, 0x81};
++ (char)0x81, (char)0x81, (char)0x42, (char)0x42, (char)0x24, (char)0x24, (char)0x18, (char)0x18, (char)0x18, (char)0x18, (char)0x24, (char)0x24,
++ (char)0x42, (char)0x42, (char)0x81, (char)0x81, (char)0x81, (char)0x81, (char)0x42, (char)0x42, (char)0x24, (char)0x24, (char)0x18, (char)0x18,
++ (char)0x18, (char)0x18, (char)0x24, (char)0x24, (char)0x42, (char)0x42, (char)0x81, (char)0x81};
+--- wxPython-src-2.8.12.1/src/gtk/horiz.xbm 2007-07-04 21:25:08.000000000 +0200
++++ wxPython-src-2.8.12.1/src/gtk/horiz.xbm 2016-08-31 23:45:50.488608592 +0200
+@@ -1,6 +1,6 @@
+ #define horiz_width 15
+ #define horiz_height 15
+ static char horiz_bits[] = {
+- 0x00, 0x00, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+- 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+- 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00};
++ (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0xff, (char)0x7f, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00,
++ (char)0x00, (char)0x00, (char)0xff, (char)0x7f, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00,
++ (char)0xff, (char)0x7f, (char)0x00, (char)0x00, (char)0x00, (char)0x00};
+--- wxPython-src-2.8.12.1/src/gtk/verti.xbm 2016-08-31 23:46:37.464380555 +0200
++++ wxPython-src-2.8.12.1/src/gtk/verti.xbm 2016-08-31 23:48:07.672942608 +0200
+@@ -1,6 +1,6 @@
+ #define verti_width 15
+ #define verti_height 15
+ static char verti_bits[] = {
+- 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10,
+- 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10,
+- 0x84, 0x10, 0x84, 0x10, 0x84, 0x10};
++ (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10,
++ (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10,
++ (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10};
+--- wxPython-src-2.8.12.1/src/gtk/cross.xbm 2007-07-04 21:25:08.000000000 +0200
++++ wxPython-src-2.8.12.1/src/gtk/cross.xbm 2016-08-31 23:51:25.478982130 +0200
+@@ -1,6 +1,6 @@
+ #define cross_width 15
+ #define cross_height 15
+ static char cross_bits[] = {
+- 0x84, 0x10, 0x84, 0x10, 0xff, 0x7f, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10,
+- 0x84, 0x10, 0xff, 0x7f, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10,
+- 0xff, 0x7f, 0x84, 0x10, 0x84, 0x10};
++ (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0xff, (char)0x7f, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10,
++ (char)0x84, (char)0x10, (char)0xff, (char)0x7f, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10,
++ (char)0xff, (char)0x7f, (char)0x84, (char)0x10, (char)0x84, (char)0x10};
diff --git a/desktop/toolkit/wxGTK2.8/pspec.xml b/desktop/toolkit/wxGTK2.8/pspec.xml
index fec512eba0..5f3e4d8134 100644
--- a/desktop/toolkit/wxGTK2.8/pspec.xml
+++ b/desktop/toolkit/wxGTK2.8/pspec.xml
@@ -1,3 +1,4 @@
+
@@ -35,6 +36,7 @@
wxGTK-collision.patch
wxGTK-2.8.10-CVE-2009-XXXX.diff
+ wxGTK-2.8.12.1-r2-gcc6.patch
@@ -113,6 +115,13 @@
+
+ 2017-04-11
+ 2.8.12
+ Release Bump
+ Kamil Atlı
+ suvari@pisilinux.org
+
2016-06-09
2.8.12
@@ -128,4 +137,4 @@
ertugrulerata@gmail.com
-
+
\ No newline at end of file
diff --git a/office/misc/libvc/pspec.xml b/office/misc/libvc/pspec.xml
index 184ef4c0db..3059231aab 100644
--- a/office/misc/libvc/pspec.xml
+++ b/office/misc/libvc/pspec.xml
@@ -12,12 +12,12 @@
library
A library to ease explicit vectorization of C++ code.
Vc is a free software library to ease explicit vectorization of C++ code. It has an intuitive API and provides portability between different compilers and compiler versions as well as portability between different vector instruction sets.
- https://github.com/VcDevel/Vc/releases/download/1.3.0/Vc-1.3.0.tar.gz
+ https://github.com/VcDevel/Vc/releases/download/1.3.1/Vc-1.3.1.tar.gz
cmake
-
+
libvc
@@ -25,7 +25,7 @@
/usr/share/doc
-
+
libvc-devel
Development files for libvc
@@ -37,8 +37,15 @@
/usr/lib/cmake
-
+
+
+ 2017-04-11
+ 1.3.1
+ Version bump
+ Kamil Atlı
+ suvari@pisilinux.org
+
2016-12-31
1.3.0
@@ -47,4 +54,4 @@
alihan@pisilinux.org
-
+
\ No newline at end of file