Hello community,
here is the log from the commit of package kross-interpreters for
openSUSE:Factory checked in at 2017-12-19 10:54:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kross-interpreters (Old)
and /work/SRC/openSUSE:Factory/.kross-interpreters.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kross-interpreters"
Tue Dec 19 10:54:55 2017 rev:21 rq:556241 version:17.12.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/kross-interpreters/kross-interpreters.changes
2017-11-17 10:51:35.883181766 +0100
+++
/work/SRC/openSUSE:Factory/.kross-interpreters.new/kross-interpreters.changes
2017-12-19 10:54:59.031498448 +0100
@@ -1,0 +2,32 @@
+Sat Dec 09 14:59:08 CET 2017 - [email protected]
+
+- Update to 17.12.0
+ * New feature release
+ * For more details please see:
+ * https://www.kde.org/announcements/announce-applications-17.12.0.php
+- Changes since 17.11.90:
+ * None
+
+-------------------------------------------------------------------
+Sat Dec 02 10:12:38 CET 2017 - [email protected]
+
+- Update to 17.11.90
+ * New feature release
+ * For more details please see:
+ * https://www.kde.org/announcements/announce-applications-17.12-rc.php
+- Changes since 17.11.80:
+ * None
+
+-------------------------------------------------------------------
+Mon Nov 20 06:59:22 CET 2017 - [email protected]
+
+- Update to 17.11.80
+ * New feature release
+ * For more details please see:
+ * https://www.kde.org/announcements/announce-applications-17.12-beta.php
+- Changes since 17.08.3:
+ * Add .arcconfig
+ * ruby: Initialize ruby mutexes
+ * Fix build on FreBSD
+
+-------------------------------------------------------------------
Old:
----
kross-interpreters-17.08.3.tar.xz
New:
----
kross-interpreters-17.12.0.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kross-interpreters.spec ++++++
--- /var/tmp/diff_new_pack.SOpdIA/_old 2017-12-19 10:54:59.651468520 +0100
+++ /var/tmp/diff_new_pack.SOpdIA/_new 2017-12-19 10:54:59.659468134 +0100
@@ -17,7 +17,7 @@
Name: kross-interpreters
-Version: 17.08.3
+Version: 17.12.0
Release: 0
%define kf5_version 5.26.0
# Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
++++++ kross-interpreters-17.08.3.tar.xz -> kross-interpreters-17.12.0.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kross-interpreters-17.08.3/.arcconfig
new/kross-interpreters-17.12.0/.arcconfig
--- old/kross-interpreters-17.08.3/.arcconfig 1970-01-01 01:00:00.000000000
+0100
+++ new/kross-interpreters-17.12.0/.arcconfig 2017-11-09 14:19:16.000000000
+0100
@@ -0,0 +1,3 @@
+{
+ "phabricator.uri" : "https://phabricator.kde.org/"
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kross-interpreters-17.08.3/python/cxx/Objects.hxx
new/kross-interpreters-17.12.0/python/cxx/Objects.hxx
--- old/kross-interpreters-17.08.3/python/cxx/Objects.hxx 2017-01-21
00:57:26.000000000 +0100
+++ new/kross-interpreters-17.12.0/python/cxx/Objects.hxx 2017-11-09
14:19:16.000000000 +0100
@@ -1078,7 +1078,7 @@
// TMM: added this seqref ctor for use with STL algorithms
seqref (Object& obj)
: s(dynamic_cast< SeqBase<T>&>(obj))
- , offset( NULL )
+ , offset( 0 )
, the_item(s.getItem(offset))
{}
~seqref()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kross-interpreters-17.08.3/ruby/rubyscript.cpp
new/kross-interpreters-17.12.0/ruby/rubyscript.cpp
--- old/kross-interpreters-17.08.3/ruby/rubyscript.cpp 2017-01-21
00:57:26.000000000 +0100
+++ new/kross-interpreters-17.12.0/ruby/rubyscript.cpp 2017-11-09
14:19:16.000000000 +0100
@@ -180,7 +180,7 @@
// needed to prevent infinitive loops ifour scripting call uses
e.g. callFunction
m_hasBeenSuccessFullyExecuted = true;
- VALUE mutex;
+ VALUE mutex = rb_mutex_new();
rb_mutex_lock(mutex);
VALUE args = rb_ary_new2(3);
@@ -377,7 +377,7 @@
#endif
//ruby_current_node
- VALUE mutex;
+ VALUE mutex = rb_mutex_new();
rb_mutex_lock(mutex);