Hello community, here is the log from the commit of package okteta5 for openSUSE:Factory checked in at 2015-02-11 16:43:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/okteta5 (Old) and /work/SRC/openSUSE:Factory/.okteta5.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "okteta5" Changes: -------- --- /work/SRC/openSUSE:Factory/okteta5/okteta5.changes 2015-01-21 22:14:09.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.okteta5.new/okteta5.changes 2015-02-11 16:43:47.000000000 +0100 @@ -1,0 +2,7 @@ +Sun Feb 1 11:27:02 UTC 2015 - [email protected] + +- Update to KDE Applications 14.12.2 + * KDE Applications 14.12.2 + * See https://www.kde.org/announcements/announce-applications-14.12.2.php + +------------------------------------------------------------------- Old: ---- okteta-14.12.1.tar.xz New: ---- okteta-14.12.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ okteta5.spec ++++++ --- /var/tmp/diff_new_pack.j8ppm0/_old 2015-02-11 16:43:48.000000000 +0100 +++ /var/tmp/diff_new_pack.j8ppm0/_new 2015-02-11 16:43:48.000000000 +0100 @@ -1,7 +1,7 @@ # -# spec file for package okteta +# spec file for package okteta5 # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,19 +17,19 @@ Name: okteta5 +BuildRequires: attica-qt5-devel BuildRequires: cmake BuildRequires: extra-cmake-modules -BuildRequires: kf5-filesystem +BuildRequires: fdupes BuildRequires: kcmutils-devel -BuildRequires: knewstuff-devel BuildRequires: kdoctools-devel +BuildRequires: kf5-filesystem +BuildRequires: knewstuff-devel BuildRequires: kparts-devel -BuildRequires: fdupes -BuildRequires: pkgconfig(Qt5ScriptTools) +BuildRequires: update-desktop-files BuildRequires: pkgconfig(Qt5Designer) BuildRequires: pkgconfig(Qt5PrintSupport) -BuildRequires: attica-qt5-devel -BuildRequires: update-desktop-files +BuildRequires: pkgconfig(Qt5ScriptTools) Requires(post): shared-mime-info Requires(postun): shared-mime-info Conflicts: okteta @@ -37,7 +37,7 @@ License: GPL-2.0 and GFDL-1.2 Group: Development/Tools/Other Url: http://www.kde.org/ -Version: 14.12.1 +Version: 14.12.2 Release: 0 Source0: okteta-%{version}.tar.xz BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ okteta-14.12.1.tar.xz -> okteta-14.12.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-14.12.1/CMakeLists.txt new/okteta-14.12.2/CMakeLists.txt --- old/okteta-14.12.1/CMakeLists.txt 2014-12-18 00:51:38.000000000 +0100 +++ new/okteta-14.12.2/CMakeLists.txt 2015-01-29 04:18:55.000000000 +0100 @@ -55,9 +55,9 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -std=c++0x -fno-rtti") endif() -find_package(QCA2 2.1.0) -set_package_properties(QCA2 PROPERTIES DESCRIPTION "Qt Cryptographic Architecture" - URL "https://projects.kde.org/projects/kdesupport/qca" TYPE OPTIONAL +find_package(Qca-qt5 2.1.0) +set_package_properties(Qca-qt5 PROPERTIES DESCRIPTION "Qt Cryptographic Architecture" + URL "http:/download.kde.org/stable/qca-qt5" TYPE OPTIONAL PURPOSE "Needed for most of the algorithms of the checksum tool") # control build scope diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-14.12.1/cmake/modules/FindQCA2.cmake new/okteta-14.12.2/cmake/modules/FindQCA2.cmake --- old/okteta-14.12.1/cmake/modules/FindQCA2.cmake 2014-12-18 00:51:38.000000000 +0100 +++ new/okteta-14.12.2/cmake/modules/FindQCA2.cmake 1970-01-01 01:00:00.000000000 +0100 @@ -1,53 +0,0 @@ -# - Try to find QCA2 (Qt Cryptography Architecture 2) -# Once done this will define -# -# QCA2_FOUND - system has QCA2 -# QCA2_INCLUDE_DIR - the QCA2 include directory -# QCA2_LIBRARIES - the libraries needed to use QCA2 -# QCA2_DEFINITIONS - Compiler switches required for using QCA2 -# -# use pkg-config to get the directories and then use these values -# in the FIND_PATH() and FIND_LIBRARY() calls - -# Copyright (c) 2006, Michael Larouche, <[email protected]> -# Copyright (c) 2014, Friedrich W. H. Kossebau, <[email protected]> -# -# Redistribution and use is allowed according to the terms of the BSD license. -# For details see the accompanying COPYING-CMAKE-SCRIPTS file. - -if (NOT WIN32) - find_package(PkgConfig QUIET) - pkg_check_modules(PC_QCA2 QUIET qca2) - set(QCA2_DEFINITIONS ${PC_QCA2_CFLAGS_OTHER}) -endif (NOT WIN32) - -find_library(QCA2_LIBRARIES - WIN32_DEBUG_POSTFIX d - NAMES qca - HINTS ${PC_QCA2_LIBDIR} ${PC_QCA2_LIBRARY_DIRS} -) - -find_path(QCA2_INCLUDE_DIR QtCrypto - HINTS ${PC_QCA2_INCLUDEDIR} ${PC_QCA2_INCLUDE_DIRS} - PATH_SUFFIXES QtCrypto -) - -find_file(QCA2_VERSION_FILE - QtCrypto/qca_version.h - HINTS ${QCA2_INCLUDE_DIR} -) - -if(QCA2_VERSION_FILE) - file(READ ${QCA2_VERSION_FILE} QCA2_VERSION_CONTENT) - string (REGEX MATCH "QCA_VERSION_STR \".*\"\n" QCA2_VERSION_MATCH "${QCA2_VERSION_CONTENT}") - - if(QCA2_VERSION_MATCH) - string(REGEX REPLACE "QCA_VERSION_STR \"(.*)\"\n" "\\1" QCA2_VERSION ${QCA2_VERSION_MATCH}) - endif(QCA2_VERSION_MATCH) -endif(QCA2_VERSION_FILE) - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(QCA2 REQUIRED_VARS QCA2_LIBRARIES QCA2_INCLUDE_DIR - VERSION_VAR QCA2_VERSION) - -mark_as_advanced(QCA2_INCLUDE_DIR QCA2_LIBRARIES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-14.12.1/kasten/controllers/CMakeLists.txt new/okteta-14.12.2/kasten/controllers/CMakeLists.txt --- old/okteta-14.12.1/kasten/controllers/CMakeLists.txt 2014-12-18 00:51:38.000000000 +0100 +++ new/okteta-14.12.2/kasten/controllers/CMakeLists.txt 2015-01-29 04:18:55.000000000 +0100 @@ -32,11 +32,7 @@ ${OKTETA_REL_DIR}/core ) -if( QCA2_FOUND ) - include_directories( ${QCA2_INCLUDE_DIR} ) -endif( QCA2_FOUND ) - -set(HAVE_QCA2 ${QCA2_FOUND}) +set(HAVE_QCA2 ${Qca-qt5_FOUND}) configure_file( config-qca2.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-qca2.h ) set( DOCUMENTINFOCONTROLLER_SRCS @@ -72,11 +68,11 @@ view/stringsextract/stringsextracttoolviewfactory.cpp ) -if( QCA2_FOUND ) +if( Qca-qt5_FOUND ) set( QCA2CHECKSUM_SRCS view/libbytearraychecksum/algorithm/qca2bytearraychecksumalgorithm.cpp ) -endif( QCA2_FOUND ) +endif( Qca-qt5_FOUND ) set( LIBCHECKSUM_SRCS view/libbytearraychecksum/abstractbytearraychecksumalgorithm.cpp @@ -535,9 +531,9 @@ Qt5::PrintSupport Qt5::Script ) -if( QCA2_FOUND ) - target_link_libraries( ${oktetakastencontrollers_LIB} ${QCA2_LIBRARIES} ) -endif( QCA2_FOUND ) +if( Qca-qt5_FOUND ) + target_link_libraries( ${oktetakastencontrollers_LIB} qca-qt5 ) +endif( Qca-qt5_FOUND ) set_target_properties( ${oktetakastencontrollers_LIB} PROPERTIES OUTPUT_NAME ${oktetakastencontrollers_LIB_NAME} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-14.12.1/kasten/controllers/view/structures/examples/okteta/structures/classfile/metadata.desktop new/okteta-14.12.2/kasten/controllers/view/structures/examples/okteta/structures/classfile/metadata.desktop --- old/okteta-14.12.1/kasten/controllers/view/structures/examples/okteta/structures/classfile/metadata.desktop 2014-12-18 00:51:38.000000000 +0100 +++ new/okteta-14.12.2/kasten/controllers/view/structures/examples/okteta/structures/classfile/metadata.desktop 2015-01-29 04:18:55.000000000 +0100 @@ -12,6 +12,7 @@ Name[fi]=Javan .class-tiedostomuoto Name[hu]=Java .class fájlformátum Name[it]=Formato di file .class di Java +Name[ko]=Java .class 파일 형식 Name[nl]=Bestandsformaat van Java .class Name[pl]=Format plików .class Javy Name[pt]=Formato de ficheiro .class do Java @@ -25,6 +26,7 @@ Name[tr]=Java .class dosya biçimi Name[uk]=Формат файлів .class Java Name[x-test]=xxJava .class file formatxx +Name[zh_CN]=Java .class 文件格式 Name[zh_TW]=Java .class 檔案格式 Comment=still very incomplete!!! Comment[ca]=Encara està molt incomplet! @@ -34,6 +36,7 @@ Comment[fi]=vielä erittäin keskeneräinen! Comment[hu]=még mindig nagyon hiányos!!! Comment[it]=Ancora molto incompleto! +Comment[ko]=여전히 불완전합니다!!! Comment[nl]=nog steeds erg onvolledig!!! Comment[pl]=nadal bardzo nieukończone!!! Comment[pt]=ainda muito incompleto!!! @@ -47,6 +50,7 @@ Comment[tr]=hala çok eksik!!! Comment[uk]=Все ще доволі неповний! Comment[x-test]=xxstill very incomplete!!!xx +Comment[zh_CN]=仍非常不完整!!! Comment[zh_TW]=仍然不完整! X-KDE-PluginInfo-Author=Alex Richardson diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-14.12.1/kasten/controllers/view/structures/examples/okteta/structures/png/metadata.desktop new/okteta-14.12.2/kasten/controllers/view/structures/examples/okteta/structures/png/metadata.desktop --- old/okteta-14.12.1/kasten/controllers/view/structures/examples/okteta/structures/png/metadata.desktop 2014-12-18 00:51:38.000000000 +0100 +++ new/okteta-14.12.2/kasten/controllers/view/structures/examples/okteta/structures/png/metadata.desktop 2015-01-29 04:18:55.000000000 +0100 @@ -80,6 +80,7 @@ Comment[tr]=PNG dosya başlığı içeren bir test yapısı (dosya big-endian olarak ayarlanmalı) Comment[uk]=Тестова структура, що містить заголовок файла PNG (порядок байтів у файлі має бути зворотним) Comment[x-test]=xxA test structure containing the PNG file header (file must be set to big-endian)xx +Comment[zh_CN]=包含 PNG 文件头的测试结构 (文件需要设置为大端) Comment[zh_TW]=包含 PNG 檔頭的測試結構(檔案必須設定為高位元優先) X-KDE-PluginInfo-Author=Alex Richardson diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-14.12.1/kasten/controllers/view/structures/examples/okteta/structures/simple-js/metadata.desktop new/okteta-14.12.2/kasten/controllers/view/structures/examples/okteta/structures/simple-js/metadata.desktop --- old/okteta-14.12.1/kasten/controllers/view/structures/examples/okteta/structures/simple-js/metadata.desktop 2014-12-18 00:51:38.000000000 +0100 +++ new/okteta-14.12.2/kasten/controllers/view/structures/examples/okteta/structures/simple-js/metadata.desktop 2015-01-29 04:18:55.000000000 +0100 @@ -80,6 +80,7 @@ Comment[tr]=JS'de tanımlanmış sadece yapılar test ediliyor Comment[uk]=Проста перевірка структур, визначених у JS Comment[x-test]=xxJust testing structures defined in JSxx +Comment[zh_CN]=测试 JS 中定义的结构 Comment[zh_TW]=測試定義於 JS 中的結構 X-KDE-PluginInfo-Author=Alex Richardson diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-14.12.1/kasten/controllers/view/structures/examples/okteta/structures/testtest/metadata.desktop new/okteta-14.12.2/kasten/controllers/view/structures/examples/okteta/structures/testtest/metadata.desktop --- old/okteta-14.12.1/kasten/controllers/view/structures/examples/okteta/structures/testtest/metadata.desktop 2014-12-18 00:51:38.000000000 +0100 +++ new/okteta-14.12.2/kasten/controllers/view/structures/examples/okteta/structures/testtest/metadata.desktop 2015-01-29 04:18:55.000000000 +0100 @@ -13,6 +13,7 @@ Name[fi]=VHD-testi Name[hu]=VHD teszt Name[it]=Prova VHD +Name[ko]=VHD 시험 Name[nl]=VHD-test Name[pl]=Próba VHD Name[pt]=Teste de VHD diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-14.12.1/program/about.cpp new/okteta-14.12.2/program/about.cpp --- old/okteta-14.12.1/program/about.cpp 2014-12-18 00:51:38.000000000 +0100 +++ new/okteta-14.12.2/program/about.cpp 2015-01-29 04:18:55.000000000 +0100 @@ -29,7 +29,7 @@ OktetaAboutData::OktetaAboutData() : KAboutData( QStringLiteral("okteta"), i18n("Okteta"), // name - QStringLiteral("0.15.1"), + QStringLiteral("0.15.2"), i18n("Hex editor"), // description KAboutLicense::GPL_V2, i18n("Copyright 2006-2014 Friedrich W. H. Kossebau"), //copyright diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-14.12.1/program/okteta.appdata.xml new/okteta-14.12.2/program/okteta.appdata.xml --- old/okteta-14.12.1/program/okteta.appdata.xml 2014-12-18 00:51:38.000000000 +0100 +++ new/okteta-14.12.2/program/okteta.appdata.xml 2015-01-29 04:18:55.000000000 +0100 @@ -27,6 +27,7 @@ <name xml:lang="tr">Okteta</name> <name xml:lang="uk">Okteta</name> <name xml:lang="x-test">xxOktetaxx</name> + <name xml:lang="zh-CN">Okteta</name> <summary>Hex editor</summary> <summary xml:lang="ca">Editor hexadecimal</summary> <summary xml:lang="cs">Hexa editor</summary> @@ -50,6 +51,7 @@ <summary xml:lang="tr">Hex düzenleyici</summary> <summary xml:lang="uk">Шістнадцятковий редактор</summary> <summary xml:lang="x-test">xxHex editorxx</summary> + <summary xml:lang="zh-CN">十六进制编辑器</summary> <description> <p>Okteta is a simple editor for the raw data of files.</p> <p xml:lang="ca">L'Okteta és un editor senzill per les dades de fitxers.</p> @@ -95,6 +97,7 @@ <p xml:lang="tr">Özellikler:</p> <p xml:lang="uk">Можливості:</p> <p xml:lang="x-test">xxFeatures:xx</p> + <p xml:lang="zh-CN">功能:</p> <ul> <li>Values and characters shown either in two columns (the traditional display in hex editors) or in rows with the value on top of the character</li> <li xml:lang="ca">Els valors i el caràcters es mostren en dues columnes (la vista tradicional en els editors hexadecimals) o en files amb el valor a sobre del caràcter</li> @@ -319,6 +322,7 @@ <li xml:lang="sv">Med mera ...</li> <li xml:lang="uk">Та багато чого іншого…</li> <li xml:lang="x-test">xxAnd more...xx</li> + <li xml:lang="zh-CN">以及更多...</li> </ul> </description> <url type="homepage">http://userbase.kde.org/Okteta/</url> -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
