[SCM] kglobalaccel packaging branch, kglobalaccel-master, created. cd503fed45a937c5d7eae22502304c16ba5e8fea

Maximiliano Curia maxy at moszumanska.debian.org
Fri Jul 10 12:22:22 UTC 2015


The branch, kglobalaccel-master has been created
        at  cd503fed45a937c5d7eae22502304c16ba5e8fea (commit)

- Shortlog ------------------------------------------------------------
commit cd503fed45a937c5d7eae22502304c16ba5e8fea
Author: Maximiliano Curia <maxy at gnuservers.com.ar>
Date:   Fri Jul 10 14:13:23 2015 +0200

    Add missing licenses
    
    The distributed tarballs include GPL-2 po files (po/bg), and the
    src/runtime/main.cpp file is under LGPL-2 only, thus the included LGPL-2.1
    won't cover it.

commit 98ca8a0380941fb88750d315562a9ab14de4fb8d
Author: l10n daemon script <scripty at kde.org>
Date:   Fri Jul 10 10:14:30 2015 +0000

    Upgrade KF5 version to 5.13.0.

commit fd607506642195b1cfd58d92b5d720d888b711b1
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Mon Jul 6 04:53:20 2015 +0200

    Introduce an env variable to overwrite the platform name
    
    With the env variable KGLOBALACCELD_PLATFORM the platform name can
    be specified, which is being used for searching for the plugin to
    load. This is required because some plugins are more specific than
    the supported platforms. If the environment variable is not
    specified, the QGuiApplication::platformName() is used as before.
    
    CCBUG: 349911
    REVIEW: 124266
    CHANGELOG: New env variable KGLOBALACCELD_PLATFORM to specify the platform plugin to load.

commit 86f2ed746d9824ae2b262386230d87a4f6a59d3f
Author: l10n daemon script <scripty at kde.org>
Date:   Sat Jul 4 20:35:00 2015 +0000

    Upgrade ECM and KF5 version requirements for 5.12.0 release.

commit 55041476d7832ca938fb6b33cf732428ba28141f
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Fri Jun 26 10:46:36 2015 +0200

    [runtime] Install headers and library for the private part
    
    We need to make the library and plugin interface available to support
    more platforms. On a Plasma Wayland session it's required that KWin
    becomes KGlobalAccel. KWin is the only process which can filter key
    events and for security reasons KWin will not delegate them to other
    applications.
    
    This means KWin needs to create KGlobalAccelD before KWin or any other
    process tries to register a global shortcuts triggering kglobalaccel5
    to be started.
    
    In addition KWin needs to provide it's own plugin which it can interact
    with.
    
    CHANGELOG: private runtime API gets installed to allow KWin to provide plugin for Wayland.
    REVIEW: 124186

commit e2cfe1752c5d35779c030dd4c909d172876489ba
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Mon Jun 29 11:14:02 2015 +0200

    Fallback for componentFriendlyForAction name resolving
    
    Currently the name is resolved from an undocumented dynamic property
    which gets set by KActionCollection (xmlgui). If one uses KGlobalAccel
    without using KActionCollection one would have to know the name of
    the private property.
    
    To provide a better name the method performs the same fallbacks as
    KActionCollection. If the property is not set, it uses either the
    application display name or the application name.
    
    REVIEW: 124208

commit f1c3f433e36d87af75c1e31f5cf5887421483fc6
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Mon Jun 29 10:33:39 2015 +0200

    Less noisy kglobalacceld by default

commit dd9925f6ec56bf5133c28dad26e80428e6e98e74
Author: l10n daemon script <scripty at kde.org>
Date:   Thu Jun 25 10:35:31 2015 +0000

    SVN_SILENT made messages (.desktop file) - always resolve ours
    
    In case of conflict in i18n, keep the version of the branch "ours"
    To resolve a particular conflict, "git checkout --ours path/to/file.desktop"

commit 96904784b54054e2b8722cb679f85d55bbe27d86
Author: l10n daemon script <scripty at kde.org>
Date:   Fri Jun 12 22:30:54 2015 +0000

    Upgrade KF5 version to 5.12.0.

commit eb830eb60ac38f0f146c3f0849fe0836e3bf5830
Author: l10n daemon script <scripty at kde.org>
Date:   Sat Jun 6 09:26:53 2015 +0000

    Upgrade ECM and KF5 version requirements for 5.11.0 release.

commit 3dfa7cd838576df6876610624a11eeafe9b3c48f
Author: l10n daemon script <scripty at kde.org>
Date:   Thu Jun 4 11:20:29 2015 +0000

    SVN_SILENT made messages (.desktop file) - always resolve ours
    
    In case of conflict in i18n, keep the version of the branch "ours"
    To resolve a particular conflict, "git checkout --ours path/to/file.desktop"

commit 9443a14a120ec5c46a7f3effea2b360af84d815a
Author: l10n daemon script <scripty at kde.org>
Date:   Wed Jun 3 10:13:25 2015 +0000

    SVN_SILENT made messages (.desktop file) - always resolve ours
    
    In case of conflict in i18n, keep the version of the branch "ours"
    To resolve a particular conflict, "git checkout --ours path/to/file.desktop"

commit cbefb0edd85c35a0d38d321b77e1bc9b189e5961
Author: Jeremy Whiting <jpwhiting at kde.org>
Date:   Wed May 13 20:35:54 2015 -0600

    Add verbose message for when ECM is not found.

commit eec8e799073384d5293ab75a295ebc749ffb5817
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Tue Apr 28 09:47:13 2015 +0200

    [runtime] Move platform specific code into plugins
    
    The current architecture of the runtime component was to have compile
    time destinctions between various platforms. This approach does not
    allow to include Wayland support on Linux as both xcb and Wayland are
    possible platforms which are selected at runtime and not at compile
    time. Thus a change of the architecture is required.
    
    The solution taken in this patch is to move the platform specific code
    into plugins and to load the plugin specific to the currently used
    platform. Therefore a new interface class is introduced which the
    plugins have to implement. In addition most of the runtime is turned
    into a library, so that the plugin can link it.
    
    To properly support Wayland more changes will be required. The security
    provided by the Wayland windowing system does not work well with the
    architecture of kglobalacceld. Kglobalacceld is a kind of glorified
    key logger. Wayland makes it impossible to be a key logger. Thus the
    support for global shortcuts needs to be in the compositor. In the case
    of KDE Plasma that is KWin. On that architecture we can make kglobalaccel
    to still work by allowing KWin to link the new library and provide it's
    own plugin. In order to support this the new private library must be
    cleaned up and prepared for at least allowing a somewhat stable API/ABI.
    
    Please note that this change also disables build for all platforms
    except xcb (OSX and Windows) due to lack of a build environment.
    
    REVIEW: 123542

commit 4957f98e99e268815f3f2b632cde09365a02a2c4
Author: l10n daemon script <scripty at kde.org>
Date:   Fri May 8 23:29:50 2015 +0000

    Upgrade KF5 version to 5.11.0.

commit 4928539a48edd4729174f9c8aa906cf63fbe1b45
Author: Jerome Leclanche <adys.wh at gmail.com>
Date:   Wed May 6 15:18:38 2015 +0200

    Remove dependency on K18n framework
    
    REVIEW: 122680
    REVIEW: 123632

commit 6b32503c43d997d0b62b65019cd1466a7a3f0fc0
Author: l10n daemon script <scripty at kde.org>
Date:   Fri May 1 15:15:49 2015 +0000

    Upgrade ECM and KF5 version requirements for 5.10.0 release.

commit 8cc732ecc066b5250e501c85b7e2615d47c828ec
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Wed Apr 22 09:53:26 2015 +0200

    Use categorized logging in runtime component
    
    BUG: 346429
    REVIEW: 123463

commit 133bf78ed64fe1e6565b8bbc818513afe197f1ed
Author: Gregor Mi <codestruct at posteo.org>
Date:   Sun Apr 19 15:53:45 2015 +0200

    QString() is better than QLatin1String("")
    
    Dominik: thanks for the hint

commit 9592b72e3a935fcd40e890dc8a66f85fa4e58014
Author: Gregor Mi <codestruct at posteo.org>
Date:   Fri Apr 17 09:45:34 2015 +0200

    Add new method globalShortcut
    
    which retrieves the shortcut as defined in global settings.
    
    Update and clarify documentation.
    Add unit test for new method and thereby adding some comments.

commit 88b6c19e6f6dd5c225e31ae07b80e0fde428762b
Author: l10n daemon script <scripty at kde.org>
Date:   Fri Apr 10 07:37:57 2015 +0000

    Upgrade KF5 version to 5.10.0.

commit ed9f91c2971878c2dbd5f9caa826636bae537db0
Author: l10n daemon script <scripty at kde.org>
Date:   Tue Apr 7 13:15:52 2015 +0000

    SVN_SILENT made messages (.desktop file) - always resolve ours
    
    In case of conflict in i18n, keep the version of the branch "ours"
    To resolve a particular conflict, "git checkout --ours path/to/file.desktop"

commit 40e590ef048c5e372141719469fab5b4894b9731
Author: l10n daemon script <scripty at kde.org>
Date:   Sat Apr 4 11:48:23 2015 +0000

    Upgrade ECM and KF5 version requirements for 5.9.0 release.

commit 2d81ae8688eae2176cf8c19da53f163a90cd9f1e
Author: l10n daemon script <scripty at kde.org>
Date:   Sat Apr 4 07:59:03 2015 +0000

    Upgrade KF5 version to 5.9.0.

commit a92126088bda80b57f7c89a229203671ff53c260
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Mon Mar 16 17:10:12 2015 +0100

    Add a unit test which performs testing a shortcut
    
    Uses X11's XTEST extension to simulate keypress/release.
    
    One of the tested shortcuts needed to have the key changed as it seems
    to be that there is no keycode for F28 by default.
    
    REVIEW: 122979

commit dcb5c0403c5caad901a46b2ae496078af0a90d12
Author: Kai Uwe Broulik <kde at privat.broulik.de>
Date:   Tue Mar 10 22:19:39 2015 +0100

    Guard kglobalaccel against QApplication
    
    Changelog: KGlobalAccel no longer needs a QApplication to work
    
    REVIEW: 122590

commit 81a8dac96efe4471bdb949567d1041775676e94a
Author: l10n daemon script <scripty at kde.org>
Date:   Mon Mar 2 10:22:54 2015 +0000

    SVN_SILENT made messages (.desktop file)

commit 5bd2c70dc02ef58da67408a84b166b5c882b9f70
Author: Alex Merry <alex.merry at kde.org>
Date:   Sat Feb 28 13:19:07 2015 +0000

    Use PATH_VARS feature of ecm_configure_package_config_file.
    
    This makes specifying absolute paths on the commandline that are then
    encoded into the config file work.

commit 3525909432165d53c95981066143086b7af045c3
Author: l10n daemon script <scripty at kde.org>
Date:   Wed Feb 25 14:19:29 2015 +0000

    Upgrade ECM and KF5 version requirements for 5.8.0 release.

commit f44a87e673119238bc9edf9f96834f0a663b49d9
Author: Montel Laurent <montel at kde.org>
Date:   Wed Feb 25 08:55:35 2015 +0100

    Remove virtual

commit 61e2a156678eef033b2629f7c72530dc78d7c3ac
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Thu Feb 19 10:42:01 2015 +0100

    Set the activation timestamp as a dynamic property on the QAction
    
    This provides support for the case that QX11Info is not used and the
    timestamp is needed nevertheless.
    
    REVIEW: 122637
    CHANGELOG: Activation timestamp set as dynamic property on triggered QAction.

commit 341a9f20c51117df9ba7d1873b7bd47a0d5936a3
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Mon Feb 23 10:00:45 2015 +0100

    Add runtime checks before calling into QX11Info
    
    Just because we build with X11 support, doesn't mean we run on
    X11. This fixes runtime warnings when running applications on
    platform wayland.

commit 54e4a83b123d3158592af1a6c6c08f28cbb9f1d8
Author: l10n daemon script <scripty at kde.org>
Date:   Sun Feb 15 22:35:41 2015 +0000

    Upgrade KF5 version to 5.8.0.

commit aec86e3e1df9537e9be77df1a9be98e9e9e547a8
Author: Kevin Funk <kfunk at kde.org>
Date:   Fri Feb 13 13:31:27 2015 +0100

    Use Q_DECL_OVERRIDE where possible
    
    REVIEW: 122542

commit 91ec58740208e18bdbcc75db2a7b055b20d8f9d2
Author: Nick Shaforostoff <shafff at ukr.net>
Date:   Sun Jan 25 17:30:08 2015 +0000

    string optimization
    
    act accroding to
    https://qt.gitorious.org/qt/qtbase/commit/bf1df558461f21827eaad9d5d9541def784980a2
    http://woboq.com/blog/qstringliteral.html
    http://catchchallenger.first-world.info/wiki/Benchmark_for_conception#String
    
    no new static qstrings were added

commit f9eb427b293c40eec96784e059054bafd431c9bc
Author: l10n daemon script <scripty at kde.org>
Date:   Fri Jan 23 20:39:45 2015 +0000

    Upgrade ECM and KF5 version requirements for 5.7.0 release.

commit 93c0ac88afa055dfe3ab45b862979a565b40c908
Author: Patrick Spendrin <ps_ml at gmx.de>
Date:   Tue Jan 20 22:06:23 2015 +0100

    some minor fixes for windows
    
    REVIEW: 122177

commit 58364f32b1e3537db0da8b762cbfc6da46beb668
Author: Patrick Spendrin <ps_ml at gmx.de>
Date:   Tue Jan 20 22:05:57 2015 +0100

    make windows backend work again

commit 72b42797fad6c1a657ccee2ff18cae56efa846b5
Author: Patrick Spendrin <ps_ml at gmx.de>
Date:   Tue Jan 20 22:01:18 2015 +0100

    properly guard warning macro

commit 745ebffdbf687997bf18b89d2358429b834d2817
Author: Kevin Funk <kfunk at kde.org>
Date:   Mon Jan 19 23:52:49 2015 +0100

    Run convert-to-cmake-automoc.pl over files

commit 0a86f2372ec552eee8e0dbe433563292022f389c
Author: David Edmundson <kde at davidedmundson.co.uk>
Date:   Mon Jan 12 16:26:32 2015 +0100

    Fix crash in KGlobalAccel X11 runtime shutdown
    
    As kglobalaccel is no longer a kdeinit executable it is not killed
    gracefully in shutdown, when a user logs out it will be killed as the X
    connection is removed.
    
    GlobalShortcutsRegistry on deletion calls grabKey(key, false) to remove
    any remaining grabs, since the X connection has gone any XCB results in
    a crash.
    
    This patch adds a guard around that.
    
    REVIEW: 122019

commit 8d6e5961efefad679a9c7089d876645f75f7818f
Author: Alex Merry <alex.merry at kde.org>
Date:   Sat Jan 10 17:46:27 2015 +0000

    Update installation variables.

commit 93de81ce52511abdb83c5a78a483a310e019998a
Author: Christoph Cullmann <cullmann at kde.org>
Date:   Thu Jan 8 18:33:30 2015 +0100

    fix linking

commit 23786b7bc13750d363804bfb3100bdfe528382c2
Author: Christoph Cullmann <cullmann at kde.org>
Date:   Thu Jan 8 18:32:16 2015 +0100

    fix kWarning errors, seems this file hasn't been compiled since long

commit 9791e69740b69fad0f24898f935b7b095fa2dd38
Author: Christoph Cullmann <cullmann at kde.org>
Date:   Thu Jan 8 18:25:51 2015 +0100

    start to fix kglobalaccel for mac
    1) guard XCB, too, not only X11
    2) actually add the mac file for compilation
    3) fix missing header

commit f9b00950ccc1f9816fad994fe3d60a6ae0989474
Author: l10n daemon script <scripty at kde.org>
Date:   Wed Jan 7 09:01:42 2015 +0000

    SVN_SILENT made messages (.desktop file)

commit ab489851ac2ef3134b14540164a8db693c8119ac
Author: Martin Klapetek <mklapetek at kde.org>
Date:   Tue Jan 6 21:04:02 2015 +0100

    Replace Q_WS_* macros to Q_OS_* macros
    
    REVIEW: 121887

commit 41b7fb45a8f0b8f3728740089bd0f5cc0934361f
Author: Martin Klapetek <mklapetek at kde.org>
Date:   Tue Jan 6 21:02:06 2015 +0100

    Set the translation domain of the daemon to kglobalaccel5

commit 682929b038babb65caa524382f8f283173e94343
Author: Martin Klapetek <mklapetek at kde.org>
Date:   Tue Jan 6 20:29:14 2015 +0100

    Extract i18n strings into kglobalaccel5.pot
    
    Should help coinstallability

commit 52a3479f4cd2a9ca4b7e4f1b658b2c142abcc321
Author: Martin Klapetek <mklapetek at kde.org>
Date:   Tue Jan 6 20:03:08 2015 +0100

    Remove #include for removed header

commit 504446f2f82ca450933a73f57fe5739ab82b89a3
Author: Martin Klapetek <mklapetek at kde.org>
Date:   Tue Jan 6 15:56:36 2015 +0100

    Remove the QWS part of the runtime module
    
    QWS is no more

commit 95d4ac8b5948c46bce9af97e6ad61c29c09c5e40
Author: Martin Klapetek <mklapetek at kde.org>
Date:   Tue Jan 6 15:55:16 2015 +0100

    Upgrade KF5 version to 5.7.0.
    
    This allows Plasma to check for kglobalaccel >= 5.7 and disable the
    included copy of the runtime daemon if it's being built against 5.7

commit 172c2a7813d60a0bd6174fd39c72aa2e106aa2fd
Author: Martin Klapetek <mklapetek at kde.org>
Date:   Tue Jan 6 15:52:59 2015 +0100

    Move the runtime component into the framework
    
    This makes this framework a self-contained global shortcuts solution,
    independent of Plasma.
    
    With the added runtime daemon the KDE Frameworks tier gets bumped to
    tier 3 and some new dependencies are needed, namely:
    KConfig
    KCoreAddons
    KCrash
    KDBusAddons
    KI18n
    KWindowSystem
    XCB (optional)
    
    REVIEW: 121862
    CHANGELOG
    CCMAIL: jerome at leclan.ch

commit c5b52e094f83ea3df25ef099f46ba10589371650
Author: l10n daemon script <scripty at kde.org>
Date:   Wed Dec 31 14:22:57 2014 +0000

    Upgrade ECM and KF5 version requirements for 5.6.0 release.

commit 24387bead8e3008856f516e3ed623dc8738168a0
Author: l10n daemon script <scripty at kde.org>
Date:   Wed Dec 17 16:25:57 2014 +0000

    Upgrade KF5 version to 5.6.0.

commit 25a328f94d35cacf17d75e3fe9452a6bda49c2c6
Author: l10n daemon script <scripty at kde.org>
Date:   Tue Dec 2 16:46:34 2014 +0000

    Upgrade ECM and KF5 version requirements for 5.5.0 release.

commit 7a614f29db3a0fbdcf6fe7ce2897c83ed505c11c
Author: l10n daemon script <scripty at kde.org>
Date:   Wed Nov 5 20:00:56 2014 +0000

    Upgrade KF5 version to 5.5.0.

commit 28a85f48cad78d1ed223804c4b2508e7fdc18d10
Author: l10n daemon script <scripty at kde.org>
Date:   Fri Oct 31 20:17:08 2014 +0000

    Upgrade ECM and KF5 version requirements for 5.4.0 release.

commit fd745a70f2e300c1bcf337c07931640e3a350071
Author: l10n daemon script <scripty at kde.org>
Date:   Thu Oct 23 12:51:17 2014 +0000

    Upgrade KF5 version to 5.4.0.

commit 1f7bdef0145741f76a1b833ea0c5dc8c0a09f6e8
Author: l10n daemon script <scripty at kde.org>
Date:   Fri Oct 3 17:55:06 2014 +0000

    Upgrade ECM and KF5 version requirements for 5.3.0 release.

commit 2ad819f49cd1d24c09e3a2f0a7e2119bbb2baa23
Author: l10n daemon script <scripty at kde.org>
Date:   Fri Sep 12 09:11:25 2014 +0000

    Upgrade KF5 version to 5.3.0.

commit 80c01e76441f02b7766c83c20bce0ed604179a2e
Author: l10n daemon script <scripty at kde.org>
Date:   Sun Sep 7 23:25:11 2014 +0000

    Upgrade ECM and KF5 version requirements for 5.2.0 release.

commit 56633a127a3cebbd6636537aa5410ed73eec6f33
Author: l10n daemon script <scripty at kde.org>
Date:   Fri Sep 5 22:23:00 2014 +0000

    Upgrade KF5 version for 5.2.0 release.

commit 787a52553c53563851b2a2014a12dfdb20242b34
Author: Denis Steckelmacher <steckdenis at yahoo.fr>
Date:   Wed Aug 13 10:03:13 2014 +0200

    Add metadata about the QMake and CMake packages installed by this framework and remove Links from README.md

commit 36a32027ca5c49c3b1b8cd49f52006e44b6ab970
Author: l10n daemon script <scripty at kde.org>
Date:   Sat Aug 2 08:18:39 2014 +0000

    Upgrade ECM and KF5 version requirements for 5.1.0 release.

commit 43f0478e8b1c2b47ed9e2fbf71607101d63090db
Author: l10n daemon script <scripty at kde.org>
Date:   Fri Aug 1 17:09:49 2014 +0000

    Upgrade KF5 version.

commit c818116a5d202f444b4afcb8ab902b7ca0e758af
Author: Montel Laurent <montel at kde.org>
Date:   Wed Jul 9 14:51:19 2014 +0200

    ifndef KDE_NO_DEPRECATED -> ifndef KGLOBALACCEL_NO_DEPRECATED ok'ed by david

commit 46dc641175994185934b3231816d6a7cd48a2a71
Author: David Faure <faure at kde.org>
Date:   Tue Jul 1 20:15:41 2014 +0200

    Upgrade ECM version requirement to 1.0.0 after all.

commit 4acfa0d99597aeae529e58c4e5b9bcd12311a7e3
Author: David Faure <faure at kde.org>
Date:   Tue Jul 1 15:31:28 2014 +0200

    Upgrade ECM and KF5 version requirements.

commit c01ef512cbe40b3f42e33a08c5f8b6b576c0453b
Author: David Faure <faure at kde.org>
Date:   Tue Jul 1 12:36:36 2014 +0200

    Upgrade KF5 version.

commit 4caa63d655d603268d46c98d38a39337dfed04c9
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Tue Jul 1 09:50:34 2014 +0200

    Update actionShortcuts on auto loading shortcuts
    
    When using auto-loading the shortcut needs to be updated from what the
    daemon returns. This had not been done yet and KGlobalAccel still kept
    the shortcut passed in.
    
    With this change the autotests pass and the global shortcut KCM shows
    the used shortcuts properly.
    
    REVIEW: 119053

commit 78239a457771f4486ea8a3924290ddc26e8bccaa
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Tue Jul 1 09:36:59 2014 +0200

    Update actionShortcuts when daemon emits yourShortcutGotChanged
    
    Without updating the shortcut kept in actionShortcuts KGlobalAccel
    still returns the old shortcut when invoking the shortcut() method.
    
    The unit test for this was unfortunately broken as it checked the
    wrong QAction. This is also fixed with this change.

commit 54a4379651d832c11f24bdc48339bf4af1538798
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Tue Jul 1 09:19:20 2014 +0200

    Set componentName and DisplayName on QActions in KGlobalShortcutTest
    
    This fixes the testFindActionByKey.

commit 49ea0513c4325ea8bd329acbbe473c7be7d630a2
Author: Martin Gräßlin <mgraesslin at kde.org>
Date:   Fri Jun 20 11:56:04 2014 +0200

    Introduce convenient methods to set active and default shortcut
    
    Simplifies the setting of shorctus when default and active should be
    the same or if only one shortcut is needed.
    
    REVIEW: 118844

commit 77342ecc6553b4bd92153358a9e0b78409cb1e4c
Author: Alex Merry <alex.merry at kde.org>
Date:   Sat Jun 21 15:40:22 2014 +0100

    Remove NAME_PREFIX from ecm_add_tests calls

commit fa014fa571414f99c3436e5e3f8b04e637125022
Author: David Faure <faure at kde.org>
Date:   Sun Jun 1 12:39:58 2014 +0200

    Upgrade ECM and KF5 version requirements.

commit 5ae3ea85e46db10bc9ca7db5c2bf293e93fbf3b4
Author: David Faure <faure at kde.org>
Date:   Sun Jun 1 11:46:11 2014 +0200

    Upgrade KF5 version.

commit 32f94c22d95171822ed87803acf690bf6da16a40
Author: Alex Richardson <arichardson.kde at gmail.com>
Date:   Thu May 8 00:46:18 2014 +0200

    Use ecm_add_tests instead of custom macro
    
    This fixes running nmake test on Windows

commit 3cbad6ad8e033daef568843901b4c41078ff87a3
Author: David Faure <faure at kde.org>
Date:   Sun May 4 22:10:53 2014 +0200

    port to ecm_install_po_files_as_qm

commit ab651179dff00e4c2c714a54c529b2e445af4eb2
Author: David Faure <faure at kde.org>
Date:   Sun May 4 20:58:44 2014 +0200

    Upgrade ECM and KF5 version requirements.

commit e3c3ab3dadf33ff9564bdb986f04c94696477a6f
Author: David Faure <faure at kde.org>
Date:   Sun May 4 14:58:30 2014 +0200

    Upgrade KF5 version.

commit 234133d689954f48ec2b87890a3de3c92b1b4015
Author: David Faure <faure at kde.org>
Date:   Fri May 2 23:45:37 2014 +0200

    fix include path in .pri files

commit 7e1479b2ee37da2aa055f75d9231d87e61459818
Author: Kevin Ottens <ervin at kde.org>
Date:   Sat Apr 26 15:28:09 2014 +0200

    Add framework information in metainfo.yaml files

commit f992ebd7f8eb39d075b6f82cc060cdc5e288cfea
Author: David Faure <faure at kde.org>
Date:   Sat Apr 26 13:31:57 2014 +0200

    cleanup after non-idempotent script

commit 252b40a9e86849e51425745b2602ad293666bc8a
Author: David Faure <faure at kde.org>
Date:   Sat Apr 26 13:17:54 2014 +0200

    separate framework version from dependencies version, to be able to increase the version in two steps at release time, so CI doesn't break

commit ea2131478125bea3019726dcac337d8eb5472312
Author: Alex Merry <alex.merry at kde.org>
Date:   Sat Apr 26 12:10:37 2014 +0100

    Use KF5_INCLUDE_INSTALL_DIR and KF5_INSTALL_TARGETS_DEFAULT_ARGS
    
    This is instead of INCLUDE_INSTALL_DIR and INSTALL_TARGETS_DEFAULT_ARGS,
    which will lose the "KF5" suffix from the include path.

commit 61cbf6532bbd4cec9adc5e373e22b662a3003f2b
Author: Kevin Ottens <ervin at kde.org>
Date:   Sat Apr 26 12:21:52 2014 +0200

    Rename the yaml file per new policy

commit b5c1bc5d9e81da7f844dbb359ae660632117e00d
Author: Nicolás Alvarez <nicolas.alvarez at gmail.com>
Date:   Mon Apr 21 16:32:31 2014 -0300

    Remove check left over from monolithic kdelibs.

commit 8cdf7054e9b591e9cfdca37df9979e113df2669d
Author: Aurélien Gâteau <agateau at kde.org>
Date:   Thu Apr 17 10:56:09 2014 +0200

    Add _qt suffix to qt-based .po files

commit bc044523d03392e5ad7c2f524a0172f7adaf1ee2
Author: Aurélien Gâteau <agateau at kde.org>
Date:   Wed Apr 16 11:00:22 2014 +0200

    Use new ECMQtCreateQmFromPoFiles API

commit 069dc7cdbfd6ba2cb4da8a81e9e0e34327d71cf4
Author: Aurélien Gâteau <agateau at kde.org>
Date:   Wed Apr 2 17:26:40 2014 +0200

    Extract strings from .ui with extract_tr_strings

commit 002bcf4af7aea33d61a9b243d0e42a2f10ed7c44
Author: Aurélien Gâteau <agateau at kde.org>
Date:   Wed Apr 2 14:15:16 2014 +0200

    Fix typo in find command

commit 6e4bd71f274e821211e4a7f44d407f4bafce08d3
Author: Aurélien Gâteau <agateau at kde.org>
Date:   Mon Mar 31 16:14:41 2014 +0200

    Build and install translations

commit 3dc933514a4ab943dbce27ec2e72524eb603a0b5
Author: David Faure <faure at kde.org>
Date:   Fri Mar 28 19:16:50 2014 +0100

    Upgrade ECM version requirement and KF5 version.

commit 5847bba4f72073e3b3f81d17786c5c042d49437c
Author: Aurélien Gâteau <agateau at kde.org>
Date:   Wed Mar 26 14:35:40 2014 +0100

    Update to latest extract-tr-strings signature

commit 4b73de6428f1522de66e9ef176ecb7f42c4cc570
Author: Aurélien Gâteau <agateau at kde.org>
Date:   Wed Mar 26 13:45:54 2014 +0100

    Add Messages.sh

commit 4c03e1e455194a1f7679a112fd25fe388949f8de
Author: Christophe Giboudeaux <cgiboudeaux at gmx.com>
Date:   Fri Mar 21 15:53:40 2014 +0100

    Rename the deprecated annotations

commit 14b4c793676bdb06e809dba347bf9ae6caddf990
Author: David Faure <faure at kde.org>
Date:   Sat Mar 1 12:50:49 2014 +0100

    Upgrade ECM version requirement and KF5 version.

commit 82cb926fdc7e70c41b197f29dd5fb442d072bd6b
Author: Jonathan Riddell <jr at jriddell.org>
Date:   Tue Feb 25 20:11:27 2014 +0000

    set SOVERSION to 5

commit 86cf12251867c27ae22c312d967939e5036bb77d
Author: Alex Richardson <arichardson.kde at gmail.com>
Date:   Thu Feb 20 17:34:00 2014 +0100

    Fix MSVC build of kglobalshortcuttest

commit bb91fd40e619a03647e3a77286a9eaf98bf0f6cf
Author: Alex Merry <kde at randomguy3.me.uk>
Date:   Tue Feb 18 16:13:29 2014 +0000

    Use ecm_configure_package_config_file
    
    Ported with:
    sed -i -e 's/\(include(\)CMake\(PackageConfigHelpers)\)/\1ECM\2/' \
           -e 's/\<\(configure_package_config_file\)/ecm_\1/' \
           CMakeLists.txt
    
    See http://commits.kde.org/extra-cmake-modules/139f60d81653888f696ef433

commit d97b70f666df0b205d1d39121e12687dbc153b01
Author: David Faure <faure at kde.org>
Date:   Sun Feb 16 13:18:52 2014 +0100

    Use the new syntax for ecm_generate_headers()

commit d507896f87bd40948f2db920d7aa3924a8d7ae76
Author: Harald Fernengel <harry at kdevelop.org>
Date:   Fri Feb 14 19:58:04 2014 +0100

    Build on Mac OS X
    
    Don't go looking for X11 on OS X

commit c899bdd67ab48e0645e25bfaf7c40a6e9d31cbcf
Author: David Faure <faure at kde.org>
Date:   Wed Feb 5 00:02:37 2014 +0100

    Upgrade ECM version requirement; fix KF5 version.

commit 7c04a29e9159a154398cf982203080b136d94dba
Author: David Faure <faure at kde.org>
Date:   Sat Jan 25 11:20:04 2014 +0100

    Generate and install .pri file

commit 1d861e0d0513b5e67bdf71e4879ce405fcdcf971
Author: Jonathan Riddell <jr at jriddell.org>
Date:   Tue Jan 21 16:38:10 2014 +0000

    fix rename of file

commit fc7deb7e9d7a641495729380746821dae140fb6b
Author: Jonathan Riddell <jr at jriddell.org>
Date:   Tue Jan 21 16:22:49 2014 +0000

    rename dbus file during install to prevent clash with kdelibs4
    REVIEW:115078

commit c6adb523008d367f9a891088aee5bdcd0ff4030d
Author: Cornelius Schumacher <schumacher at kde.org>
Date:   Sun Jan 12 20:45:38 2014 +0100

    Update REAMDE

commit 8abcad6de5017ad5dec7e838663df3295b6112e5
Author: Michael Palimaka <kensington at gentoo.org>
Date:   Sat Jan 11 13:04:58 2014 +1100

    Fix build when built without X.
    
    REVIEW: 114960

commit b928bdd9b505cf04a87426db436c554e4028d3cf
Author: Alex Merry <kde at randomguy3.me.uk>
Date:   Tue Jan 7 19:09:18 2014 +0000

    Add include(GenerateExportHeader) to CMakeLists.txt
    
    We should not depend on the fact that KDECompilerSettings.cmake happens
    to include it when we use generate_export_header().

commit c4105e4343a8fac1822ad6ae65c9ed796bd9f200
Author: David Faure <faure at kde.org>
Date:   Fri Jan 3 13:00:34 2014 +0100

    Install all headers into camelcase FrameworkName.

commit 7171218a23b5bad93fc515286f4377557d0ad65b
Author: David Faure <faure at kde.org>
Date:   Wed Jan 1 11:41:35 2014 +0100

    Generate forward headers.
    
    Install them in the proper directory.
    Let cmake find them.

commit 9cc2528826cd63937b466b677d096492f99b482d
Author: David Faure <faure at kde.org>
Date:   Sun Dec 29 12:13:17 2013 +0100

    set var before something else might change PACKAGE_PREFIX_DIR, as it happened in kio

commit fd7c3cf2945a46d0a7ff513fb7ff2bf008660ba8
Author: David Faure <faure at kde.org>
Date:   Sun Dec 29 10:41:37 2013 +0100

    Move kf5 version to a cmake var like in tier2/3/4 modules, for easier scripting

commit 9ed3c6d1cd9179ec6abd539094785bfb62f372a6
Author: Aurélien Gâteau <agateau at kde.org>
Date:   Fri Dec 20 20:11:24 2013 +0100

    Add README.md and yaml files

commit 7177e553d4c4337bf30ec680573a563ec45d1c6e
Author: Alex Merry <kde at randomguy3.me.uk>
Date:   Wed Dec 18 14:09:13 2013 +0000

    Add .reviewboardrc

commit 75265c7889b9316998cf36e71b23a1cdb495ff5a
Author: David Faure <faure at kde.org>
Date:   Wed Dec 18 09:54:04 2013 +0100

    Code reformatted using kde-dev-scripts/astyle-kdelibs.
    Use git blame -w fe5ecb7 to show authorship as it was before this commit.

commit fe5ecb72f35461c975ae1eb7208ea306e59fc228
Author: Jenkins CI <null at kde.org>
Date:   Wed Dec 18 00:45:18 2013 +0000

    Move kglobalaccel code to the root directory.

commit 3b866027f57f0026cf95ec491efacdfa3f696f0a
Author: Jenkins CI <null at kde.org>
Date:   Wed Dec 18 00:45:18 2013 +0000

    Initial import from the monolithic kdelibs.
    
    This is the beginning of revision history for this module. If you
    want to look at revision history older than this, please refer to the
    techbase wiki for how to use Git history grafting. At the time of
    writing, this wiki is located here:
    
    http://community.kde.org/Frameworks/GitOldHistory
    
    If you have already performed the grafting and you don't see any
    history beyond this commit, try running "git log" with the "--follow"
    argument.
    
    Branched from the monolithic repo, kdelibs frameworks branch, at commit
    162066dbbecde401a7347a1cff4fe72a9c919f58

-----------------------------------------------------------------------

-- 
kglobalaccel packaging



More information about the pkg-kde-commits mailing list