Hello community, here is the log from the commit of package kjs for openSUSE:Factory checked in at 2014-03-10 12:17:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kjs (Old) and /work/SRC/openSUSE:Factory/.kjs.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kjs" Changes: -------- --- /work/SRC/openSUSE:Factory/kjs/kjs.changes 2014-02-28 16:21:26.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kjs.new/kjs.changes 2014-03-10 12:17:31.000000000 +0100 @@ -1,0 +2,8 @@ +Tue Mar 4 16:37:55 UTC 2014 - [email protected] + +- Update to 4.97.0: + * Buildsystem fixes + * For more details please see: + http://www.kde.org/announcements/announce-frameworks5-alpha2.php + +------------------------------------------------------------------- Old: ---- kjs-4.96.0.tar.xz New: ---- kjs-4.97.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kjs.spec ++++++ --- /var/tmp/diff_new_pack.x2eJJZ/_old 2014-03-10 12:17:32.000000000 +0100 +++ /var/tmp/diff_new_pack.x2eJJZ/_new 2014-03-10 12:17:32.000000000 +0100 @@ -16,12 +16,12 @@ # -%define sonum 4 +%define sonum 5 Name: kjs -Version: 4.96.0 +Version: 4.97.0 Release: 0 BuildRequires: cmake >= 2.8.12 -BuildRequires: extra-cmake-modules >= 0.0.10 +BuildRequires: extra-cmake-modules >= 0.0.11 BuildRequires: fdupes BuildRequires: kf5-filesystem BuildRequires: pcre-devel ++++++ kjs-4.96.0.tar.xz -> kjs-4.97.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjs-4.96.0/CMakeLists.txt new/kjs-4.97.0/CMakeLists.txt --- old/kjs-4.96.0/CMakeLists.txt 2014-02-06 13:04:25.000000000 +0100 +++ new/kjs-4.97.0/CMakeLists.txt 2014-03-01 12:51:13.000000000 +0100 @@ -3,20 +3,21 @@ project(KJS) # ECM setup -find_package(ECM 0.0.10 REQUIRED NO_MODULE) +find_package(ECM 0.0.11 REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) include(FeatureSummary) include(GenerateExportHeader) -include(CMakePackageConfigHelpers) +include(ECMPackageConfigHelpers) include(ECMSetupVersion) include(ECMMarkNonGuiExecutable) -set(KF5_VERSION "4.96.0") +set(KF5_VERSION "4.97.0") ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KJS VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kjs_version.h" - PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5JSConfigVersion.cmake") + PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5JSConfigVersion.cmake" + SOVERSION 5) # Dependencies include(KDEInstallDirs) @@ -51,7 +52,7 @@ # create a Config.cmake and a ConfigVersion.cmake file and install them set(CMAKECONFIG_INSTALL_DIR "${CMAKECONFIG_INSTALL_PREFIX}/KF5JS") -configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/KF5JSConfig.cmake.in" +ecm_configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/KF5JSConfig.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/KF5JSConfig.cmake" INSTALL_DESTINATION ${CMAKECONFIG_INSTALL_DIR} ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjs-4.96.0/src/kjs/kjs.cpp new/kjs-4.97.0/src/kjs/kjs.cpp --- old/kjs-4.96.0/src/kjs/kjs.cpp 2014-02-06 13:04:25.000000000 +0100 +++ new/kjs-4.97.0/src/kjs/kjs.cpp 2014-03-01 12:51:13.000000000 +0100 @@ -86,6 +86,7 @@ c[dataRead] = '\0'; UString s = c; delete[] c; + close(fd); return s; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjs-4.96.0/src/kjs/propertydescriptor.cpp new/kjs-4.97.0/src/kjs/propertydescriptor.cpp --- old/kjs-4.96.0/src/kjs/propertydescriptor.cpp 2014-02-06 13:04:25.000000000 +0100 +++ new/kjs-4.97.0/src/kjs/propertydescriptor.cpp 2014-03-01 12:51:13.000000000 +0100 @@ -1,20 +1,19 @@ /* This file is part of the KDE libraries - Copyright (C) 2012 Bernd Buschinski <[email protected]> + Copyright 2012 Bernd Buschinski <[email protected]> - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + You should have received a copy of the GNU Lesser General Public + License along with this library. If not, see <http://www.gnu.org/licenses/>. */ #include "propertydescriptor.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kjs-4.96.0/src/kjs/propertydescriptor.h new/kjs-4.97.0/src/kjs/propertydescriptor.h --- old/kjs-4.96.0/src/kjs/propertydescriptor.h 2014-02-06 13:04:25.000000000 +0100 +++ new/kjs-4.97.0/src/kjs/propertydescriptor.h 2014-03-01 12:51:13.000000000 +0100 @@ -2,19 +2,18 @@ This file is part of the KDE libraries Copyright (C) 2012 Bernd Buschinski <[email protected]> - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + You should have received a copy of the GNU Lesser General Public + License along with this library. If not, see <http://www.gnu.org/licenses/>. */ #ifndef PROPERTYDESCRIPTOR_H -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
