1
0

Plasma 5.14 Beta - I'll try to add tarball signatures and .keyring in a followup sr. The unresolvables are due to a missing verbump in KUF, but it built fine before adjusting kf5_version.

OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/kde-cli-tools5?expand=0&rev=205
This commit is contained in:
Wolfgang Bauer
2018-09-15 12:29:39 +00:00
committed by Git OBS Bridge
parent 5e4010a2b6
commit 130166b7f3
5 changed files with 32 additions and 19 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:170aee9169a7e5e8b46f950f4732a8ad095292a1bc4ddbab8d8d920b04f92a5c
size 585436

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:714c3eb0fc74160d3d9b72501748b35ac001cb3f9ce157a96a79f0416edb53fa
size 585652

View File

@@ -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 Tue Sep 4 10:58:40 UTC 2018 - fabian@ritter-vogt.de

View File

@@ -18,13 +18,13 @@
%bcond_without lang %bcond_without lang
Name: kde-cli-tools5 Name: kde-cli-tools5
Version: 5.13.5 Version: 5.13.90
Release: 0 Release: 0
Summary: Additional CLI tools for KDE applications Summary: Additional CLI tools for KDE applications
License: GPL-2.0-or-later License: GPL-2.0-or-later
Group: System/GUI/KDE Group: System/GUI/KDE
Url: http://www.kde.org 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 # PATCH-FIX-OPENSUSE kdesu-add-some-i18n-love.patch -- boo#852256
Patch0: kdesu-add-some-i18n-love.patch Patch0: kdesu-add-some-i18n-love.patch
BuildRequires: extra-cmake-modules >= 1.3.0 BuildRequires: extra-cmake-modules >= 1.3.0

View File

@@ -11,11 +11,11 @@ BUG: boo#852256
kdesu/kdesu.cpp | 16 ++++++++-------- kdesu/kdesu.cpp | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-) 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.13.80git.20180712T134017~d95c4ef.orig/kdesu/kdesu.cpp
+++ kde-cli-tools-5.12.80git.20180210T155619~a94e055/kdesu/kdesu.cpp +++ kde-cli-tools-5.13.80git.20180712T134017~d95c4ef/kdesu/kdesu.cpp
@@ -160,11 +160,11 @@ int main(int argc, char *argv[]) @@ -157,11 +157,11 @@ int main(int argc, char *argv[])
if (result == 127) if (result == 127)
{ {
@@ -29,25 +29,25 @@ Index: kde-cli-tools-5.12.80git.20180210T155619~a94e055/kdesu/kdesu.cpp
} }
return result; return result;
@@ -199,7 +199,7 @@ static int startApp(QCommandLineParser& @@ -196,7 +196,7 @@ static int startApp(QCommandLineParser&
prompt = false; prompt = false;
// Get target uid // Get target uid
- QByteArray user = p.value("u").toLocal8Bit(); - QByteArray user = p.value(QStringLiteral("u")).toLocal8Bit();
+ QByteArray user = p.value("u").toUtf8(); + QByteArray user = p.value(QStringLiteral("u")).toUtf8();
QByteArray auth_user = user; QByteArray auth_user = user;
struct passwd *pw = getpwnam(user); struct passwd *pw = getpwnam(user);
if (pw == nullptr) if (pw == nullptr)
@@ -259,7 +259,7 @@ static int startApp(QCommandLineParser& @@ -256,7 +256,7 @@ static int startApp(QCommandLineParser&
// Get command // Get command
if (p.isSet("c")) if (p.isSet(QStringLiteral("c")))
{ {
- command = p.value("c").toLocal8Bit(); - command = p.value(QStringLiteral("c")).toLocal8Bit();
+ command = p.value("c").toUtf8(); + command = p.value(QStringLiteral("c")).toUtf8();
// Accepting additional arguments here is somewhat weird, // Accepting additional arguments here is somewhat weird,
// but one can conceive use cases: have a complex command with // but one can conceive use cases: have a complex command with
// redirections and additional file names which need to be quoted // 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; KUser u;
@@ -56,7 +56,7 @@ Index: kde-cli-tools-5.12.80git.20180210T155619~a94e055/kdesu/kdesu.cpp
if (keep && !terminal && !just_started) 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) 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.setPriority(priority);
client.setScheduler(scheduler); client.setScheduler(scheduler);
int result = client.exec(command, user, options, env); 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.setPriority(priority);
proc.setScheduler(scheduler); proc.setScheduler(scheduler);
proc.setCommand(command); proc.setCommand(command);