Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kjs for openSUSE:Factory checked in 
at 2022-11-15 13:17:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kjs (Old)
 and      /work/SRC/openSUSE:Factory/.kjs.new.1597 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kjs"

Tue Nov 15 13:17:31 2022 rev:108 rq:1035406 version:5.100.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kjs/kjs.changes  2022-10-11 18:02:07.929753317 
+0200
+++ /work/SRC/openSUSE:Factory/.kjs.new.1597/kjs.changes        2022-11-15 
13:19:43.576301401 +0100
@@ -1,0 +2,11 @@
+Tue Nov  8 08:35:16 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.100.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.100.0
+- Changes since 5.99.0:
+  * Rename: use Q_OS_{FREE,NET,OPEN}BSD
+  * Fix thread stack base detection on OpenBSD
+
+-------------------------------------------------------------------

Old:
----
  kjs-5.99.0.tar.xz
  kjs-5.99.0.tar.xz.sig

New:
----
  kjs-5.100.0.tar.xz
  kjs-5.100.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kjs.spec ++++++
--- /var/tmp/diff_new_pack.FJoIMQ/_old  2022-11-15 13:19:44.416300596 +0100
+++ /var/tmp/diff_new_pack.FJoIMQ/_new  2022-11-15 13:19:44.420300592 +0100
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.99
+%define _tar_path 5.100
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without released
 Name:           kjs
-Version:        5.99.0
+Version:        5.100.0
 Release:        0
 Summary:        KDE Javascript engine
 License:        LGPL-2.1-or-later


++++++ kjs-5.99.0.tar.xz -> kjs-5.100.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.99.0/CMakeLists.txt 
new/kjs-5.100.0/CMakeLists.txt
--- old/kjs-5.99.0/CMakeLists.txt       2022-10-01 16:21:00.000000000 +0200
+++ new/kjs-5.100.0/CMakeLists.txt      2022-11-05 13:29:22.000000000 +0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.99.0") # handled by release scripts
+set(KF_VERSION "5.100.0") # handled by release scripts
 project(KJS VERSION ${KF_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.99.0  NO_MODULE)
+find_package(ECM 5.100.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kjs-5.99.0/po/ca@valencia/docs/kjs5/man-kjs5.1.docbook 
new/kjs-5.100.0/po/ca@valencia/docs/kjs5/man-kjs5.1.docbook
--- old/kjs-5.99.0/po/ca@valencia/docs/kjs5/man-kjs5.1.docbook  2022-10-01 
16:21:00.000000000 +0200
+++ new/kjs-5.100.0/po/ca@valencia/docs/kjs5/man-kjs5.1.docbook 2022-11-05 
13:29:22.000000000 +0100
@@ -95,7 +95,7 @@
 <para
 ><command
 >kjs</command
-> és un motor d'ECMAScript/JavaScript per KDE. </para>
+> és un motor d'ECMAScript/JavaScript per a KDE. </para>
 </refsect1>
 
 <refsect1>
@@ -182,11 +182,11 @@
 >, com molts altres intèrprets, quan es crida sense paràmetres utilitza un 
 >editor de línies per a introduir sentències, mostrant <literallayout
 >JS
 ></literallayout
->. Per a eixir, escriviu <command
+>. Per a eixir de l'editor de línies, escriviu <command
 >quit()</command
 > o premeu <command
 >Ctrl+D</command
-> a l'editor de línies. </para>
+>. </para>
 </refsect1>
 
 <refsect1>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.99.0/src/kjs/collector.cpp 
new/kjs-5.100.0/src/kjs/collector.cpp
--- old/kjs-5.99.0/src/kjs/collector.cpp        2022-10-01 16:21:00.000000000 
+0200
+++ new/kjs-5.100.0/src/kjs/collector.cpp       2022-11-05 13:29:22.000000000 
+0100
@@ -512,8 +512,13 @@
     static pthread_t stackThread;
     pthread_t thread = pthread_self();
     if (stackBase == nullptr || thread != stackThread) {
+#if defined(Q_OS_OPENBSD)
+        stack_t ss;
+        pthread_stackseg_np(thread, &ss);
+        stackBase = (void*)((size_t) ss.ss_sp - ss.ss_size);
+#else
         pthread_attr_t sattr;
-#if HAVE_PTHREAD_NP_H || defined(__NetBSD__)
+#if HAVE_PTHREAD_NP_H || defined(Q_OS_NETBSD)
         // e.g. on FreeBSD 5.4, neund...@kde.org
         // also on NetBSD 3 and 4, raphael.langerho...@kdemail.net
         // HIGHLY RECOMMENDED by manpage to allocate storage, avoids
@@ -529,6 +534,7 @@
         pthread_attr_getstack(&sattr, &stackBase, &stackSize);
         stackBase = (char *)stackBase + stackSize;      // a matter of 
interpretation, apparently...
         pthread_attr_destroy(&sattr);
+#endif  // OpenBSD
         assert(stackBase);
         stackThread = thread;
     }

Reply via email to