diff --git a/.kde-runtime.metadata b/.kde-runtime.metadata new file mode 100644 index 0000000..3251af3 --- /dev/null +++ b/.kde-runtime.metadata @@ -0,0 +1 @@ +1d472ceff3a38ff778803817b9c0eeb5b1880db6 SOURCES/kde-runtime-4.10.5.tar.xz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/kde-runtime-4.10-kglobalaccel-crash.patch b/SOURCES/kde-runtime-4.10-kglobalaccel-crash.patch new file mode 100644 index 0000000..385d058 --- /dev/null +++ b/SOURCES/kde-runtime-4.10-kglobalaccel-crash.patch @@ -0,0 +1,21 @@ +commit a99135656453d613f62b568adb1be88ef5425ed6 +Author: Dan Vrátil +Date: Fri Oct 11 18:30:22 2013 +0200 + + Fix crash when activeGlobalShortcutContext is called with invalid component + +diff --git a/kglobalaccel/kglobalacceld.cpp b/kglobalaccel/kglobalacceld.cpp +index 53ac5b0..3e22893 100644 +--- a/kglobalaccel/kglobalacceld.cpp ++++ b/kglobalaccel/kglobalacceld.cpp +@@ -381,8 +381,8 @@ void KGlobalAccelD::activateGlobalShortcutContext( + { + KdeDGlobalAccel::Component *const comp = + GlobalShortcutsRegistry::self()->getComponent(component); +- +- comp->activateGlobalShortcutContext(uniqueName); ++ if (comp) ++ comp->activateGlobalShortcutContext(uniqueName); + } + + diff --git a/SOURCES/kde-runtime-4.10.4-trash-readonly.patch b/SOURCES/kde-runtime-4.10.4-trash-readonly.patch new file mode 100644 index 0000000..17714dd --- /dev/null +++ b/SOURCES/kde-runtime-4.10.4-trash-readonly.patch @@ -0,0 +1,11 @@ +--- a/kioslave/trash/kio_trash.cpp ++++ a/kioslave/trash/kio_trash.cpp +@@ -416,7 +416,7 @@ bool TrashProtocol::createUDSEntry( const QString& physicalPath, const QString& + } + mode_t type = buff.st_mode & S_IFMT; // extract file type + mode_t access = buff.st_mode & 07777; // extract permissions +- access &= 07555; // make it readonly, since it's in the trashcan ++ //access &= 07555; // make it readonly, since it's in the trashcan + Q_ASSERT(!internalFileName.isEmpty()); + entry.insert( KIO::UDSEntry::UDS_NAME, internalFileName ); // internal filename, like "0-foo" + entry.insert( KIO::UDSEntry::UDS_DISPLAY_NAME, displayFileName ); // user-visible filename, like "foo" diff --git a/SOURCES/kde-runtime-4.7.90-nepomuk_onlyshowin_kde.patch b/SOURCES/kde-runtime-4.7.90-nepomuk_onlyshowin_kde.patch new file mode 100644 index 0000000..3e34bcf --- /dev/null +++ b/SOURCES/kde-runtime-4.7.90-nepomuk_onlyshowin_kde.patch @@ -0,0 +1,8 @@ +diff -up kde-runtime-4.7.90/nepomuk/controller/nepomukcontroller.desktop.onlyshowin_kde kde-runtime-4.7.90/nepomuk/controller/nepomukcontroller.desktop +--- kde-runtime-4.7.90/nepomuk/controller/nepomukcontroller.desktop.onlyshowin_kde 2011-12-02 15:17:38.000000000 -0600 ++++ kde-runtime-4.7.90/nepomuk/controller/nepomukcontroller.desktop 2011-12-09 14:40:33.763287346 -0600 +@@ -98,3 +98,4 @@ X-DBUS-StartupType=Unique + X-KDE-StartupNotify=false + X-KDE-UniqueApplet=true + X-KDE-autostart-condition=nepomukserverrc:Basic Settings:Start Nepomuk:true ++OnlyShowIn=KDE; diff --git a/SOURCES/kde-runtime-4.9.0-installdbgsymbols.patch b/SOURCES/kde-runtime-4.9.0-installdbgsymbols.patch new file mode 100644 index 0000000..f648de5 --- /dev/null +++ b/SOURCES/kde-runtime-4.9.0-installdbgsymbols.patch @@ -0,0 +1,27 @@ +diff -up kde-runtime-4.9.0/drkonqi/doc/examples/installdbgsymbols_fedora.sh.installdbgsymbols kde-runtime-4.9.0/drkonqi/doc/examples/installdbgsymbols_fedora.sh +--- kde-runtime-4.9.0/drkonqi/doc/examples/installdbgsymbols_fedora.sh.installdbgsymbols 2012-05-22 18:57:38.000000000 -0500 ++++ kde-runtime-4.9.0/drkonqi/doc/examples/installdbgsymbols_fedora.sh 2012-08-07 20:00:11.506028183 -0500 +@@ -27,12 +27,12 @@ run_in_terminal() + mkfifo $fifo + + # start terminal +- konsole -e sh -c "echo \$\$ > $fifo; $1; exit_status=\$?; sleep 1; rm $fifo; echo \$exit_status > $fifo" & ++ konsole -e sh -c "echo \$\$ > $fifo; set -x ; $1; exit_status=\$?; sleep 10; rm $fifo; echo \$exit_status > $fifo" & + + # wait for it to finish + local pid=`cat $fifo` + while [ "$?" = "0" ]; do +- sleep 1 ++ sleep 10 + kill -0 $pid 2>/dev/null + done + +@@ -80,7 +80,7 @@ done + # filter out duplicates + packages=`echo "$packages" | tr " " "\n" | sort | uniq | tr "\n" " "` + +-run_in_terminal "su -c \"debuginfo-install $packages\"" ++run_in_terminal "pkexec debuginfo-install $packages" + + if [ "$?" = "1" ]; then + exit 3 diff --git a/SOURCES/kde-runtime-4.9.2-webkit.patch b/SOURCES/kde-runtime-4.9.2-webkit.patch new file mode 100644 index 0000000..5f88a9d --- /dev/null +++ b/SOURCES/kde-runtime-4.9.2-webkit.patch @@ -0,0 +1,153 @@ +diff -up kde-runtime-4.9.2/drkonqi/CMakeLists.txt.webkit kde-runtime-4.9.2/drkonqi/CMakeLists.txt +--- kde-runtime-4.9.2/drkonqi/CMakeLists.txt.webkit 2012-09-28 02:16:14.000000000 +0200 ++++ kde-runtime-4.9.2/drkonqi/CMakeLists.txt 2012-10-11 15:28:21.060908131 +0200 +@@ -76,12 +76,14 @@ kde4_add_ui_files(drkonqi_SRCS + # Comment this out for release. + #add_definitions(-DBACKTRACE_PARSER_DEBUG) + ++# no webkit ++set (KDERUNTIME_NO_WEBKIT TRUE) ++add_definitions(-DKDERUNTIME_NO_WEBKIT) ++ + kde4_add_executable(drkonqi ${drkonqi_SRCS}) + + target_link_libraries(drkonqi + ${KDE4_KIO_LIBS} +- ${QT_QTWEBKIT_LIBRARY} +- ${KDE4_KDEWEBKIT_LIBRARY} + ${KDEPIMLIBS_KXMLRPCCLIENT_LIBRARY} + drkonqi_backtrace_parser + ) +diff -up kde-runtime-4.9.2/drkonqi/reportassistantpages_bugzilla.cpp.webkit kde-runtime-4.9.2/drkonqi/reportassistantpages_bugzilla.cpp +--- kde-runtime-4.9.2/drkonqi/reportassistantpages_bugzilla.cpp.webkit 2012-09-28 02:16:14.000000000 +0200 ++++ kde-runtime-4.9.2/drkonqi/reportassistantpages_bugzilla.cpp 2012-10-11 15:28:21.061908093 +0200 +@@ -46,7 +46,11 @@ + + /* Unhandled error dialog includes */ + #include ++#ifdef KDERUNTIME_NO_WEBKIT ++#include ++#else + #include ++#endif + #include + #include + #include +@@ -774,8 +778,11 @@ UnhandledErrorDialog::UnhandledErrorDial + + setAttribute(Qt::WA_DeleteOnClose); + ++#ifdef KDERUNTIME_NO_WEBKIT ++ QTextBrowser * htmlView = new QTextBrowser(this); ++#else + KWebView * htmlView = new KWebView(this); +- ++#endif + QLabel * iconLabel = new QLabel(this); + iconLabel->setFixedSize(32, 32); + iconLabel->setPixmap(KIcon("dialog-warning").pixmap(32, 32)); +diff -up kde-runtime-4.9.2/kioslave/thumbnail/CMakeLists.txt.webkit kde-runtime-4.9.2/kioslave/thumbnail/CMakeLists.txt +--- kde-runtime-4.9.2/kioslave/thumbnail/CMakeLists.txt.webkit 2012-09-28 02:16:14.000000000 +0200 ++++ kde-runtime-4.9.2/kioslave/thumbnail/CMakeLists.txt 2012-10-11 15:28:21.061908093 +0200 +@@ -76,18 +76,6 @@ install(TARGETS textthumbnail DESTINATIO + + ########### next target ############### + +-if(NOT WINCE) +-set(htmlthumbnail_PART_SRCS htmlcreator.cpp) +- +-kde4_add_plugin(htmlthumbnail ${htmlthumbnail_PART_SRCS}) +- +-target_link_libraries(htmlthumbnail ${KDE4_KDEWEBKIT_LIBS}) +- +-install(TARGETS htmlthumbnail DESTINATION ${PLUGIN_INSTALL_DIR}) +-endif(NOT WINCE) +- +-########### next target ############### +- + if(NOT WIN32) + set(djvuthumbnail_PART_SRCS djvucreator.cpp) + +diff -up kde-runtime-4.9.2/plasma/declarativeimports/graphicswidgets/CMakeLists.txt.webkit kde-runtime-4.9.2/plasma/declarativeimports/graphicswidgets/CMakeLists.txt +--- kde-runtime-4.9.2/plasma/declarativeimports/graphicswidgets/CMakeLists.txt.webkit 2012-09-28 02:16:15.000000000 +0200 ++++ kde-runtime-4.9.2/plasma/declarativeimports/graphicswidgets/CMakeLists.txt 2012-10-11 15:28:21.062908056 +0200 +@@ -1,5 +1,8 @@ + project(graphicswidgetsbindings) + ++set (PLASMA_NO_KDEWEBKIT TRUE) ++add_definitions(-DPLASMA_NO_KDEWEBKIT) ++ + set(graphicswidgetsbindings_SRCS + graphicswidgetsbindingsplugin.cpp + declarativetabbar.cpp +diff -up kde-runtime-4.9.2/plasma/declarativeimports/graphicswidgets/graphicswidgetsbindingsplugin.cpp.webkit kde-runtime-4.9.2/plasma/declarativeimports/graphicswidgets/graphicswidgetsbindingsplugin.cpp +--- kde-runtime-4.9.2/plasma/declarativeimports/graphicswidgets/graphicswidgetsbindingsplugin.cpp.webkit 2012-09-28 02:16:15.000000000 +0200 ++++ kde-runtime-4.9.2/plasma/declarativeimports/graphicswidgets/graphicswidgetsbindingsplugin.cpp 2012-10-11 15:30:57.913033942 +0200 +@@ -47,8 +47,9 @@ + #include + #include + #include ++#ifndef PLASMA_NO_KDEWEBKIT + #include +- ++#endif + #include "declarativetabbar.h" + + SignalPlotter::SignalPlotter(QGraphicsItem *parent) +@@ -99,7 +100,9 @@ void GraphicsWidgetsBindingsPlugin::regi + qmlRegisterType(uri, 0, 1, "ToolButton"); + qmlRegisterType(uri, 0, 1, "TreeView"); + qmlRegisterType(uri, 0, 1, "VideoWidget"); ++#ifndef PLASMA_NO_KDEWEBKIT + qmlRegisterType(uri, 0, 1, "WebView"); ++#endif + } + + +diff -up kde-runtime-4.9.2/plasma/scriptengines/javascript/CMakeLists.txt.webkit kde-runtime-4.9.2/plasma/scriptengines/javascript/CMakeLists.txt +--- kde-runtime-4.9.2/plasma/scriptengines/javascript/CMakeLists.txt.webkit 2012-09-28 02:16:15.000000000 +0200 ++++ kde-runtime-4.9.2/plasma/scriptengines/javascript/CMakeLists.txt 2012-10-11 15:28:21.062908056 +0200 +@@ -7,6 +7,9 @@ if(KDE_PLATFORM_FEATURE_BINARY_COMPATIBL + set(PLASMA_NO_KIO TRUE) + endif(KDE_PLATFORM_FEATURE_BINARY_COMPATIBLE_FEATURE_REDUCTION) + ++set (PLASMA_NO_KDEWEBKIT TRUE) ++add_definitions(-DPLASMA_NO_KDEWEBKIT) ++ + set(simple_javascript_engine_SRCS + common/extension_launchapp.cpp + common/extension_io.cpp +diff -up kde-runtime-4.9.2/plasma/scriptengines/javascript/simplebindings/uiloader.cpp.webkit kde-runtime-4.9.2/plasma/scriptengines/javascript/simplebindings/uiloader.cpp +--- kde-runtime-4.9.2/plasma/scriptengines/javascript/simplebindings/uiloader.cpp.webkit 2012-09-28 02:16:15.000000000 +0200 ++++ kde-runtime-4.9.2/plasma/scriptengines/javascript/simplebindings/uiloader.cpp 2012-10-11 15:28:21.063908019 +0200 +@@ -49,7 +49,9 @@ + #include + #include + #include ++#ifndef PLASMA_NO_KDEWEBKIT + #include ++#endif + #include + + +@@ -78,7 +80,9 @@ QGraphicsWidget *createTextEdit(QGraphic + QGraphicsWidget *createToolButton(QGraphicsWidget *parent) { return new Plasma::ToolButton(parent); } + QGraphicsWidget *createTreeView(QGraphicsWidget *parent) { return new Plasma::TreeView(parent); } + QGraphicsWidget *createVideoWidget(QGraphicsWidget *parent) { return new Plasma::VideoWidget(parent); } ++#ifndef PLASMA_NO_KDEWEBKIT + QGraphicsWidget *createWebView(QGraphicsWidget *parent) { return new Plasma::WebView(parent); } ++#endif + QGraphicsWidget *createGraphicsWidget(QGraphicsWidget *parent) { return new QGraphicsWidget(parent); } + + UiLoader::UiLoader() +@@ -108,8 +112,10 @@ UiLoader::UiLoader() + m_widgetCtors.insert("ToolButton", createToolButton); + m_widgetCtors.insert("TreeView", createTreeView); + m_widgetCtors.insert("VideoWidget", createVideoWidget); ++#ifndef PLASMA_NO_KDEWEBKIT + m_widgetCtors.insert("WebView", createWebView); + m_widgetCtors.insert("GraphicsWidget", createWebView); ++#endif + } + + UiLoader::~UiLoader() diff --git a/SOURCES/kde-runtime-4.9.98-kde#310486.patch b/SOURCES/kde-runtime-4.9.98-kde#310486.patch new file mode 100644 index 0000000..6b3df11 --- /dev/null +++ b/SOURCES/kde-runtime-4.9.98-kde#310486.patch @@ -0,0 +1,75 @@ +diff -ur kde-runtime-4.9.98/plasma/declarativeimports/plasmacomponents/CMakeLists.txt kde-runtime-4.9.98-kde#310486/plasma/declarativeimports/plasmacomponents/CMakeLists.txt +--- kde-runtime-4.9.98/plasma/declarativeimports/plasmacomponents/CMakeLists.txt 2012-12-17 15:24:58.000000000 +0100 ++++ kde-runtime-4.9.98-kde#310486/plasma/declarativeimports/plasmacomponents/CMakeLists.txt 2013-01-27 20:01:31.000000000 +0100 +@@ -21,7 +21,7 @@ + + + add_library(plasmacomponentsplugin SHARED ${plasmacomponents_SRCS}) +-target_link_libraries(plasmacomponentsplugin ${QT_QTCORE_LIBRARY} ${QT_QTDECLARATIVE_LIBRARY} ${QT_QTGUI_LIBRARY} ${KDE4_KDEUI_LIBRARY} ${KDECLARATIVE_LIBRARIES} ${KDE4_PLASMA_LIBS}) ++target_link_libraries(plasmacomponentsplugin ${QT_QTCORE_LIBRARY} ${QT_QTDECLARATIVE_LIBRARY} ${QT_QTGUI_LIBRARY} ${KDE4_KDEUI_LIBRARY} ${KDE4_PLASMA_LIBS}) + + install(TARGETS plasmacomponentsplugin DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/plasma/components) + +diff -ur kde-runtime-4.9.98/plasma/declarativeimports/plasmacomponents/fullscreenwindow.cpp kde-runtime-4.9.98-kde#310486/plasma/declarativeimports/plasmacomponents/fullscreenwindow.cpp +--- kde-runtime-4.9.98/plasma/declarativeimports/plasmacomponents/fullscreenwindow.cpp 2012-12-17 15:24:58.000000000 +0100 ++++ kde-runtime-4.9.98-kde#310486/plasma/declarativeimports/plasmacomponents/fullscreenwindow.cpp 2013-01-27 22:47:38.000000000 +0100 +@@ -35,8 +35,8 @@ + + #include + #include +- +-#include ++#include ++#include + + #include + #include +@@ -124,9 +124,14 @@ + } + + //Try to figure out the path of the dialog component +- const QString target = KDeclarative::componentsTarget(); ++ QString target = getenv("KDE_PLASMA_COMPONENTS_PLATFORM"); ++ if (target.isEmpty()) { ++ KConfigGroup cg(KSharedConfig::openConfig("kdeclarativerc"), "Components-platform"); ++ target = cg.readEntry("name", "desktop"); ++ } ++ + QString filePath; +- if (target != KDeclarative::defaultComponentsTarget()) { ++ if (target != "desktop") { + const QString file = "platformimports/" % target % "/org/kde/plasma/components/" % componentName % ".qml"; + filePath = KStandardDirs::locate("module", file); + } +diff -ur kde-runtime-4.9.98/plasma/declarativeimports/plasmacomponents/plasmacomponentsplugin.cpp kde-runtime-4.9.98-kde#310486/plasma/declarativeimports/plasmacomponents/plasmacomponentsplugin.cpp +--- kde-runtime-4.9.98/plasma/declarativeimports/plasmacomponents/plasmacomponentsplugin.cpp 2012-12-17 15:24:58.000000000 +0100 ++++ kde-runtime-4.9.98-kde#310486/plasma/declarativeimports/plasmacomponents/plasmacomponentsplugin.cpp 2013-01-27 22:47:47.000000000 +0100 +@@ -27,11 +27,10 @@ + #include "qrangemodel.h" + + #include ++#include + #include + #include + +-#include +- + #include "enums.h" + #include "qmenu.h" + #include "qmenuitem.h" +@@ -91,8 +90,13 @@ + Q_ASSERT(uri == QLatin1String("org.kde.plasma.components")); + + //platform specific c++ components +- const QString target = KDeclarative::componentsTarget(); +- if (target == KDeclarative::defaultComponentsTarget()) { ++ QString target = getenv("KDE_PLASMA_COMPONENTS_PLATFORM"); ++ if (target.isEmpty()) { ++ KConfigGroup cg(KSharedConfig::openConfig("kdeclarativerc"), "Components-platform"); ++ target = cg.readEntry("name", "desktop"); ++ } ++ ++ if (target == "desktop") { + qmlRegisterType(uri, 0, 1, "Menu"); + qmlRegisterType(uri, 0, 1, "MenuItem"); + } else { diff --git a/SOURCES/kde-runtime-mouseeventlistener.patch b/SOURCES/kde-runtime-mouseeventlistener.patch new file mode 100644 index 0000000..32125d1 --- /dev/null +++ b/SOURCES/kde-runtime-mouseeventlistener.patch @@ -0,0 +1,14 @@ +diff -Naur kde-runtime-4.10.3.orig/plasma/declarativeimports/qtextracomponents/mouseeventlistener.cpp kde-runtime-4.10.3/plasma/declarativeimports/qtextracomponents/mouseeventlistener.cpp +--- kde-runtime-4.10.3.orig/plasma/declarativeimports/qtextracomponents/mouseeventlistener.cpp 2013-06-10 23:26:05.000000000 +0200 ++++ kde-runtime-4.10.3/plasma/declarativeimports/qtextracomponents/mouseeventlistener.cpp 2013-06-12 00:19:53.000000000 +0200 +@@ -160,6 +160,10 @@ + return false; + } + ++ if (m_lastEvent == event) { ++ return QDeclarativeItem::sceneEventFilter(item, event); ++ } ++ + m_lastEvent = event; + + switch (event->type()) { diff --git a/SOURCES/kdebase-runtime-4.1.x-searchproviders-shortcuts.patch b/SOURCES/kdebase-runtime-4.1.x-searchproviders-shortcuts.patch new file mode 100644 index 0000000..c5fd0d4 --- /dev/null +++ b/SOURCES/kdebase-runtime-4.1.x-searchproviders-shortcuts.patch @@ -0,0 +1,22 @@ +diff -up kdebase-runtime-4.0.80/kurifilter-plugins/ikws/searchproviders/bugzilla.desktop.orig kdebase-runtime-4.0.80/kurifilter-plugins/ikws/searchproviders/bugzilla.desktop +--- kdebase-runtime-4.0.80/kurifilter-plugins/ikws/searchproviders/bugzilla.desktop.orig 2008-06-05 13:19:46.000000000 +0200 ++++ kdebase-runtime-4.0.80/kurifilter-plugins/ikws/searchproviders/bugzilla.desktop 2008-06-05 13:21:39.000000000 +0200 +@@ -0,0 +1,7 @@ ++[Desktop Entry] ++Hidden=false ++Type=Service ++Name=Red Hat bug tracking system ++ServiceTypes=SearchProvider ++Keys=rhbug,bz ++Query=http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=\\1 +diff -up kdebase-runtime-4.0.80/kurifilter-plugins/ikws/searchproviders/fedora.desktop.orig kdebase-runtime-4.0.5/kurifilter-plugins/ikws/searchproviders/fedora.desktop +--- kdebase-runtime-4.0.80/kurifilter-plugins/ikws/searchproviders/fedora.desktop.orig 2008-06-05 13:20:19.000000000 +0200 ++++ kdebase-runtime-4.0.80/kurifilter-plugins/ikws/searchproviders/fedora.desktop 2008-06-05 13:20:47.000000000 +0200 +@@ -0,0 +1,7 @@ ++[Desktop Entry] ++Hidden=false ++Keys=fp,fedora ++Name=fedoraproject ++Query=http://fedoraproject.org/wiki/?action=fullsearch&context=180&value=\\{@}&titlesearch=Titles ++ServiceTypes=SearchProvider ++Type=Service diff --git a/SOURCES/kdebase-runtime-4.3.3-home_onlyshowin_kde.patch b/SOURCES/kdebase-runtime-4.3.3-home_onlyshowin_kde.patch new file mode 100644 index 0000000..f82250f --- /dev/null +++ b/SOURCES/kdebase-runtime-4.3.3-home_onlyshowin_kde.patch @@ -0,0 +1,9 @@ +diff -up kdebase-runtime-4.3.3/kioslave/desktop/Home.desktop.home_onlyshowin_kde kdebase-runtime-4.3.3/kioslave/desktop/Home.desktop +--- kdebase-runtime-4.3.3/kioslave/desktop/Home.desktop.home_onlyshowin_kde 2009-10-02 03:18:57.000000000 -0500 ++++ kdebase-runtime-4.3.3/kioslave/desktop/Home.desktop 2009-11-05 08:16:19.637144099 -0600 +@@ -174,4 +174,4 @@ GenericName[zh_TW]=個人檔案 + URL[$e]=$HOME + Icon=user-home + Type=Link +- ++OnlyShowIn=KDE; diff --git a/SOURCES/kdebase-runtime-4.3.4-man-overrides.patch b/SOURCES/kdebase-runtime-4.3.4-man-overrides.patch new file mode 100644 index 0000000..45ee918 --- /dev/null +++ b/SOURCES/kdebase-runtime-4.3.4-man-overrides.patch @@ -0,0 +1,11 @@ +diff -up kdebase-runtime-4.3.4/kioslave/man/kio_man.cpp.manpath kdebase-runtime-4.3.4/kioslave/man/kio_man.cpp +--- kdebase-runtime-4.3.4/kioslave/man/kio_man.cpp.manpath 2011-02-03 18:30:23.000000000 +0100 ++++ kdebase-runtime-4.3.4/kioslave/man/kio_man.cpp 2011-02-03 18:27:09.000000000 +0100 +@@ -902,6 +902,7 @@ void MANProtocol::constructPath(QStringL + + // Default paths + static const char * const manpaths[] = { ++ "/usr/share/man/overrides", + "/usr/X11/man", + "/usr/X11R6/man", + "/usr/man", diff --git a/SOURCES/kdebase-runtime-4.5.3-htsearch.patch b/SOURCES/kdebase-runtime-4.5.3-htsearch.patch new file mode 100644 index 0000000..ceb89d2 --- /dev/null +++ b/SOURCES/kdebase-runtime-4.5.3-htsearch.patch @@ -0,0 +1,12 @@ +diff -up kdebase-runtime-4.5.3/khelpcenter/searchhandlers/khc_htsearch.pl.htsearch kdebase-runtime-4.5.3/khelpcenter/searchhandlers/khc_htsearch.pl +--- kdebase-runtime-4.5.3/khelpcenter/searchhandlers/khc_htsearch.pl.htsearch 2009-09-23 14:21:09.000000000 -0500 ++++ kdebase-runtime-4.5.3/khelpcenter/searchhandlers/khc_htsearch.pl 2010-11-12 09:22:04.000000000 -0600 +@@ -8,7 +8,7 @@ use Getopt::Long; + use open IO => ':utf8'; + use open ':std'; + +-my $htsearchpath="/srv/www/cgi-bin/htsearch"; ++my $htsearchpath="/usr/bin/htsearch"; + my $config; + my $format; + my $method; diff --git a/SOURCES/kdebase-runtime-4.5.95-compiz.patch b/SOURCES/kdebase-runtime-4.5.95-compiz.patch new file mode 100644 index 0000000..eb7cfd2 --- /dev/null +++ b/SOURCES/kdebase-runtime-4.5.95-compiz.patch @@ -0,0 +1,13 @@ +diff -ur kdebase-runtime-4.5.95/kcontrol/componentchooser/windowmanagers/compiz.desktop kdebase-runtime-4.5.95-compiz/kcontrol/componentchooser/windowmanagers/compiz.desktop +--- kdebase-runtime-4.5.95/kcontrol/componentchooser/windowmanagers/compiz.desktop 2010-11-05 10:46:36.000000000 +0000 ++++ kdebase-runtime-4.5.95-compiz/kcontrol/componentchooser/windowmanagers/compiz.desktop 2011-01-20 09:57:24.134453897 +0000 +@@ -78,7 +78,7 @@ + Name[x-test]=xxCompizxx + Name[zh_CN]=Compiz + Name[zh_TW]=Compiz +-Exec=compiz ccp ++Exec=compiz-manager + TryExec=compiz +-X-KDE-WindowManagerConfigure=simple-ccsm ++X-KDE-WindowManagerConfigure=ccsm + X-KDE-WindowManagerRestartArgument=--replace diff --git a/SPECS/kde-runtime.spec b/SPECS/kde-runtime.spec new file mode 100644 index 0000000..01fabcf --- /dev/null +++ b/SPECS/kde-runtime.spec @@ -0,0 +1,1226 @@ +%if 0%{?fedora} +%define flags 1 +%define webkit 1 +%endif + +Name: kde-runtime +Summary: KDE Runtime +Version: 4.10.5 +Release: 2%{?dist} + +# http://techbase.kde.org/Policies/Licensing_Policy +License: LGPLv2+ and GPLv2+ +URL: http://www.kde.org/ +%global revision %(echo %{version} | cut -d. -f3) +%if %{revision} >= 50 +%global stable unstable +%else +%global stable stable +%endif +Source0: http://download.kde.org/%{stable}/%{version}/src/kde-runtime-%{version}.tar.xz + +# add shortcuts for search provider +Patch1: kdebase-runtime-4.1.x-searchproviders-shortcuts.patch + +# add OnlyShowIn=KDE to Desktop/Home.desktop (like trash.desktop) +Patch6: kdebase-runtime-4.3.3-home_onlyshowin_kde.patch + +# correct path for htsearch +Patch7: kdebase-runtime-4.5.3-htsearch.patch + +# Launch compiz via compiz-manager so we get window decorations and +# other such decadent luxuries (AdamW 2011/01) +Patch8: kdebase-runtime-4.5.95-compiz.patch + +# add overrides in default manpath +Patch9: kdebase-runtime-4.3.4-man-overrides.patch + +# https://bugs.kde.org/show_bug.cgi?id=310486 +# revert the main part of: +# http://commits.kde.org/kde-runtime/deee161a42efda74965ca4aab7d79fb7fb375352 +# (Upstream doesn't like this workaround.) +Patch10: kde-runtime-4.9.98-kde#310486.patch + +# disable making files read only when moving them into trash +# (Upstream wouldn't accept this) +Patch11: kde-runtime-4.10.4-trash-readonly.patch + +## upstreamable patches +# make nepomuk menu items (with oxygen-only icons atm) OnlyShowIn=KDE; +Patch50: kde-runtime-4.7.90-nepomuk_onlyshowin_kde.patch + +# make installdbgsymbols.sh use pkexec instead of su +# increase some timeouts in an effort to see (some) errors before close +Patch51: kde-runtime-4.9.0-installdbgsymbols.patch + +# avoid X3 mouse events +# https://bugs.kde.org/show_bug.cgi?id=316546 +Patch52: kde-runtime-mouseeventlistener.patch + +## upstream patches +# upstreamed patch for RHBZ#1018207 +Patch100: kde-runtime-4.10-kglobalaccel-crash.patch + +# rhel patches +Patch300: kde-runtime-4.9.2-webkit.patch + +Obsoletes: kdebase-runtime < 4.7.97-10 +Provides: kdebase-runtime = %{version}-%{release} +Obsoletes: kdebase4-runtime < %{version}-%{release} +Provides: kdebase4-runtime = %{version}-%{release} + +Obsoletes: nepomukcontroller < 1:0.2 +Provides: nepomukcontroller = 1:0.2-1 + +# knotify4 provides dbus service org.freedesktop.Notifications too +Provides: desktop-notification-daemon + +%{?_kde4_macros_api:Requires: kde4-macros(api) = %{_kde4_macros_api} } +# http://bugzilla.redhat.com/794958 +Requires: dbus-x11 +%ifnarch s390 s390x +Requires: eject +%endif +Requires: %{name}-libs%{?_isa} = %{version}-%{release} +Requires: %{name}-drkonqi = %{version}-%{release} +%if 0%{?flags} +Requires: %{name}-flags = %{version}-%{release} +%endif +Requires: nepomuk-core >= %{version} +# Nepomuk requires pdftotext for indexing PDFs +Requires: poppler-utils +# needed by windowsexethumbnail +Requires: icoutils + +# ensure default/fallback icon theme present +# beware of bootstrapping, there be dragons +Requires: oxygen-icon-theme >= %{version} + +BuildRequires: bzip2-devel +BuildRequires: chrpath +BuildRequires: clucene-core-devel +BuildRequires: desktop-file-utils +BuildRequires: kdelibs4-devel >= %{version} +BuildRequires: kdepimlibs-devel >= %{version} +BuildRequires: kactivities-devel >= %{version} +BuildRequires: nepomuk-core-devel >= %{version} +BuildRequires: libjpeg-devel +BuildRequires: pkgconfig +BuildRequires: pkgconfig(alsa) +BuildRequires: pkgconfig(exiv2) +BuildRequires: pkgconfig(OpenEXR) +BuildRequires: pkgconfig(openssl) +BuildRequires: pkgconfig(polkit-qt-1) +BuildRequires: pkgconfig(libattica) +BuildRequires: pkgconfig(libcanberra) +BuildRequires: pkgconfig(libpulse) +BuildRequires: pkgconfig(libstreamanalyzer) pkgconfig(libstreams) +BuildRequires: pkgconfig(liblzma) +BuildRequires: pkgconfig(NetworkManager) +BuildRequires: pkgconfig(qca2) +BuildRequires: pkgconfig(qimageblitz) +BuildRequires: pkgconfig(smbclient) +BuildRequires: pkgconfig(soprano) >= 2.6.50 +BuildRequires: pkgconfig(xproto) +BuildRequires: pkgconfig(xscrnsaver) +%if 0%{?webkit} +BuildRequires: pkgconfig(QtWebKit) +%endif +%if 0%{?fedora} +BuildRequires: openslp-devel +BuildRequires: libssh-devel +%endif +BuildRequires: xorg-x11-font-utils +BuildRequires: zlib-devel + +# some items moved -workspace -> -runtime +Conflicts: kdebase-workspace < 4.5.80 +# plasmapkg moved -workspace -> -runtime +Conflicts: kde-workspace < 4.9.60 + +%description +Core runtime for KDE 4. + +%package devel +Summary: Developer files for %{name} +Obsoletes: kdebase-runtime-devel < 4.7.97-10 +Provides: kdebase-runtime-devel = %{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} +%description devel +%{summary}. + +%package drkonqi +Summary: DrKonqi KDE crash handler +Requires: %{name} = %{version}-%{release} +# drkonqi patch51 uses pkexec +Requires: polkit +%description drkonqi +%{summary}. + +%package libs +Summary: Runtime libraries for %{name} +Obsoletes: kdebase-runtime-libs < 4.7.97-10 +Provides: kdebase-runtime-libs = %{version}-%{release} +Requires: kdelibs4%{?_isa} >= %{version} +Requires: %{name} = %{version}-%{release} +%description libs +%{summary}. + +%package flags +Summary: Geopolitical flags +Obsoletes: kdebase-runtime-flags < 4.7.97-10 +Provides: kdebase-runtime-flags = %{version}-%{release} +Requires: %{name} = %{version}-%{release} +BuildArch: noarch +%description flags +%{summary}. + +%package kio-smb +Summary: Samba KIO slave +# upgrade path +Obsoletes: kde-runtime < 4.9.2-5 +Requires: %{name} = %{version}-%{release} +%description kio-smb +%{summary}. + + +%prep +%setup -q -n kde-runtime-%{version} + +%patch1 -p1 -b .searchproviders-shortcuts +%patch6 -p1 -b .home_onlyshowin_kde +%patch7 -p1 -b .htsearch +%patch8 -p1 -b .config +%patch9 -p1 -b .man-overrides +%if 0%{?fedora} < 19 && 0%{?rhel} < 7 +%patch10 -p1 -b .kde310486 +%endif +%patch11 -p1 -b .trash-readonly +%patch50 -p1 -b .nepomuk_onlyshowin_kde +%patch51 -p1 -b .installdgbsymbols +%patch52 -p1 -b .mouseeventlistener +%patch100 -p1 -b .kglobalaccel + +%if ! 0%{?webkit} +%patch300 -p1 -b .webkit +%global no_webkit -DKDERUNTIME_NO_WEBKIT:BOOL=ON -DPLASMA_NO_KDEWEBKIT:BOOL=ON +%endif + + +%build +mkdir -p %{_target_platform} +pushd %{_target_platform} +%{cmake_kde4} \ + %{?no_webkit} \ + .. +popd + +make %{?_smp_mflags} -C %{_target_platform} + + +%install +make install/fast DESTDIR=%{buildroot} -C %{_target_platform} + +# fix documentation multilib conflict in index.cache +for f in kioslave/nepomuksearch kcontrol/spellchecking kcontrol/performance \ + kcontrol/kcmnotify kcontrol/kcmcss kcontrol/ebrowsing; do + bunzip2 %{buildroot}%{_kde4_docdir}/HTML/en/$f/index.cache.bz2 + sed -i -e 's!name="id[a-z]*[0-9]*"!!g' %{buildroot}%{_kde4_docdir}/HTML/en/$f/index.cache + sed -i -e 's!#id[a-z]*[0-9]*"!!g' %{buildroot}%{_kde4_docdir}/HTML/en/$f/index.cache + bzip2 -9 %{buildroot}%{_kde4_docdir}/HTML/en/$f/index.cache +done + +# kdesu symlink +ln -s %{_kde4_libexecdir}/kdesu %{buildroot}%{_kde4_bindir}/kdesu + +# omit hicolor index.theme, use one from hicolor-icon-theme +rm -f %{buildroot}%{_kde4_iconsdir}/hicolor/index.theme + +# remove country flags because some people/countries forbid some other +# people/countries' flags :-( +%{!?flags:rm -f %{buildroot}%{_kde4_datadir}/locale/l10n/*/flag.png} + +# install this service for KDE 3 applications too +mkdir %{buildroot}%{_datadir}/services +ln -s %{_kde4_datadir}/kde4/services/khelpcenter.desktop \ + %{buildroot}%{_datadir}/services/khelpcenter.desktop + +# installdbgsymbols script +install -p -D -m755 drkonqi/doc/examples/installdbgsymbols_fedora.sh \ + %{buildroot}%{_kde4_libexecdir}/installdbgsymbols.sh + +# FIXME: -devel type files, omit for now +rm -vf %{buildroot}%{_kde4_libdir}/lib{kwalletbackend,molletnetwork}.so + +# rpaths +# use chrpath hammer for now, find better patching solutions later -- Rex +chrpath --list %{buildroot}%{_libdir}/kde4/plugins/phonon_platform/kde.so ||: +chrpath --delete %{buildroot}%{_libdir}/kde4/plugins/phonon_platform/kde.so + +%if 0%{?rhel} + rm -f %{buildroot}%{_kde4_datadir}/kde4/services/searchproviders/fedora.desktop +%endif + +%check +for f in %{buildroot}%{_kde4_datadir}/applications/kde4/*.desktop ; do + desktop-file-validate $f +done + + +%post +touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null || : + +%posttrans +gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null || : +update-desktop-database -q &> /dev/null ||: +update-mime-database %{_kde4_datadir}/mime &> /dev/null + +%postun +if [ $1 -eq 0 ] ; then + touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null || : + gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null || : + update-desktop-database -q &> /dev/null ||: + update-mime-database %{_kde4_datadir}/mime &> /dev/null +fi + +%files +%doc COPYING COPYING.LIB +%{_kde4_bindir}/* +%{_kde4_appsdir}/desktoptheme/ +%{_kde4_appsdir}/hardwarenotifications/ +%{_kde4_appsdir}/kcm_componentchooser/ +%{_kde4_appsdir}/kcmlocale/ +%{_kde4_appsdir}/kcm_phonon/ +%{_kde4_appsdir}/kconf_update/* +%{_kde4_appsdir}/kde/ +%{_kde4_appsdir}/kglobalaccel/ +%{_kde4_appsdir}/khelpcenter/ +%{_kde4_appsdir}/kio_bookmarks/ +%{_kde4_appsdir}/kio_desktop/ +%{_kde4_appsdir}/kio_docfilter/ +%{_kde4_appsdir}/kio_finger/ +%{_kde4_appsdir}/kio_info/ +%{_kde4_appsdir}/konqsidebartng/ +%{_kde4_appsdir}/ksmserver/ +%{_kde4_appsdir}/kwalletd/ +%{_kde4_appsdir}/libphonon/ +%{_kde4_appsdir}/phonon/ +%dir %{_kde4_appsdir}/remoteview/ +%{_kde4_appsdir}/remoteview/network.desktop +%{_kde4_configdir}/*.knsrc +%{_kde4_datadir}/config.kcfg/*.kcfg +%{_datadir}/dbus-1/interfaces/*.xml +%{_datadir}/dbus-1/services/*.service +%{_datadir}/dbus-1/system-services/*.service +%{_kde4_datadir}/autostart/nepomukcontroller.desktop +%{_kde4_datadir}/kde4/services/*.desktop +%{_kde4_datadir}/kde4/services/*.protocol +%{_kde4_datadir}/kde4/services/kded/ +%{_kde4_datadir}/kde4/services/searchproviders/ +%{_kde4_datadir}/kde4/servicetypes/* +%{_kde4_datadir}/mime/packages/network.xml +%{_kde4_datadir}/sounds/* +%{_kde4_iconsdir}/default.kde4 +%{_kde4_libdir}/kconf_update_bin/* +%{_kde4_libdir}/libkdeinit4_*.so +%{_kde4_libdir}/kde4/platformimports/ +%{_kde4_libdir}/kde4/kcm_*.so +%{_kde4_libdir}/kde4/kded_*.so +%{_kde4_libexecdir}/kcmremotewidgetshelper +%{_kde4_libexecdir}/kdeeject +%{_kde4_libexecdir}/kdesu +%attr(2755,root,nobody) %{_kde4_libexecdir}/kdesud +%{_kde4_libexecdir}/kdontchangethehostname +%{_kde4_libexecdir}/khc_docbookdig.pl +%{_kde4_libexecdir}/khc_htdig.pl +%{_kde4_libexecdir}/khc_htsearch.pl +%{_kde4_libexecdir}/khc_indexbuilder +%{_kde4_libexecdir}/khc_mansearch.pl +%{_kde4_libexecdir}/kioexec +%{_kde4_libexecdir}/knetattach +%{_mandir}/man1/* +%{_mandir}/man8/* +%{_kde4_iconsdir}/hicolor/*/*/* +%{_kde4_docdir}/HTML/en/* +%{_kde4_sysconfdir}/xdg/menus/kde-information.menu +%{_kde4_datadir}/applications/kde4/Help.desktop +%{_kde4_datadir}/applications/kde4/knetattach.desktop +%{_kde4_datadir}/applications/kde4/nepomukcontroller.desktop +%{_kde4_configdir}/kshorturifilterrc +%{_kde4_datadir}/desktop-directories/*.directory +%{_kde4_datadir}/emoticons/kde4/ +%{_kde4_datadir}/locale/l10n/ +%{_kde4_datadir}/locale/currency/ +%{?flags:%exclude %{_kde4_datadir}/locale/l10n/*/flag.png} +%{_datadir}/services/khelpcenter.desktop +%{_polkit_qt_policydir}/*.policy +%{_sysconfdir}/dbus-1/system.d/* +#exclude %{_kde4_datadir}/kde4/services/smb.protocol +#exclude %{_kde4_docdir}/HTML/en/kcontrol/smb/ +#exclude %{_kde4_docdir}/HTML/en/kioslave/smb/ + +#files kio-smb +%{_kde4_docdir}/HTML/en/kcontrol/smb/ +%{_kde4_docdir}/HTML/en/kioslave/smb/ +%dir %{_kde4_appsdir}/konqueror/dirtree/ +%dir %{_kde4_appsdir}/konqueror/dirtree/remote/ +%{_kde4_appsdir}/konqueror/dirtree/remote/smb-network.desktop +%dir %{_kde4_appsdir}/remoteview/ +%{_kde4_appsdir}/remoteview/smb-network.desktop +%{_kde4_datadir}/kde4/services/smb.protocol +# dup'd in -libs glob +#{_kde4_libdir}/kde4/kio_smb.so + +%files devel +%{_kde4_includedir}/* +%{_kde4_appsdir}/cmake/modules/*.cmake + +%if 0%{?fedora} > 16 || 0%{?rhel} > 6 +%post drkonqi +# make DrKonqi work by default by taming SELinux enough (suggested by dwalsh) +# if KDE_DEBUG is set, DrKonqi is disabled, so do nothing +# if it is unset (or empty), check if deny_ptrace is already disabled +# if not, disable it +if [ -z "$KDE_DEBUG" ] ; then + if [ "`getsebool deny_ptrace 2>/dev/null`" == 'deny_ptrace --> on' ] ; then + setsebool -P deny_ptrace off &> /dev/null || : + fi +fi +%endif + +%files drkonqi +%{_kde4_libexecdir}/drkonqi +%{_kde4_libexecdir}/installdbgsymbols.sh +%{_kde4_appsdir}/drkonqi/ + +%post libs -p /sbin/ldconfig +%postun libs -p /sbin/ldconfig + +%files libs +# unversioned plugin: +%{_kde4_libdir}/attica_kde.so +%{_kde4_libdir}/libknotifyplugin.so +%{_kde4_libdir}/libkwalletbackend.so.* +%{_kde4_libdir}/libmolletnetwork.so.* +%{_kde4_libdir}/kde4/*.so +%{_kde4_libdir}/kde4/imports/ +# FIXME: Is this a good idea? Won't multilib apps need KCMs, too? +%exclude %{_kde4_libdir}/kde4/kcm_*.so +%exclude %{_kde4_libdir}/kde4/kded_*.so +%{_kde4_libdir}/kde4/plugins/phonon_platform/ + +%if 0%{?flags} +%files flags +%{_kde4_datadir}/locale/l10n/*/flag.png +%endif + + +%changelog +* Wed Oct 30 2013 Daniel Vrátil - 4.10.5-2 +- fix: crash on invalid input on KGlobalAccel DBus interface (#1018207) + +* Sun Jun 30 2013 Than Ngo - 4.10.5-1 +- 4.10.5 + +* Tue Jun 18 2013 Rex Dieter - 4.10.4-3 +- avoid/workaround X3 plasma mouse scroll events (kde#316546) +- prune/fix changelog + +* Wed Jun 12 2013 Martin Briza - 4.10.4-2 +- Do not make deleted (moved to trash) files read only (thanks ltink for the patch) (#921735) + +* Sat Jun 01 2013 Rex Dieter - 4.10.4-1 +- 4.10.4 + +* Sat May 18 2013 Jan Grulich - 4.10.3-3 +- fix: phonon systemsettings module gets 'modified' without any changes + +* Mon May 13 2013 Than Ngo - 4.10.3-2 +- add mssing buildroot + +* Mon May 06 2013 Than Ngo - 4.10.3-1 +- 4.10.3 + +* Mon Apr 29 2013 Rex Dieter 4.10.2-3 +- move drkonqi-related scriptlet to -drkonqi subpkg + +* Mon Apr 29 2013 Than Ngo - 4.10.2-2 +- fix multilib issue + +* Sun Mar 31 2013 Rex Dieter - 4.10.2-1 +- 4.10.2 + +* Thu Mar 21 2013 Rex Dieter 4.10.1-3 +- Conflicts: kde-workspace < 4.9.60 (#924905) + +* Sun Mar 10 2013 Rex Dieter 4.10.1-2 +- rebuild (OpenEXR) + +* Sat Mar 02 2013 Rex Dieter 4.10.1-1 +- 4.10.1 + +* Thu Feb 21 2013 Rex Dieter 4.10.0-3 +- Requires: icoutils + +* Sat Feb 02 2013 Kevin Kofler - 4.10.0-2 +- ktimezoned: watch /etc/localtime if it doesn't exist yet (#906972) + +* Thu Jan 31 2013 Rex Dieter - 4.10.0-1 +- 4.10.0 + +* Mon Jan 28 2013 Rex Dieter 4.9.98-3 +- make upgrade hack apply on 4.9.98-2 +- Unable to logout after KDE upgrade (kde#310486) + +* Sun Jan 20 2013 Rex Dieter - 4.9.98-1 +- 4.9.98 + +* Fri Jan 18 2013 Adam Tkac - 4.9.97-2 +- rebuild due to "jpeg8-ABI" feature drop + +* Fri Jan 04 2013 Rex Dieter - 4.9.97-1 +- 4.9.97 + +* Thu Dec 20 2012 Rex Dieter - 4.9.95-1 +- 4.9.95 + +* Mon Dec 03 2012 Rex Dieter 4.9.90-1 +- 4.9.90 (4.10 beta2) + +* Mon Dec 03 2012 Than Ngo - 4.9.4-1 +- 4.9.4 + +* Mon Nov 19 2012 Than Ngo - 4.9.3-2 +- fedora/rhel condition + +* Fri Nov 02 2012 Rex Dieter 4.9.3-1 +- 4.9.3 +- drop -kio-smb subpkg + +* Mon Oct 29 2012 Rex Dieter 4.9.2-6 +- drop -desktoptheme subpkg, that one is a bad idea :( +- Requires: drkonqi + +* Mon Oct 29 2012 Rex Dieter - 4.9.2-5 +- -desktoptheme, -drkonqi, -kio-smb subpkgs (#855930) +- drop hard Requires: htdig (#855930) +- remove .spec cruft + +* Wed Oct 24 2012 Rex Dieter 4.9.2-4 +- rebuild (libjpeg-turbo v8) + +* Thu Oct 11 2012 Than Ngo - 4.9.2-3 +- update webkit patch + +* Tue Oct 02 2012 Rex Dieter 4.9.2-2 +- kde-runtime-4.9.2 is missing kio_smb (#862169) + +* Fri Sep 28 2012 Rex Dieter - 4.9.2-1 +- 4.9.2 + +* Mon Sep 03 2012 Than Ngo - 4.9.1-1 +- 4.9.1 + +* Tue Aug 07 2012 Rex Dieter 4.9.0-4 +- improve installdbgsymbols script + +* Sat Aug 04 2012 Than Ngo - 4.9.0-3 +- update webkit patch + +* Thu Aug 02 2012 Rex Dieter 4.9.0-2 +- respin + +* Thu Jul 26 2012 Lukas Tinkl - 4.9.0-1 +- 4.9.0 + +* Thu Jul 19 2012 Fedora Release Engineering - 4.8.97-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed Jul 11 2012 Rex Dieter - 4.8.97-1 +- 4.8.97 + +* Wed Jun 27 2012 Jaroslav Reznik - 4.8.95-1 +- 4.8.95 + +* Wed Jun 20 2012 Rex Dieter 4.8.90-3 +- rebuild (attica) + +* Tue Jun 12 2012 Rex Dieter 4.8.90-2 +- BR: nepomuk-core-devel pkgconfig(NetworkManager) pkgconfig(qca2) + +* Sat Jun 09 2012 Rex Dieter - 4.8.90-1 +- 4.8.90 + +* Fri Jun 01 2012 Jaroslav Reznik - 4.8.80-2 +- respin + +* Sat May 26 2012 Jaroslav Reznik - 4.8.80-1 +- 4.8.80 +- add kactivities BR + +* Fri May 04 2012 Than Ngo - 4.8.3-3 +- add rhel/fedora condition + +* Wed May 02 2012 Rex Dieter - 4.8.3-2 +- rebuild (exiv2) + +* Mon Apr 30 2012 Jaroslav Reznik - 4.8.3-1 +- 4.8.3 + +* Fri Mar 30 2012 Jaroslav Reznik - 4.8.2-1 +- 4.8.2 + +* Thu Mar 08 2012 Rex Dieter 4.8.1-2 +- upstream listview margins patch + +* Mon Mar 05 2012 Jaroslav Reznik - 4.8.1-1 +- 4.8.1 +- fix libnepomukdatamanagement (-devel, -libs) + +* Tue Feb 28 2012 Fedora Release Engineering - 4.8.0-6 +- Rebuilt for c++ ABI breakage + +* Mon Feb 27 2012 Rex Dieter 4.8.0-5 +- Requires: dbus-x11 (#794958) + +* Wed Feb 08 2012 Kevin Kofler - 4.8.0-4 +- fix quoting in SELinux scriptlet (#788309) + +* Tue Feb 07 2012 Kevin Kofler - 4.8.0-3 +- add kconf_update script to migrate nepomukserverrc config group (#771053) + +* Mon Feb 06 2012 Kevin Kofler - 4.8.0-2 +- make DrKonqi work by default by taming SELinux enough (suggested by dwalsh) + +* Fri Jan 20 2012 Jaroslav Reznik - 4.8.0-1 +- 4.8.0 + +* Sat Jan 14 2012 Bruno Wolff III 4.7.97-12 +- Fix typo in kde-runtime-flags obsolete that prevents updates + +* Fri Jan 13 2012 Rex Dieter 4.7.97-11 +- %%check: desktop-file-validate +- %%doc COPYING COPYING.LIB + +* Wed Jan 04 2012 Rex Dieter 4.7.97-10 +- kdebase-runtime -> kde-runtime rename + +* Wed Jan 04 2012 Rex Dieter 4.7.97-1 +- 4.7.97 + +* Sat Dec 31 2011 Rex Dieter 4.7.95-2 +- rebuild (attica) + +* Wed Dec 21 2011 Radek Novacek - 4.7.95-1 +- 4.7.95 + +* Fri Dec 09 2011 Rex Dieter 4.7.90-2 +- make nepomuk menu items (with only oxygen icons) OnlyShowIn=KDE (#682055) + +* Sat Dec 03 2011 Rex Dieter 4.7.90-1 +- 4.7.90 + +* Fri Nov 18 2011 Jaroslav Reznik 4.7.80-1 +- 4.7.80 (beta 1) + +* Thu Nov 17 2011 Rex Dieter 4.7.3-12 +- active-development-4.7-diff.patch +- omit activitymanger unconditionally +- drop dep on libkactivities + +* Tue Nov 15 2011 Rex Dieter 4.7.3-11 +- BR: libjpeg-devel + +* Fri Nov 04 2011 Rex Dieter 4.7.3-10 +- no_activitymanager + +* Thu Nov 03 2011 Lukas Tinkl - 4.7.3-3 +- require poppler-utils for Nepomuk (PDF file indexing) + +* Mon Oct 31 2011 Rex Dieter 4.7.3-2 +- drop activitymanager/zeitgiest support + +* Sat Oct 29 2011 Rex Dieter 4.7.3-1 +- 4.7.3 +- drop QUrl hack/workaround + +* Wed Oct 26 2011 Rex Dieter 4.7.2-6 +- fix knotify, workaround Qt 4.8 QUrl.toLocalFile behavior change (#749213) + +* Tue Oct 25 2011 Rex Dieter 4.7.2-5 +- include toggle to omit activitymanager + +* Mon Oct 24 2011 Rex Dieter 4.7.2-4 +- pkgconfig-style deps + +* Fri Oct 14 2011 Rex Dieter - 4.7.2-3 +- rebuild (exiv2) + +* Wed Oct 05 2011 Rex Dieter 4.7.2-2 +- drop hard cagibi dep (add to comps instead) + +* Tue Oct 04 2011 Rex Dieter 4.7.2-1 +- 4.7.2 + +* Tue Sep 27 2011 Kevin Kofler 4.7.1-2 +- rebuild once again for fixed RPM dependency generators for Plasma + +* Fri Sep 02 2011 Than Ngo - 4.7.1-1 +- 4.7.1 + +* Sun Aug 21 2011 Kevin Kofler 4.7.0-5 +- rebuild again for the fixed RPM dependency generators for Plasma (#732271) + +* Sun Aug 21 2011 Kevin Kofler 4.7.0-4 +- rebuild for the RPM dependency generators for Plasma (GSoC 2011) + +* Tue Jul 26 2011 Jaroslav Reznik - 4.7.0-3 +- respin + +* Tue Jul 26 2011 Jaroslav Reznik 4.7.0-2 +- BR libqzeitgeist + +* Tue Jul 26 2011 Jaroslav Reznik 4.7.0-1 +- 4.7.0 +- Provides: kde-runtime (matching new upstream tarball) + +* Thu Jul 21 2011 Rex Dieter 4.6.95-2 +- rebuild (qt48) + +* Fri Jul 08 2011 Jaroslav Reznik 4.6.95-1 +- 4.6.95 (rc2) +- Nepomuk IndexCleaner throttling (kdebz#276593) + +* Tue Jun 28 2011 Rex Dieter 4.6.90-2 +- move oxygen-icons-theme dep (back) here from kdelibs + +* Mon Jun 27 2011 Than Ngo - 4.6.90-1 +- 4.6.90 (rc1) + +* Tue Jun 14 2011 Rex Dieter 4.6.80-2 +- drop xine support (f16+, #723933) +- drop references to crystalsvg icons + +* Fri May 27 2011 Jaroslav Reznik - 4.6.80-1 +- 4.6.80 (beta1) +- upstream tarball is now kde-runtime + +* Thu Apr 28 2011 Rex Dieter - 4.6.3-1 +- 4.6.3 + +* Wed Apr 06 2011 Than Ngo - 4.6.2-1 +- 4.6.2 + +* Thu Mar 24 2011 Kevin Kofler 4.6.1-3 +- rebuild in the main F15 buildroot now that NM 0.9 has been tagged into it + +* Wed Mar 23 2011 Rex Dieter 4.6.1-2 +- nm-0.9 support patch + +* Sat Feb 26 2011 Rex Dieter 4.6.1-1 +- 4.6.1 + +* Tue Feb 08 2011 Than Ngo - 4.6.0-2 +- add overrides in default manpath + +* Fri Jan 21 2011 Jaroslav Reznik - 4.6.0-1 +- 4.6.0 + +* Thu Jan 20 2011 Adam Williamson - 4.5.95-3 +- update compiz patch to launch ccsm for configuration, not simple-ccsm + (we don't package it) + +* Thu Jan 20 2011 Adam Williamson - 4.5.95-2 +- fix up compiz launching from systemsettings (by calling compiz-manager) + +* Wed Jan 05 2011 Jaroslav Reznik - 4.5.95-1 +- 4.5.95 (4.6rc2) + +* Sat Jan 01 2011 Rex Dieter - 4.5.90-2 +- rebuild (exiv2) + +* Wed Dec 22 2010 Rex Dieter 4.5.90-1 +- 4.5.90 (4.6rc) + +* Sat Dec 04 2010 Thomas Janssen 4.5.85-1 +- 4.5.85 (4.6beta2) + +* Tue Nov 23 2010 Rex Dieter 4.5.80-3 +- -libs: move libknotifyplugin.so here + +* Sun Nov 21 2010 Rex Dieter - 4.5.80-2 +- Conflicts: kdebase-workspace < 4.5.80 + +* Sat Nov 20 2010 Rex Dieter - 4.5.80-1 +- 4.5.80 (4.6beta1) + +* Fri Nov 12 2010 Rex Dieter - 4.5.4-4 +- fix build with newer phonon(4.4.3+) + +* Fri Nov 12 2010 Rex Dieter - 4.5.3-3 +- kdesu password-keeping does not work (#650630) +- htsearch patch + +* Thu Nov 11 2010 Rex Dieter - 4.5.3-2 +- Crash after visiting Phonon setting (#652409, kde#255736) + +* Fri Oct 29 2010 Than Ngo - 4.5.3-1 +- 4.5.3 + +* Fri Oct 15 2010 Rex Dieter - 4.5.2-3 +- pa speakersetup backport (courtesy of coling/mandriva) +- hammer rpath from phonon_platform/kde.so + +* Fri Oct 15 2010 Rex Dieter - 4.5.2-2 +- use kde4's copy of khelpcenter.desktop + +* Fri Oct 01 2010 Rex Dieter - 4.5.2-1 +- 4.5.2 + +* Fri Aug 27 2010 Jaroslav Reznik - 4.5.1-1 +- 4.5.1 + +* Tue Aug 10 2010 Than Ngo - 4.5.0-3 +- backport to fix the freeze of kded on first use of the network:/kio-slave + +* Fri Aug 06 2010 Jaroslav Reznik - 4.5.0-2 +- requires cagibi + +* Tue Aug 03 2010 Than Ngo - 4.5.0-1 +- 4.5.0 + +* Sun Jul 25 2010 Rex Dieter - 4.4.95-1 +- 4.5 RC3 (4.4.95) + +* Fri Jul 16 2010 Rex Dieter - 4.4.92-2 +- move oxygen-icon-theme (back) to kdelibs + +* Wed Jul 07 2010 Rex Dieter - 4.4.92-1 +- 4.5 RC2 (4.4.92) +- Requires: -flags +- drop virtuosoconverter patch + +* Fri Jun 25 2010 Jaroslav Reznik - 4.4.90-1 +- 4.5 RC1 (4.4.90) + +* Mon Jun 07 2010 Jaroslav Reznik - 4.4.85-1 +- 4.5 Beta 2 (4.4.85) +- added remote widgets service and policy (from kdelibs) + +* Mon May 31 2010 Rex Dieter - 4.4.80-2 +- rebuild (exiv2) + +* Fri May 21 2010 Jaroslav Reznik - 4.4.80-1 +- 4.5 Beta 1 (4.4.80) +- install dbus .service files + +* Fri Apr 30 2010 Jaroslav Reznik - 4.4.3-1 +- 4.4.3 + +* Wed Apr 21 2010 Rex Dieter - 4.4.2-3 +- kio_sftp does not work - "Error. Out of memory" (#582968) +- BR: libssh-devel >= 0.4.2 + +* Sat Apr 17 2010 Rex Dieter - 4.4.2-2 +- Requires: hal-storage-addon for f13 too (#579256) + +* Mon Mar 29 2010 Lukas Tinkl - 4.4.2-1 +- 4.4.2 + +* Tue Mar 16 2010 Rex Dieter - 4.4.1-2 +- Requires: hal-storage-addon (f14+) +- drop - 4.4.1-1 +- 4.4.1 + +* Mon Feb 08 2010 Than Ngo - 4.4.0-3 +- respin + +* Sun Feb 07 2010 Rex Dieter - 4.4.0-2 +- nepomuk_fulltextindex patch +- virtuosoconverter patch + +* Fri Feb 05 2010 Than Ngo - 4.4.0-1 +- 4.4.0 + +* Sun Jan 31 2010 Rex Dieter - 4.3.98-1 +- KDE 4.3.98 (4.4rc3) +- notifications for new global shortcuts should be silenced (#549784) + +* Wed Jan 20 2010 Lukas Tinkl - 4.3.95-1 +- KDE 4.3.95 (4.4rc2) + +* Tue Jan 19 2010 Kevin Kofler - 4.3.90-2 +- install installdbgsymbols_fedora.sh as %{_kde4_libexecdir}/installdbgsymbols.sh + +* Wed Jan 06 2010 Rex Dieter - 4.3.90-1 +- kde-4.3.85 (4.4rc1) + +* Sun Jan 03 2010 Rex Dieter - 4.3.85-3 +- rebuild (exiv2) + +* Sat Jan 02 2010 Rex Dieter - 4.3.85-2 +- Provides: desktop-notification-daemon + +* Fri Dec 18 2009 Rex Dieter - 4.3.85-1 +- kde-4.3.85 (4.4beta2) + +* Wed Dec 16 2009 Jaroslav Reznik - 4.3.80-4 +- Repositioning the KDE Brand (#547361) + +* Wed Dec 09 2009 Rex Dieter - 4.3.80-3 +- BR: attica-devel shared-desktop-ontologies-devel + +* Sat Dec 05 2009 Kevin Kofler - 4.3.80-2 +- BR exiv2-devel + +* Tue Dec 01 2009 Lukáš Tinkl - 4.3.80-1 +- KDE 4.4 beta1 (4.3.80) + +* Mon Nov 30 2009 Kevin Kofler - 4.3.75-0.2.svn1048496 +- BR libssh-devel >= 0.3.92 + +* Sat Nov 21 2009 Ben Boeckel - 4.3.75-0.1.svn1048496 +- update to 4.3.75 snapshot + +* Wed Nov 18 2009 Rex Dieter - 4.3.3-6 +- rebuild (qt-4.6.0-rc1, fc13+) + +* Sat Nov 14 2009 Rex Dieter - 4.3.3-5 +- disable manpath patch for now, does more harm than good (#532071) + +* Fri Nov 13 2009 Than Ngo - 4.3.3-4 +- rhel cleanup, fix conditional for RHEL + +* Wed Nov 11 2009 Than Ngo - 4.3.3-3 +- rhel cleanup, drop BR on openslp-devel + +* Thu Nov 05 2009 Rex Dieter 4.3.3-2 +- add OnlyShowIn=KDE to Desktop/Home.desktop (like trash.desktop) + +* Sat Oct 31 2009 Rex Dieter 4.3.3-1 +- 4.3.3 + +* Thu Oct 15 2009 Rex Dieter 4.3.2-4 +- Conflicts: kdebase4 < 4.3.0 instead + +* Wed Oct 14 2009 Rex Dieter 4.3.2-3 +- Conflicts: kdebase < 6:4.3.0 +- Requires: oxygen-icon-theme >= %%{version} + +* Tue Oct 06 2009 Rex Dieter 4.3.2-2 +- BR: bzip2-devel xz-devel +- -libs: move Requires: kdepimlibs... here + +* Sun Oct 04 2009 Than Ngo - 4.3.2-1 +- 4.3.2 + +* Wed Sep 30 2009 Nils Philippsen - 4.3.1-4 +- fix manpath patch (spotted by Kevin Kofler) + +* Wed Sep 30 2009 Nils Philippsen - 4.3.1-3 +- if available, use the "manpath" command in the man kioslave to determine man + page file locations + +* Tue Sep 15 2009 Rex Dieter - 4.3.1-2 +- restore some previously inadvertantly omitted nepomuk ontologies + +* Fri Aug 28 2009 Than Ngo - 4.3.1-1 +- 4.3.1 + +* Wed Aug 12 2009 Lukáš Tinkl - 4.3.0-4 +- unbreak fish kioslave protocol (#516416) + +* Mon Aug 10 2009 Lukáš Tinkl - 4.3.0-3 +- fix Oxygen comboboxes' text being garbled (drawn twice); fixes kdebug:202701 +- fix Locale control module crashing when dragging languages around (kdebug:201578) + +* Tue Aug 04 2009 Than Ngo - 4.3.0-2 +- respin + +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + +* Thu Jul 16 2009 Rex Dieter - 4.2.96-2 +- respin (soprano-2.3.0) +- License: LGPLv2+ + +* Thu Jul 09 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + +* Thu Jul 02 2009 Rex Dieter 4.2.95-3 +- drop unneeded BR: ImageMagick (#509241) + +* Mon Jun 29 2009 Lukáš Tinkl - 4.2.95-2 +- don't start nepomuk server unconditionally (#487322) + +* Thu Jun 25 2009 Than Ngo - 4.2.95-1 +- 4.3rc1 + +* Wed Jun 03 2009 Rex Dieter - 4.2.90-1 +- KDE-4.3 beta2 (4.2.90) + +* Tue Jun 02 2009 Lorenzo Villani - 4.2.85-3 +- Drop old Fedora < 8 conditionals + +* Tue May 19 2009 Than Ngo - 4.2.85-2 +- file conflicts with kdepim + +* Wed May 13 2009 Lukáš Tinkl - 4.2.85-1 +- KDE 4.3 beta 1 + +* Thu Apr 16 2009 Rex Dieter - 4.2.2-4 +- fix persistent systray notifications (#485796) + +* Wed Apr 01 2009 Rex Dieter - 4.2.2-3 +- -flags subpkg +- koji/noarch hacks dropped + +* Wed Apr 01 2009 Than Ngo - 4.2.2-2 +- drop kdebase-runtime-4.2.1-pulseaudio-cmake.patch + +* Mon Mar 30 2009 Lukáš Tinkl - 4.2.2-1 +- KDE 4.2.2 + +* Fri Mar 27 2009 Rex Dieter - 4.2.1-3 +- flags subpkg (not enabled) +- optimize scriptlets + +* Tue Mar 3 2009 Lukáš Tinkl - 4.2.1-2 +- fix PulseAudio cmake detection + +* Fri Feb 27 2009 Than Ngo - 4.2.1-1 +- 4.2.1 + +* Wed Feb 25 2009 Fedora Release Engineering - 4.2.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Feb 18 2009 Lukáš Tinkl - 4.2.0-7 +- #486059 - missing dependency on htdig + +* Thu Feb 12 2009 Rex Dieter - 4.2.0-6 +- -libs: include %%{_kde4_libdir}/libkwalletbackend.so.* here + +* Thu Feb 12 2009 Rex Dieter - 4.2.0-5 +- Req: %%{name}-libs%%{?_isa} for multilib sanity (#456926) + +* Mon Feb 02 2009 Rex Dieter - 4.2.0-4 +- own %%_kde4_datadir/locale/l10n/ + +* Mon Jan 26 2009 Rex Dieter - 4.2.0-3 +- respun tarball + +* Mon Jan 26 2009 Rex Dieter - 4.2.0-2 +- Files not trashed to the correct location in Dolphin/Konqueror + (#481598, kdebug#178479) +- omit --with-samba crud + +* Thu Jan 22 2009 Than Ngo - 4.2.0-1 +- 4.2.0 +- +BR: pulseaudio-libs-devel xine-lib-devel +- -BR: giflib-devel pcre-devel + +* Tue Jan 13 2009 Rex Dieter 4.1.96-2 +- tarball respin +- drop extraneous deps (that are in kdelibs) + +* Wed Jan 07 2009 Than Ngo - 4.1.96-1 +- 4.2rc1 + +* Mon Dec 22 2008 Rex Dieter 4.1.85-2 +- include %%_bindir/kdesu symlink + +* Thu Dec 11 2008 Than Ngo 4.1.85-1 +- 4.2beta2 + +* Mon Dec 01 2008 Kevin Kofler 4.1.80-5 +- don't ship libkwalletbackend.so devel symlink (conflicts with kdelibs3-devel, + and should be in a -devel package if it gets shipped) + +* Thu Nov 27 2008 Kevin Kofler 4.1.80-4 +- BR strigi-devel >= 0.5.11.1 because 0.5.11 is broken + +* Thu Nov 20 2008 Kevin Kofler 4.1.80-3 +- readd still relevant part of the Phonon PulseAudio patch (for the KCM) + +* Wed Nov 19 2008 Than Ngo 4.1.80-2 +- drop kdebase-runtime-4.0.72-pulseaudio.patch/icons, it's part of phonon + +* Wed Nov 19 2008 Lorenzo Villani - 4.1.80-1 +- 4.1.80 +- Drop upstreamed patch kdebase-runtime-4.1.2-kioexec.patch +- BR cmake >= 2.6.2 +- Use 'make install/fast' +- Drop subpkg phonon-backend-xine and related file entries: this has to be + part of phonon now that it moved there +- Drop xine-lib-devel BR +- Add libkwalletbackend to files list +- Drop _default_patch_fuzz 2 + +* Thu Nov 13 2008 Than Ngo 4.1.3-5 +- apply upstream patch to fix X crash when disabling compositing + +* Wed Nov 12 2008 Than Ngo 4.1.3-1 +- 4.1.3 + +* Tue Oct 14 2008 Than Ngo 4.1.2-5 +- apply upstream patch, kioexec processes never terminate + +* Tue Sep 30 2008 Than Ngo 4.1.2-4 +- fix broken audio-backend-jack.svgz + +* Tue Sep 30 2008 Than Ngo 4.1.2-3 +- add missing icons + +* Sun Sep 28 2008 Rex Dieter 4.1.2-2 +- make VERBOSE=1 +- respin against new(er) kde-filesystem +- grow -libs, kde4 styles are unavailable for i386 applications (#456826) + +* Fri Sep 26 2008 Rex Dieter 4.1.1-3 +- fix inherit issue in iconthemes, preview icons + do not show + +* Mon Sep 01 2008 Than Ngo 4.1.1-2 +- fix #460710, knetattach is kio_remote's wizard program, don't show + it in the menu. + +* Thu Aug 28 2008 Than Ngo 4.1.1-1 +- 4.1.1 + +* Wed Aug 13 2008 Kevin Kofler 4.1.0-3 +- fix PA not being default in the Xine backend (KCM part, see phonon-4.2.0-4) + +* Tue Aug 12 2008 Than Ngo 4.1.0-2 +- crash fix when stopping a service that is not yet initialized + +* Fri Jul 25 2008 Kevin Kofler 4.1.0-1.1 +- don't remove autostart directory on F8- (does not conflict, fixes build + failure due to nepomukserver.desktop listed in filelist but not found) + +* Wed Jul 23 2008 Than Ngo 4.1.0-1 +- 4.1.0 + +* Wed Jul 23 2008 Rex Dieter 4.0.99-2 +- phonon-backend-xine: drop Obsoletes/Requires upgrade hack + +* Fri Jul 18 2008 Rex Dieter 4.0.99-1 +- 4.0.99 + +* Mon Jul 14 2008 Rex Dieter 4.0.98-4 +- respin + +* Mon Jul 14 2008 Rex Dieter 4.0.98-3 +- -phonon-backend-xine: new subpkg + +* Thu Jul 10 2008 Rex Dieter 4.0.98-1 +- 4.0.98 + +* Sun Jul 06 2008 Rex Dieter 4.0.85-1 +- 4.0.85 + +* Fri Jun 27 2008 Rex Dieter 4.0.84-1 +- 4.0.84 + +* Thu Jun 19 2008 Than Ngo 4.0.83-1 +- 4.0.83 (beta2) + +* Sat Jun 14 2008 Rex Dieter 4.0.82-1 +- 4.0.82 + +* Thu Jun 05 2008 Than Ngo 4.0.80-2 +- add searchproviders-shortcuts for redhat bugzilla + +* Mon May 26 2008 Than Ngo 4.0.80-1 +- 4.1 beta 1 + +* Tue May 06 2008 Kevin Kofler 4.0.72-2 +- BR new minimum version of soprano-devel + +* Tue May 06 2008 Kevin Kofler 4.0.72-1 +- update to 4.0.72 (4.1 alpha 1) +- drop upstreamed deinterlace-crash patch +- drop khelpcenter patch (fixed upstream) +- update Phonon PulseAudio patch +- drop Fedora 7 support +- update file list + +* Mon Apr 28 2008 Rex Dieter 4.0.3-10.1 +- omit conflicting icons (kde3_desktop=1 case) + +* Thu Apr 17 2008 Rex Dieter 4.0.3-10 +- oxygen-icon-theme: build noarch + +* Thu Apr 17 2008 Rex Dieter 4.0.3-9 +- %%post/%%postun: hicolor icon theme scriptlets + +* Thu Apr 17 2008 Than Ngo 4.0.3-8 +- only omit hicolor index.theme (#439374) + +* Thu Apr 17 2008 Than Ngo 4.0.3-7 +- fix khelpcenter, search plugins/settings in correct path (#443016) + +* Tue Apr 15 2008 Rex Dieter 4.0.3-6 +- respin (at f13's request) + +* Mon Apr 07 2008 Rex Dieter 4.0.3-5 +- pulseaudio patch (use as default, if available) + +* Sat Apr 05 2008 Kevin Kofler 4.0.3-4 +- don't crash if we don't have deinterlacing support in xine-lib (#440299) + +* Thu Apr 03 2008 Kevin Kofler 4.0.3-3 +- rebuild for the new %%{_kde4_buildtype} + +* Mon Mar 31 2008 Kevin Kofler 4.0.3-2 +- update file list for _kde4_libexecdir + +* Fri Mar 28 2008 Than Ngo 4.0.3-1 +- 4.0.3 + +* Thu Mar 20 2008 Rex Dieter 4.0.2-5 +- don't own %%_kde4_docdir/HTML/en/ + +* Thu Mar 20 2008 Rex Dieter 4.0.2-4 +- oxygen-icon-theme, oxygen-icon-theme-scalable pkgs +- include noarch build hooks (not enabled) + +* Fri Mar 07 2008 Kevin Kofler 4.0.2-3 +- BR libxcb-devel everywhere (including F7) + +* Fri Mar 07 2008 Kevin Kofler 4.0.2-2 +- if building for a KDE 4 desktop, include the khelpcenter.desktop service + description for KDE 3 here so help works in KDE 3 apps + +* Fri Feb 29 2008 Than Ngo 4.0.2-1 +- 4.0.2 + +* Mon Feb 25 2008 Rex Dieter 4.0.1-3 +- %%files: don't own %%_kde4_libdir/kde4/plugins (thanks wolfy!) + +* Sat Feb 23 2008 Kevin Kofler 4.0.1-2 +- reenable kio_smb everywhere (including F9) now that we have a GPLv3 qt4 + (kio_smb itself is already GPLv2+) + +* Wed Jan 30 2008 Rex Dieter 4.0.1-1 +- 4.0.1 + +* Tue Jan 08 2008 Rex Dieter 4.0.0-2 +- respun tarball + +* Mon Jan 07 2008 Kevin Kofler 4.0.0-1 +- update to 4.0.0 +- update file list, don't remove renamed khotnewstuff.knsrc for KDE 3 desktop