Hello community, here is the log from the commit of package karchive for openSUSE:Factory checked in at 2014-05-14 20:26:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/karchive (Old) and /work/SRC/openSUSE:Factory/.karchive.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "karchive" Changes: -------- --- /work/SRC/openSUSE:Factory/karchive/karchive.changes 2014-04-02 17:21:47.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.karchive.new/karchive.changes 2014-05-14 20:26:31.000000000 +0200 @@ -1,0 +2,9 @@ +Sun May 4 01:40:56 UTC 2014 - [email protected] + +- Update to 4.99.0 + * API improvements and cleanups + * Buildsystem fixes + * For more details please see: + http://www.kde.org/announcements/announce-frameworks5-beta2.php + +------------------------------------------------------------------- Old: ---- karchive-4.98.0.tar.xz New: ---- karchive-4.99.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ karchive.spec ++++++ --- /var/tmp/diff_new_pack.F4rJbZ/_old 2014-05-14 20:26:32.000000000 +0200 +++ /var/tmp/diff_new_pack.F4rJbZ/_new 2014-05-14 20:26:32.000000000 +0200 @@ -18,10 +18,10 @@ %define lname libKF5Archive5 Name: karchive -Version: 4.98.0 +Version: 4.99.0 Release: 0 BuildRequires: cmake >= 2.8.12 -BuildRequires: extra-cmake-modules >= 0.0.12 +BuildRequires: extra-cmake-modules >= 0.0.13 BuildRequires: fdupes BuildRequires: kf5-filesystem BuildRequires: pkgconfig(Qt5Core) >= 5.2.0 ++++++ karchive-4.98.0.tar.xz -> karchive-4.99.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/karchive-4.98.0/CMakeLists.txt new/karchive-4.99.0/CMakeLists.txt --- old/karchive-4.98.0/CMakeLists.txt 2014-03-28 19:16:02.000000000 +0100 +++ new/karchive-4.99.0/CMakeLists.txt 2014-05-04 20:54:57.000000000 +0200 @@ -2,7 +2,7 @@ project(KArchive) -find_package(ECM 0.0.12 REQUIRED NO_MODULE) +find_package(ECM 0.0.13 REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) @@ -45,7 +45,7 @@ include(ECMSetupVersion) include(ECMGenerateHeaders) -set(KF5_VERSION "4.98.0") +set(KF5_VERSION "4.99.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KARCHIVE @@ -70,7 +70,7 @@ ) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/karchive_version.h - DESTINATION ${INCLUDE_INSTALL_DIR} + DESTINATION ${KF5_INCLUDE_INSTALL_DIR} COMPONENT Devel) install(FILES diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/karchive-4.98.0/karchive.yaml new/karchive-4.99.0/karchive.yaml --- old/karchive-4.98.0/karchive.yaml 2014-03-28 19:16:02.000000000 +0100 +++ new/karchive-4.99.0/karchive.yaml 1970-01-01 01:00:00.000000000 +0100 @@ -1 +0,0 @@ -tier: 1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/karchive-4.98.0/metainfo.yaml new/karchive-4.99.0/metainfo.yaml --- old/karchive-4.98.0/metainfo.yaml 1970-01-01 01:00:00.000000000 +0100 +++ new/karchive-4.99.0/metainfo.yaml 2014-05-04 20:54:57.000000000 +0200 @@ -0,0 +1,9 @@ +maintainer: dfaure +description: File compression +tier: 1 +type: functional +platforms: + - name: All +portingAid: false +deprecated: false +release: true diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/karchive-4.98.0/src/CMakeLists.txt new/karchive-4.99.0/src/CMakeLists.txt --- old/karchive-4.98.0/src/CMakeLists.txt 2014-03-28 19:16:02.000000000 +0100 +++ new/karchive-4.99.0/src/CMakeLists.txt 2014-05-04 20:54:57.000000000 +0200 @@ -39,7 +39,7 @@ add_library(KF5::Archive ALIAS KF5Archive) target_include_directories(KF5Archive - INTERFACE "$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}/KArchive>" + INTERFACE "$<INSTALL_INTERFACE:${KF5_INCLUDE_INSTALL_DIR}/KArchive>" ) target_link_libraries(KF5Archive @@ -75,7 +75,7 @@ install(TARGETS KF5Archive EXPORT KF5ArchiveTargets - ${INSTALL_TARGETS_DEFAULT_ARGS}) + ${KF5_INSTALL_TARGETS_DEFAULT_ARGS}) if(LIBLZMA_FOUND) ecm_generate_headers(KArchive_HEADERS @@ -88,16 +88,11 @@ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/karchive_export.h ${KArchive_HEADERS} - DESTINATION ${INCLUDE_INSTALL_DIR}/KArchive + DESTINATION ${KF5_INCLUDE_INSTALL_DIR}/KArchive COMPONENT Devel) include(ECMGeneratePriFile) -ecm_generate_pri_file( - BASE_NAME KArchive - LIB_NAME KF5Archive - DEPS "core" - FILENAME_VAR PRI_FILENAME -) +ecm_generate_pri_file(BASE_NAME KArchive LIB_NAME KF5Archive DEPS "core" FILENAME_VAR PRI_FILENAME INCLUDE_INSTALL_DIR ${KF5_INCLUDE_INSTALL_DIR}/KArchive) install(FILES ${PRI_FILENAME} DESTINATION ${ECM_MKSPECS_INSTALL_DIR}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/karchive-4.98.0/src/k7zip.cpp new/karchive-4.99.0/src/k7zip.cpp --- old/karchive-4.98.0/src/k7zip.cpp 2014-03-28 19:16:02.000000000 +0100 +++ new/karchive-4.99.0/src/k7zip.cpp 2014-05-04 20:54:57.000000000 +0200 @@ -33,6 +33,10 @@ #include <time.h> // time() #include "zlib.h" +#ifndef QT_STAT_LNK +# define QT_STAT_LNK 0120000 +#endif // QT_STAT_LNK + //////////////////////////////////////////////////////////////////////// /////////////////////////// K7Zip ////////////////////////////////////// //////////////////////////////////////////////////////////////////////// diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/karchive-4.98.0/src/karchive_p.h new/karchive-4.99.0/src/karchive_p.h --- old/karchive-4.98.0/src/karchive_p.h 2014-03-28 19:16:02.000000000 +0100 +++ new/karchive-4.99.0/src/karchive_p.h 2014-05-04 20:54:57.000000000 +0200 @@ -1,3 +1,22 @@ +/* This file is part of the KDE libraries + Copyright (C) 2000-2005 David Faure <[email protected]> + Copyright (C) 2003 Leo Savernik <[email protected]> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License version 2 as published by the Free Software Foundation. + + 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + #ifndef KARCHIVE_P_H #define KARCHIVE_P_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/karchive-4.98.0/tests/CMakeLists.txt new/karchive-4.99.0/tests/CMakeLists.txt --- old/karchive-4.98.0/tests/CMakeLists.txt 2014-03-28 19:16:02.000000000 +0100 +++ new/karchive-4.99.0/tests/CMakeLists.txt 2014-05-04 20:54:57.000000000 +0200 @@ -15,7 +15,7 @@ kziptest ) -if(liblzma_found) +if(LIBLZMA_FOUND) karchive_executable_tests( k7ziptest ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/karchive-4.98.0/tests/k7ziptest.cpp new/karchive-4.99.0/tests/k7ziptest.cpp --- old/karchive-4.98.0/tests/k7ziptest.cpp 2014-03-28 19:16:02.000000000 +0100 +++ new/karchive-4.99.0/tests/k7ziptest.cpp 2014-05-04 20:54:57.000000000 +0200 @@ -27,7 +27,7 @@ QStringList::ConstIterator it = l.constBegin(); for (; it != l.constEnd(); ++it) { const KArchiveEntry *entry = dir->entry((*it)); - printf("mode=%07o %s %s %s %s%s %lld isdir=%d\n", entry->permissions(), entry->datetime().toString("yyyy-MM-dd hh:mm:ss").toLatin1().constData(), + printf("mode=%07o %s %s %s %s%s %lld isdir=%d\n", entry->permissions(), entry->date().toString("yyyy-MM-dd hh:mm:ss").toLatin1().constData(), entry->user().toLatin1().constData(), entry->group().toLatin1().constData(), path.toLatin1().constData(), (*it).toLatin1().constData(), entry->isFile() ? static_cast<const KArchiveFile *>(entry)->size() : 0, entry->isDirectory()); -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
