From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kio/
Date: Wed, 18 Sep 2019 18:13:39 +0000 (UTC) [thread overview]
Message-ID: <1568830402.64d394aaceb8eae9f8e9ac72b556196b5aa2614f.asturm@gentoo> (raw)
commit: 64d394aaceb8eae9f8e9ac72b556196b5aa2614f
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 17 15:55:42 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Sep 18 18:13:22 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64d394aa
kde-frameworks/kio: 5.62.1 version bump
See also: https://mail.kde.org/pipermail/release-team/2019-September/011509.html
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
kde-frameworks/kio/Manifest | 1 +
kde-frameworks/kio/kio-5.62.1.ebuild | 82 ++++++++++++++++++++++++++++++++++++
2 files changed, 83 insertions(+)
diff --git a/kde-frameworks/kio/Manifest b/kde-frameworks/kio/Manifest
index 5839e00dfc4..f67a5343e87 100644
--- a/kde-frameworks/kio/Manifest
+++ b/kde-frameworks/kio/Manifest
@@ -1,2 +1,3 @@
DIST kio-5.60.0.tar.xz 3176868 BLAKE2B 7eb6c7f6ed6f8fa7ba3646039683fc29d7bd985dc042c11467b67a188223752c3ad024e0e990c87a826421c55dd612d7ed8e67799ddb729301d500624f40df31 SHA512 2aa596e4fa62e5f1666adb1850331cfeb1874fd6019ad951a8efad165484ebf2bd093ffe06b0b433956ff4a7b763c121be82841562b707435d9e84460528fa91
DIST kio-5.62.0.tar.xz 3191856 BLAKE2B 04405299c21ca62f0bfd0ea04c4f595ca246940f47bebceca9cb3025abbdb1ed67423e307619fbd5e9ba148534e060b9bd3c88e0b9ff7f539749cc6c97ae9a26 SHA512 1f8ee878f18496b78a6efbfdb5719acda68c182d6ab945b3075df9fdc8439fc1cabddd491e0c51bde3d127fc16e7890ac616074345b0602b354c6aee41413231
+DIST kio-5.62.1.tar.xz 3191600 BLAKE2B 36499aaad37354b2ff5193f8a4f15271be54e99a88095cd83413b0e524e2047dd60599aecc50c7731a03f6a3ba4db6a1dabdd2b8001469ba50df3d3f6b1e08ff SHA512 fd6e1700c3ade7f59fc2cfa98ea90ec20cc606a435cff00c2c01b6802a9348e4ab3b02cd97b2c1964e51935ca04b1c5bedd359eb8a041ade786417d286a09dfa
diff --git a/kde-frameworks/kio/kio-5.62.1.ebuild b/kde-frameworks/kio/kio-5.62.1.ebuild
new file mode 100644
index 00000000000..649d23dfa0c
--- /dev/null
+++ b/kde-frameworks/kio/kio-5.62.1.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KDE_DESIGNERPLUGIN="true"
+KDE_TEST="forceoptional"
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+DESCRIPTION="Framework providing transparent file and data management"
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="acl +handbook kerberos +kwallet X"
+
+# drop qtnetwork subslot operator when QT_MINIMAL >= 5.12.0
+RDEPEND="
+ $(add_frameworks_dep kauth)
+ $(add_frameworks_dep karchive)
+ $(add_frameworks_dep kbookmarks)
+ $(add_frameworks_dep kcodecs)
+ $(add_frameworks_dep kcompletion)
+ $(add_frameworks_dep kconfig)
+ $(add_frameworks_dep kconfigwidgets)
+ $(add_frameworks_dep kcoreaddons)
+ $(add_frameworks_dep kcrash)
+ $(add_frameworks_dep kdbusaddons)
+ $(add_frameworks_dep ki18n)
+ $(add_frameworks_dep kiconthemes)
+ $(add_frameworks_dep kitemviews)
+ $(add_frameworks_dep kjobwidgets)
+ $(add_frameworks_dep knotifications)
+ $(add_frameworks_dep kservice)
+ $(add_frameworks_dep ktextwidgets)
+ $(add_frameworks_dep kwidgetsaddons)
+ $(add_frameworks_dep kwindowsystem)
+ $(add_frameworks_dep kxmlgui)
+ $(add_frameworks_dep solid)
+ $(add_qt_dep qtdbus)
+ $(add_qt_dep qtgui)
+ $(add_qt_dep qtnetwork 'ssl' '' '5=')
+ $(add_qt_dep qtscript)
+ $(add_qt_dep qtwidgets)
+ $(add_qt_dep qtxml)
+ dev-libs/libxml2
+ dev-libs/libxslt
+ acl? (
+ sys-apps/attr
+ virtual/acl
+ )
+ handbook? ( $(add_frameworks_dep kdoctools) )
+ kerberos? ( virtual/krb5 )
+ kwallet? ( $(add_frameworks_dep kwallet) )
+ X? ( $(add_qt_dep qtx11extras) )
+"
+DEPEND="${RDEPEND}
+ $(add_qt_dep qtconcurrent)
+ test? ( sys-libs/zlib )
+ X? (
+ x11-base/xorg-proto
+ x11-libs/libX11
+ x11-libs/libXrender
+ )
+"
+PDEPEND="
+ $(add_frameworks_dep kded)
+"
+
+# tests hang
+RESTRICT+=" test"
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake-utils_use_find_package acl ACL)
+ $(cmake-utils_use_find_package handbook KF5DocTools)
+ $(cmake-utils_use_find_package kerberos GSSAPI)
+ $(cmake-utils_use_find_package kwallet KF5Wallet)
+ $(cmake-utils_use_find_package X X11)
+ )
+
+ kde5_src_configure
+}
next reply other threads:[~2019-09-18 18:13 UTC|newest]
Thread overview: 180+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-18 18:13 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-15 20:56 [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kio/ Andreas Sturmlechner
2025-02-21 20:39 Andreas Sturmlechner
2025-02-14 15:24 Andreas Sturmlechner
2025-02-02 22:46 Andreas Sturmlechner
2025-01-27 18:43 Andreas Sturmlechner
2025-01-26 11:21 Arthur Zamarin
2025-01-10 8:37 WANG Xuerui
2024-12-17 21:47 Andreas Sturmlechner
2024-12-16 22:28 Andreas Sturmlechner
2024-12-04 22:07 Andreas Sturmlechner
2024-11-27 18:44 Andreas Sturmlechner
2024-11-26 19:25 Andreas Sturmlechner
2024-11-20 19:25 Arthur Zamarin
2024-11-20 19:25 Arthur Zamarin
2024-11-20 19:25 Arthur Zamarin
2024-11-20 3:51 Sam James
2024-11-08 14:38 Andreas Sturmlechner
2024-10-11 12:57 Andreas Sturmlechner
2024-10-09 16:55 Andreas Sturmlechner
2024-10-04 16:37 Arthur Zamarin
2024-09-14 3:23 Andreas Sturmlechner
2024-09-12 17:21 Arthur Zamarin
2024-08-31 10:58 Andreas Sturmlechner
2024-08-31 10:48 Arthur Zamarin
2024-08-30 22:50 Jakov Smolić
2024-08-30 22:50 Jakov Smolić
2024-08-30 21:10 Sam James
2024-08-30 18:11 Andreas Sturmlechner
2024-08-30 18:11 Andreas Sturmlechner
2024-08-30 14:48 Andreas Sturmlechner
2024-08-09 13:14 Andreas Sturmlechner
2024-07-16 16:32 Andreas Sturmlechner
2024-07-12 15:05 Andreas Sturmlechner
2024-05-27 18:13 Arthur Zamarin
2024-05-19 19:29 Andreas Sturmlechner
2024-05-13 20:26 Andreas Sturmlechner
2024-04-14 20:03 Andreas Sturmlechner
2024-03-24 21:03 Andreas Sturmlechner
2024-03-24 21:03 Andreas Sturmlechner
2024-03-24 21:03 Andreas Sturmlechner
2024-03-19 9:10 Andreas Sturmlechner
2024-03-02 9:12 Andreas Sturmlechner
2024-03-01 14:00 Arthur Zamarin
2024-02-11 20:15 Andreas Sturmlechner
2024-02-02 12:44 Arthur Zamarin
2024-02-01 21:18 Andreas Sturmlechner
2024-01-14 22:28 Andreas Sturmlechner
2024-01-05 8:39 Andreas Sturmlechner
2024-01-05 8:39 Andreas Sturmlechner
2023-12-20 15:11 Andreas Sturmlechner
2023-12-17 23:02 Andreas Sturmlechner
2023-12-15 16:22 Andreas Sturmlechner
2023-11-28 9:46 Andreas Sturmlechner
2023-11-12 9:44 Andreas Sturmlechner
2023-10-19 15:12 Andreas Sturmlechner
2023-09-26 19:09 Andreas Sturmlechner
2023-09-19 10:40 Andreas Sturmlechner
2023-09-10 11:44 Andreas Sturmlechner
2023-08-18 9:05 Andreas Sturmlechner
2023-08-18 8:26 Andreas Sturmlechner
2023-08-02 19:33 Andreas Sturmlechner
2023-07-08 16:06 Andreas Sturmlechner
2023-06-10 10:02 Andreas Sturmlechner
2023-05-13 21:25 Andreas Sturmlechner
2023-05-13 16:57 Andreas Sturmlechner
2023-04-08 14:06 Andreas Sturmlechner
2023-03-26 9:52 Andreas Sturmlechner
2023-03-23 8:11 Andreas Sturmlechner
2023-03-12 21:12 Andreas Sturmlechner
2023-03-11 18:19 Andreas Sturmlechner
2023-02-12 11:11 Andreas Sturmlechner
2023-02-05 13:54 Andreas Sturmlechner
2023-01-25 19:18 Andreas Sturmlechner
2023-01-25 19:16 Arthur Zamarin
2023-01-25 19:16 Arthur Zamarin
2023-01-25 19:16 Arthur Zamarin
2023-01-15 12:36 Andreas Sturmlechner
2023-01-14 23:34 Andreas Sturmlechner
2022-12-10 10:47 Andreas Sturmlechner
2022-11-14 14:17 Andreas Sturmlechner
2022-10-10 8:15 Andreas Sturmlechner
2022-09-13 13:23 Andreas Sturmlechner
2022-08-15 10:43 Andreas Sturmlechner
2022-08-15 7:46 Agostino Sarubbo
2022-08-14 8:31 Andreas Sturmlechner
2022-08-13 6:58 Agostino Sarubbo
2022-08-12 14:57 Arthur Zamarin
2022-08-06 7:45 Andreas Sturmlechner
2022-07-19 15:39 Andreas Sturmlechner
2022-07-19 13:29 Andreas Sturmlechner
2022-07-09 14:27 Andreas Sturmlechner
2022-06-29 19:53 Andreas Sturmlechner
2022-06-14 7:44 Andreas Sturmlechner
2022-06-12 19:41 Andreas Sturmlechner
2022-05-14 11:33 Andreas Sturmlechner
2022-05-04 20:50 Andreas Sturmlechner
2022-04-09 21:46 Andreas Sturmlechner
2022-03-13 19:23 Andreas Sturmlechner
2022-02-14 21:37 Andreas Sturmlechner
2022-01-08 21:15 Andreas Sturmlechner
2021-12-13 1:05 Sam James
2021-12-13 0:59 Sam James
2021-12-12 22:15 Andreas Sturmlechner
2021-12-08 15:08 Andreas Sturmlechner
2021-11-22 7:51 Agostino Sarubbo
2021-11-18 14:00 Jakov Smolić
2021-11-18 10:38 Andreas Sturmlechner
2021-11-13 20:01 Andreas Sturmlechner
2021-11-05 16:24 Andreas Sturmlechner
2021-10-11 11:01 Andreas Sturmlechner
2021-09-13 5:19 Andreas Sturmlechner
2021-07-16 15:21 Andreas Sturmlechner
2021-06-14 8:25 Andreas Sturmlechner
2021-05-30 15:51 Andreas Sturmlechner
2021-04-10 18:44 Andreas Sturmlechner
2021-04-04 13:23 Andreas Sturmlechner
2021-03-25 23:13 Andreas Sturmlechner
2021-03-15 15:57 Andreas Sturmlechner
2021-03-15 15:57 Andreas Sturmlechner
2021-03-13 16:33 Andreas Sturmlechner
2021-03-13 12:18 Andreas Sturmlechner
2021-02-17 22:13 Andreas Sturmlechner
2021-02-17 21:12 Sam James
2021-02-17 1:56 Sam James
2021-02-16 13:45 Sam James
2021-02-13 13:04 Andreas Sturmlechner
2021-02-12 21:50 Andreas Sturmlechner
2021-02-03 22:33 Andreas Sturmlechner
2021-01-11 8:04 Sam James
2021-01-10 14:06 Sam James
2021-01-10 9:07 Sam James
2021-01-09 10:15 Andreas Sturmlechner
2020-12-23 21:32 Andreas Sturmlechner
2020-12-12 18:02 Andreas Sturmlechner
2020-11-14 17:46 Andreas Sturmlechner
2020-10-15 18:48 Andreas Sturmlechner
2020-10-10 16:04 Andreas Sturmlechner
2020-09-29 12:49 Andreas Sturmlechner
2020-09-13 12:35 Andreas Sturmlechner
2020-09-13 12:35 Andreas Sturmlechner
2020-09-12 14:10 Andreas Sturmlechner
2020-09-12 12:38 Andreas Sturmlechner
2020-08-08 19:56 Andreas Sturmlechner
2020-08-08 10:58 Andreas Sturmlechner
2020-05-16 9:08 Andreas Sturmlechner
2020-05-15 8:16 Andreas Sturmlechner
2020-02-09 22:28 Andreas Sturmlechner
2020-02-09 22:28 Andreas Sturmlechner
2020-01-10 9:50 Andreas Sturmlechner
2020-01-10 1:26 Thomas Deutschmann
2019-12-23 3:25 Aaron Bauman
2019-12-22 22:48 Andreas Sturmlechner
2019-12-21 10:49 Mikle Kolyada
2019-01-16 16:59 Andreas Sturmlechner
2019-01-16 12:50 Andreas Sturmlechner
2018-12-01 19:00 Mikle Kolyada
2018-11-29 10:09 Andreas Sturmlechner
2018-10-10 11:48 Mikle Kolyada
2018-07-21 16:51 Andreas Sturmlechner
2018-06-16 7:04 Andreas Sturmlechner
2018-06-10 12:04 Mikle Kolyada
2018-06-10 9:20 Andreas Sturmlechner
2018-03-10 23:37 Andreas Sturmlechner
2018-02-18 17:11 Andreas Sturmlechner
2018-02-18 17:11 Andreas Sturmlechner
2018-01-07 19:00 Andreas Sturmlechner
2017-12-08 23:40 Thomas Deutschmann
2017-12-02 19:29 Andreas Sturmlechner
2017-11-29 16:40 Andreas Sturmlechner
2017-08-15 9:11 Andreas Sturmlechner
2017-07-17 18:09 Alexis Ballier
2017-05-29 23:17 Andreas Sturmlechner
2017-05-29 22:58 Andreas Sturmlechner
2017-05-17 22:08 Andreas Sturmlechner
2017-03-02 10:57 Michael Palimaka
2017-03-02 10:30 Agostino Sarubbo
2017-02-28 21:02 Johannes Huber
2017-01-17 19:54 Aaron Bauman
2016-10-05 18:27 Michael Palimaka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1568830402.64d394aaceb8eae9f8e9ac72b556196b5aa2614f.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox