diff --git a/kde-cli-tools-5.13.5.tar.xz b/kde-cli-tools-5.13.5.tar.xz deleted file mode 100644 index 9ab7143..0000000 --- a/kde-cli-tools-5.13.5.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:170aee9169a7e5e8b46f950f4732a8ad095292a1bc4ddbab8d8d920b04f92a5c -size 585436 diff --git a/kde-cli-tools-5.13.90.tar.xz b/kde-cli-tools-5.13.90.tar.xz new file mode 100644 index 0000000..598dfa5 --- /dev/null +++ b/kde-cli-tools-5.13.90.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:714c3eb0fc74160d3d9b72501748b35ac001cb3f9ce157a96a79f0416edb53fa +size 585652 diff --git a/kde-cli-tools5.changes b/kde-cli-tools5.changes index 065b33c..9738e15 100644 --- a/kde-cli-tools5.changes +++ b/kde-cli-tools5.changes @@ -1,3 +1,16 @@ +------------------------------------------------------------------- +Thu Sep 13 17:24:59 UTC 2018 - fabian@ritter-vogt.de + +- Update to 5.13.90 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.13.90.php +- Changes since 5.13.5: + * QT_MIN_VERSIONS is Qt 5.11 for Plasma 5.14. Agreed at kickoff meeting. Set everywhere for clearity and consistency. + * [KEditFileType] Show application icon in preference list + * Make build with strict compile flags +- Refresh kdesu-add-some-i18n-love.patch + ------------------------------------------------------------------- Tue Sep 4 10:58:40 UTC 2018 - fabian@ritter-vogt.de diff --git a/kde-cli-tools5.spec b/kde-cli-tools5.spec index a6a7c0d..b075d05 100644 --- a/kde-cli-tools5.spec +++ b/kde-cli-tools5.spec @@ -18,13 +18,13 @@ %bcond_without lang Name: kde-cli-tools5 -Version: 5.13.5 +Version: 5.13.90 Release: 0 Summary: Additional CLI tools for KDE applications License: GPL-2.0-or-later Group: System/GUI/KDE Url: http://www.kde.org -Source: http://download.kde.org/stable/plasma/%{version}/kde-cli-tools-%{version}.tar.xz +Source: http://download.kde.org/unstable/plasma/%{version}/kde-cli-tools-%{version}.tar.xz # PATCH-FIX-OPENSUSE kdesu-add-some-i18n-love.patch -- boo#852256 Patch0: kdesu-add-some-i18n-love.patch BuildRequires: extra-cmake-modules >= 1.3.0 diff --git a/kdesu-add-some-i18n-love.patch b/kdesu-add-some-i18n-love.patch index a52c504..062c85c 100644 --- a/kdesu-add-some-i18n-love.patch +++ b/kdesu-add-some-i18n-love.patch @@ -11,11 +11,11 @@ BUG: boo#852256 kdesu/kdesu.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) -Index: kde-cli-tools-5.12.80git.20180210T155619~a94e055/kdesu/kdesu.cpp +Index: kde-cli-tools-5.13.80git.20180712T134017~d95c4ef/kdesu/kdesu.cpp =================================================================== ---- kde-cli-tools-5.12.80git.20180210T155619~a94e055.orig/kdesu/kdesu.cpp -+++ kde-cli-tools-5.12.80git.20180210T155619~a94e055/kdesu/kdesu.cpp -@@ -160,11 +160,11 @@ int main(int argc, char *argv[]) +--- kde-cli-tools-5.13.80git.20180712T134017~d95c4ef.orig/kdesu/kdesu.cpp ++++ kde-cli-tools-5.13.80git.20180712T134017~d95c4ef/kdesu/kdesu.cpp +@@ -157,11 +157,11 @@ int main(int argc, char *argv[]) if (result == 127) { @@ -29,25 +29,25 @@ Index: kde-cli-tools-5.12.80git.20180210T155619~a94e055/kdesu/kdesu.cpp } return result; -@@ -199,7 +199,7 @@ static int startApp(QCommandLineParser& +@@ -196,7 +196,7 @@ static int startApp(QCommandLineParser& prompt = false; // Get target uid -- QByteArray user = p.value("u").toLocal8Bit(); -+ QByteArray user = p.value("u").toUtf8(); +- QByteArray user = p.value(QStringLiteral("u")).toLocal8Bit(); ++ QByteArray user = p.value(QStringLiteral("u")).toUtf8(); QByteArray auth_user = user; struct passwd *pw = getpwnam(user); if (pw == nullptr) -@@ -259,7 +259,7 @@ static int startApp(QCommandLineParser& +@@ -256,7 +256,7 @@ static int startApp(QCommandLineParser& // Get command - if (p.isSet("c")) + if (p.isSet(QStringLiteral("c"))) { -- command = p.value("c").toLocal8Bit(); -+ command = p.value("c").toUtf8(); +- command = p.value(QStringLiteral("c")).toLocal8Bit(); ++ command = p.value(QStringLiteral("c")).toUtf8(); // Accepting additional arguments here is somewhat weird, // but one can conceive use cases: have a complex command with // redirections and additional file names which need to be quoted -@@ -347,7 +347,7 @@ static int startApp(QCommandLineParser& +@@ -344,7 +344,7 @@ static int startApp(QCommandLineParser& // } KUser u; @@ -56,7 +56,7 @@ Index: kde-cli-tools-5.12.80git.20180210T155619~a94e055/kdesu/kdesu.cpp if (keep && !terminal && !just_started) { -@@ -459,7 +459,7 @@ static int startApp(QCommandLineParser& +@@ -456,7 +456,7 @@ static int startApp(QCommandLineParser& } else if (keep && have_daemon) { @@ -65,7 +65,7 @@ Index: kde-cli-tools-5.12.80git.20180210T155619~a94e055/kdesu/kdesu.cpp client.setPriority(priority); client.setScheduler(scheduler); int result = client.exec(command, user, options, env); -@@ -478,7 +478,7 @@ static int startApp(QCommandLineParser& +@@ -475,7 +475,7 @@ static int startApp(QCommandLineParser& proc.setPriority(priority); proc.setScheduler(scheduler); proc.setCommand(command);