Hello community,

here is the log from the commit of package kjs for openSUSE:Factory checked in 
at 2020-11-19 11:51:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kjs (Old)
 and      /work/SRC/openSUSE:Factory/.kjs.new.5913 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kjs"

Thu Nov 19 11:51:18 2020 rev:84 rq:848566 version:5.76.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kjs/kjs.changes  2020-10-12 13:57:19.166166183 
+0200
+++ /work/SRC/openSUSE:Factory/.kjs.new.5913/kjs.changes        2020-11-23 
10:32:39.497503863 +0100
@@ -1,0 +2,10 @@
+Sat Nov  7 21:35:00 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.76.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.76.0
+- Changes since 5.75.0:
+  * If include is define in .h remove it if it's defined in .cpp too (scripted)
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ kjs.spec ++++++
--- /var/tmp/diff_new_pack.vNQh4Z/_old  2020-11-23 10:32:40.401504854 +0100
+++ /var/tmp/diff_new_pack.vNQh4Z/_new  2020-11-23 10:32:40.401504854 +0100
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.75
+%define _tar_path 5.76
 # 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 lang
 Name:           kjs
-Version:        5.75.0
+Version:        5.76.0
 Release:        0
 Summary:        KDE Javascript engine
 License:        LGPL-2.1-or-later


++++++ kjs-5.75.0.tar.xz -> kjs-5.76.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/CMakeLists.txt 
new/kjs-5.76.0/CMakeLists.txt
--- old/kjs-5.75.0/CMakeLists.txt       2020-10-04 20:49:24.000000000 +0200
+++ new/kjs-5.76.0/CMakeLists.txt       2020-11-07 13:11:47.000000000 +0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.75.0") # handled by release scripts
+set(KF5_VERSION "5.76.0") # handled by release scripts
 project(KJS VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.75.0  NO_MODULE)
+find_package(ECM 5.76.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.75.0/src/kjs/CompileState.cpp 
new/kjs-5.76.0/src/kjs/CompileState.cpp
--- old/kjs-5.75.0/src/kjs/CompileState.cpp     2020-10-04 20:49:24.000000000 
+0200
+++ new/kjs-5.76.0/src/kjs/CompileState.cpp     2020-11-07 13:11:47.000000000 
+0100
@@ -24,7 +24,6 @@
 #include "CompileState.h"
 #include "nodes.h"
 
-#include <wtf/Assertions.h>
 #include <wtf/Vector.h>
 
 namespace KJS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/Parser.cpp 
new/kjs-5.76.0/src/kjs/Parser.cpp
--- old/kjs-5.75.0/src/kjs/Parser.cpp   2020-10-04 20:49:24.000000000 +0200
+++ new/kjs-5.76.0/src/kjs/Parser.cpp   2020-11-07 13:11:47.000000000 +0100
@@ -26,7 +26,6 @@
 #include "lexer.h"
 #include "nodes.h"
 #include <wtf/HashSet.h>
-#include <wtf/Vector.h>
 
 #ifdef KJS_VERBOSE
 #include <stdio.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kjs-5.75.0/src/kjs/bytecode/generator/codeprinter.cpp 
new/kjs-5.76.0/src/kjs/bytecode/generator/codeprinter.cpp
--- old/kjs-5.75.0/src/kjs/bytecode/generator/codeprinter.cpp   2020-10-04 
20:49:24.000000000 +0200
+++ new/kjs-5.76.0/src/kjs/bytecode/generator/codeprinter.cpp   2020-11-07 
13:11:47.000000000 +0100
@@ -22,7 +22,6 @@
  */
 #include "codeprinter.h"
 #include <stdlib.h>
-#include <iostream>
 #include <sstream>
 #include "assert.h"
 #include <cctype>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/bytecode/generator/types.cpp 
new/kjs-5.76.0/src/kjs/bytecode/generator/types.cpp
--- old/kjs-5.75.0/src/kjs/bytecode/generator/types.cpp 2020-10-04 
20:49:24.000000000 +0200
+++ new/kjs-5.76.0/src/kjs/bytecode/generator/types.cpp 2020-11-07 
13:11:47.000000000 +0100
@@ -24,7 +24,6 @@
 #include "types.h"
 
 #include <stdlib.h>
-#include <iostream>
 #include "assert.h"
 #include <cctype>
 #include <cstdio>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/collector.cpp 
new/kjs-5.76.0/src/kjs/collector.cpp
--- old/kjs-5.75.0/src/kjs/collector.cpp        2020-10-04 20:49:24.000000000 
+0200
+++ new/kjs-5.76.0/src/kjs/collector.cpp        2020-11-07 13:11:47.000000000 
+0100
@@ -23,7 +23,6 @@
 #include "collector.h"
 
 #include <wtf/FastMalloc.h>
-#include <wtf/HashCountedSet.h>
 #include "internal.h"
 #include "list.h"
 #include "value.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/function_object.cpp 
new/kjs-5.76.0/src/kjs/function_object.cpp
--- old/kjs-5.75.0/src/kjs/function_object.cpp  2020-10-04 20:49:24.000000000 
+0200
+++ new/kjs-5.76.0/src/kjs/function_object.cpp  2020-11-07 13:11:47.000000000 
+0100
@@ -22,7 +22,6 @@
 
 #include "function_object.h"
 #include "internal.h"
-#include "function.h"
 #include "scriptfunction.h"
 #include "array_object.h"
 #include "nodes.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/internal.cpp 
new/kjs-5.76.0/src/kjs/internal.cpp
--- old/kjs-5.75.0/src/kjs/internal.cpp 2020-10-04 20:49:24.000000000 +0200
+++ new/kjs-5.76.0/src/kjs/internal.cpp 2020-11-07 13:11:47.000000000 +0100
@@ -34,7 +34,6 @@
 #include "math_object.h"
 #include "nodes.h"
 #include "number_object.h"
-#include "object.h"
 #include "object_object.h"
 #include "operations.h"
 #include "regexp_object.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/interpreter.cpp 
new/kjs-5.76.0/src/kjs/interpreter.cpp
--- old/kjs-5.75.0/src/kjs/interpreter.cpp      2020-10-04 20:49:24.000000000 
+0200
+++ new/kjs-5.76.0/src/kjs/interpreter.cpp      2020-11-07 13:11:47.000000000 
+0100
@@ -41,8 +41,6 @@
 #include "operations.h"
 #include "regexp_object.h"
 #include "string_object.h"
-#include "types.h"
-#include "value.h"
 #include "lexer.h"
 #include "json_object.h"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/lookup.cpp 
new/kjs-5.76.0/src/kjs/lookup.cpp
--- old/kjs-5.75.0/src/kjs/lookup.cpp   2020-10-04 20:49:24.000000000 +0200
+++ new/kjs-5.76.0/src/kjs/lookup.cpp   2020-11-07 13:11:47.000000000 +0100
@@ -21,7 +21,6 @@
 
 #include "lookup.h"
 
-#include <stdio.h>
 #include <string.h>
 
 #include <wtf/Assertions.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/nodes.cpp 
new/kjs-5.76.0/src/kjs/nodes.cpp
--- old/kjs-5.75.0/src/kjs/nodes.cpp    2020-10-04 20:49:24.000000000 +0200
+++ new/kjs-5.76.0/src/kjs/nodes.cpp    2020-11-07 13:11:47.000000000 +0100
@@ -24,7 +24,6 @@
 
 #include "nodes.h"
 #include "scriptfunction.h"
-#include "CompileState.h"
 
 #include <math.h>
 #include <stdio.h>
@@ -37,7 +36,6 @@
 #include "debugger.h"
 #include "function_object.h"
 #include "lexer.h"
-#include "operations.h"
 #include "package.h"
 #include "PropertyNameArray.h"
 #include <wtf/AlwaysInline.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/nodes2bytecode.cpp 
new/kjs-5.76.0/src/kjs/nodes2bytecode.cpp
--- old/kjs-5.75.0/src/kjs/nodes2bytecode.cpp   2020-10-04 20:49:24.000000000 
+0200
+++ new/kjs-5.76.0/src/kjs/nodes2bytecode.cpp   2020-11-07 13:11:47.000000000 
+0100
@@ -22,7 +22,6 @@
  *
  */
 #include "nodes2bytecode.h"
-#include "CompileState.h"
 #include <wtf/Assertions.h>
 
 #include <typeinfo>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/regexp.cpp 
new/kjs-5.76.0/src/kjs/regexp.cpp
--- old/kjs-5.75.0/src/kjs/regexp.cpp   2020-10-04 20:49:24.000000000 +0200
+++ new/kjs-5.76.0/src/kjs/regexp.cpp   2020-11-07 13:11:47.000000000 +0100
@@ -35,7 +35,6 @@
 #endif
 #if HAVE_SYS_TIME_H
 #include <sys/time.h>
-#include <sys/resource.h>
 
 static const rlim_t sWantedStackSizeLimit = 32 * 1024 * 1024;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/regexp_object.cpp 
new/kjs-5.76.0/src/kjs/regexp_object.cpp
--- old/kjs-5.75.0/src/kjs/regexp_object.cpp    2020-10-04 20:49:24.000000000 
+0200
+++ new/kjs-5.76.0/src/kjs/regexp_object.cpp    2020-11-07 13:11:47.000000000 
+0100
@@ -31,8 +31,6 @@
 #include "nodes.h"
 #include "interpreter.h"
 #include "operations.h"
-#include "internal.h"
-#include "regexp.h"
 #include "error_object.h"
 #include "lookup.h"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/string_object.cpp 
new/kjs-5.76.0/src/kjs/string_object.cpp
--- old/kjs-5.75.0/src/kjs/string_object.cpp    2020-10-04 20:49:24.000000000 
+0200
+++ new/kjs-5.76.0/src/kjs/string_object.cpp    2020-11-07 13:11:47.000000000 
+0100
@@ -22,7 +22,6 @@
 #include "string_object.h"
 #include "string_object.lut.h"
 
-#include "JSWrapperObject.h"
 #include "error_object.h"
 #include "operations.h"
 #include "PropertyNameArray.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjs-5.75.0/src/kjs/ustring.cpp 
new/kjs-5.76.0/src/kjs/ustring.cpp
--- old/kjs-5.75.0/src/kjs/ustring.cpp  2020-10-04 20:49:24.000000000 +0200
+++ new/kjs-5.76.0/src/kjs/ustring.cpp  2020-11-07 13:11:47.000000000 +0100
@@ -23,7 +23,6 @@
 
 #include "ustring.h"
 
-#include <assert.h>
 #include <stdlib.h>
 #include <stdio.h>
 #include "wtf/DisallowCType.h"
@@ -38,10 +37,8 @@
 #include "identifier.h"
 #include <math.h>
 #include "dtoa.h"
-#include "collector.h"
 #include "commonunicode.h"
 
-#include <wtf/Vector.h>
 
 using std::max;
 
_______________________________________________
openSUSE Commits mailing list -- commit@lists.opensuse.org
To unsubscribe, email commit-le...@lists.opensuse.org
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/commit@lists.opensuse.org

Reply via email to