public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-misc/latte-dock/
Date: Tue, 29 Aug 2017 18:20:23 +0000 (UTC)	[thread overview]
Message-ID: <1504030746.f319eb6b16953dd4de002c8c05b317e23d20ecdf.asturm@gentoo> (raw)

commit:     f319eb6b16953dd4de002c8c05b317e23d20ecdf
Author:     Petross404 <petross404 <AT> gmail <DOT> com>
AuthorDate: Mon Aug 28 10:05:37 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Aug 29 18:19:06 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f319eb6b

kde-misc/latte-dock: 0.7.0 version bump, fix DEPENDs

Fixes broken .desktop file.
Proxy-maint-comment: Simplified sed and git summary.
Closes: https://github.com/gentoo/gentoo/pull/5547

 kde-misc/latte-dock/Manifest                            |  1 +
 .../{latte-dock-9999.ebuild => latte-dock-0.7.0.ebuild} | 17 +++++++++--------
 kde-misc/latte-dock/latte-dock-9999.ebuild              | 11 +++--------
 3 files changed, 13 insertions(+), 16 deletions(-)

diff --git a/kde-misc/latte-dock/Manifest b/kde-misc/latte-dock/Manifest
index 5ca5a1a3c36..1417645a61d 100644
--- a/kde-misc/latte-dock/Manifest
+++ b/kde-misc/latte-dock/Manifest
@@ -1 +1,2 @@
 DIST latte-dock-0.6.2.tar.gz 387854 SHA256 3de5826473f467e2f92fda5296dc1cb4f73aa7cf11c32f5a43d5886b899332b3 SHA512 06bafebddceb57e02c7af806e535b80ef8ce847c9ab4107c77b45815925fccf4e524099218189343da56d9205d89d455f8d8ba5bb2f1ff512fe2cce48946eda0 WHIRLPOOL 829ea1554fe5935e8f8a83bc0efe24ac9e886eef1e072d7f579920636d7ff01deca194e108c8889eeff57c013480f63c7eb6b4ac32a426e11c52e27945a45da6
+DIST latte-dock-0.7.0.tar.gz 1786148 SHA256 01f69619ac6c51ab864526bfc10790308c6d5bf1c80d94f8affba4989d1b7f7d SHA512 ad6afcfd6e1fc7760681ac3819f6fc20613e4d4cfea65f34fdfe702d8bca8ca4993b386e9fcb31ffeaf36889da585bc00d88ee2dd7789884ddf74f96fbf9f145 WHIRLPOOL c78e048464b71fc5b64a34036c577cb6e18953dcd5d917498261e6f5b6d9558bcf9233936ab97fbf0fcb571022cb3ad4002b3863a18e9da2ed7717cde7e100c2

diff --git a/kde-misc/latte-dock/latte-dock-9999.ebuild b/kde-misc/latte-dock/latte-dock-0.7.0.ebuild
similarity index 82%
copy from kde-misc/latte-dock/latte-dock-9999.ebuild
copy to kde-misc/latte-dock/latte-dock-0.7.0.ebuild
index fa43edd7c09..62a40a38ea7 100644
--- a/kde-misc/latte-dock/latte-dock-9999.ebuild
+++ b/kde-misc/latte-dock/latte-dock-0.7.0.ebuild
@@ -3,13 +3,12 @@
 
 EAPI=6
 
-KDE_GCC_MINIMAL="4.9"
 QT_MINIMAL="5.7.1"
 inherit cmake-utils gnome2-utils kde5-functions
 
 DESCRIPTION="Elegant dock, based on KDE Frameworks"
 HOMEPAGE="https://store.kde.org/p/1169519/
-https://github.com/psifidotos/Latte-Dock"
+	https://github.com/psifidotos/Latte-Dock"
 
 if [[ ${PV} = 9999 ]] ; then
 	inherit git-r3
@@ -29,6 +28,7 @@ RDEPEND="
 	$(add_frameworks_dep karchive)
 	$(add_frameworks_dep kconfig)
 	$(add_frameworks_dep kcoreaddons)
+	$(add_frameworks_dep kcrash)
 	$(add_frameworks_dep kdbusaddons)
 	$(add_frameworks_dep kdeclarative)
 	$(add_frameworks_dep kglobalaccel)
@@ -47,6 +47,7 @@ RDEPEND="
 	$(add_qt_dep qtgui 'xcb')
 	$(add_qt_dep qtwidgets)
 	$(add_qt_dep qtx11extras)
+	x11-libs/libSM
 	x11-libs/libX11
 	x11-libs/libxcb
 "
@@ -56,18 +57,18 @@ DEPEND="${RDEPEND}
 
 DOCS=( CHANGELOG.md README.md TRANSLATORS )
 
+src_prepare() {
+	cmake-utils_src_prepare
+	sed -i -e "s/^Version/X-KDE-PluginInfo-Version/g" \
+		app/org.kde.latte-dock.desktop.cmake || die
+}
+
 pkg_preinst() {
 	gnome2_icon_savelist
 }
 
 pkg_postinst() {
 	gnome2_icon_cache_update
-
-	if has_version ">=dev-qt/qtcore-5.8.0" ; then
-		ewarn "Qt versions >=5.8 are known to cause runtime problems. If you"
-		ewarn "experience problems while running Latte Dock, please check this"
-		ewarn "out: https://github.com/psifidotos/Latte-Dock/issues/183"
-	fi
 }
 
 pkg_postrm() {

diff --git a/kde-misc/latte-dock/latte-dock-9999.ebuild b/kde-misc/latte-dock/latte-dock-9999.ebuild
index fa43edd7c09..5dcfa44e5bc 100644
--- a/kde-misc/latte-dock/latte-dock-9999.ebuild
+++ b/kde-misc/latte-dock/latte-dock-9999.ebuild
@@ -3,13 +3,12 @@
 
 EAPI=6
 
-KDE_GCC_MINIMAL="4.9"
 QT_MINIMAL="5.7.1"
 inherit cmake-utils gnome2-utils kde5-functions
 
 DESCRIPTION="Elegant dock, based on KDE Frameworks"
 HOMEPAGE="https://store.kde.org/p/1169519/
-https://github.com/psifidotos/Latte-Dock"
+	https://github.com/psifidotos/Latte-Dock"
 
 if [[ ${PV} = 9999 ]] ; then
 	inherit git-r3
@@ -29,6 +28,7 @@ RDEPEND="
 	$(add_frameworks_dep karchive)
 	$(add_frameworks_dep kconfig)
 	$(add_frameworks_dep kcoreaddons)
+	$(add_frameworks_dep kcrash)
 	$(add_frameworks_dep kdbusaddons)
 	$(add_frameworks_dep kdeclarative)
 	$(add_frameworks_dep kglobalaccel)
@@ -47,6 +47,7 @@ RDEPEND="
 	$(add_qt_dep qtgui 'xcb')
 	$(add_qt_dep qtwidgets)
 	$(add_qt_dep qtx11extras)
+	x11-libs/libSM
 	x11-libs/libX11
 	x11-libs/libxcb
 "
@@ -62,12 +63,6 @@ pkg_preinst() {
 
 pkg_postinst() {
 	gnome2_icon_cache_update
-
-	if has_version ">=dev-qt/qtcore-5.8.0" ; then
-		ewarn "Qt versions >=5.8 are known to cause runtime problems. If you"
-		ewarn "experience problems while running Latte Dock, please check this"
-		ewarn "out: https://github.com/psifidotos/Latte-Dock/issues/183"
-	fi
 }
 
 pkg_postrm() {


             reply	other threads:[~2017-08-29 18:20 UTC|newest]

Thread overview: 112+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-29 18:20 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-02-01  9:47 [gentoo-commits] repo/gentoo:master commit in: kde-misc/latte-dock/ Andreas Sturmlechner
2023-01-15 13:42 Andreas Sturmlechner
2023-01-15 13:42 Andreas Sturmlechner
2022-12-10 14:43 Andreas Sturmlechner
2022-02-21 12:06 Andreas Sturmlechner
2022-02-13  7:59 Agostino Sarubbo
2022-02-11 19:07 Jakov Smolić
2022-01-26 10:01 Andreas Sturmlechner
2022-01-26 10:01 Andreas Sturmlechner
2022-01-13 11:03 Andreas Sturmlechner
2021-12-18 16:54 Andreas Sturmlechner
2021-12-18 16:54 Andreas Sturmlechner
2021-12-16 16:59 Andreas Sturmlechner
2021-12-10 20:54 Sam James
2021-12-10 20:53 Sam James
2021-11-22 16:37 Andreas Sturmlechner
2021-11-22 16:37 Andreas Sturmlechner
2021-11-18 11:02 Andreas Sturmlechner
2021-11-07 15:41 Andreas Sturmlechner
2021-11-07 15:41 Andreas Sturmlechner
2021-09-14 13:39 Andreas Sturmlechner
2021-08-25 10:10 Andreas Sturmlechner
2021-08-10 18:14 Andreas Sturmlechner
2021-06-05 10:55 Mikle Kolyada
2021-06-05 10:53 Mikle Kolyada
2021-05-20 18:24 Andreas Sturmlechner
2021-05-20 18:24 Andreas Sturmlechner
2020-05-08 11:02 Andreas Sturmlechner
2020-05-08 10:46 Agostino Sarubbo
2020-05-07 15:58 Agostino Sarubbo
2020-04-14  8:35 Joonas Niilola
2020-04-12 20:34 Andreas Sturmlechner
2020-04-11 22:42 Andreas Sturmlechner
2020-03-27 13:08 Andreas Sturmlechner
2020-03-15 22:34 Andreas Sturmlechner
2020-03-14 19:46 Agostino Sarubbo
2020-02-26 23:00 Andreas Sturmlechner
2020-02-26 22:57 Andreas Sturmlechner
2020-02-18 20:06 Andreas Sturmlechner
2020-01-29 18:39 Andreas Sturmlechner
2020-01-29 18:39 Andreas Sturmlechner
2020-01-27 18:29 Andreas Sturmlechner
2020-01-27 18:29 Andreas Sturmlechner
2020-01-27 15:44 Thomas Deutschmann
2020-01-26 10:26 Georgy Yakovlev
2020-01-26 10:26 Georgy Yakovlev
2020-01-26  9:35 Andreas Sturmlechner
2020-01-19 23:53 Andreas Sturmlechner
2020-01-19 23:53 Andreas Sturmlechner
2020-01-01  7:55 Andreas Sturmlechner
2020-01-01  7:55 Andreas Sturmlechner
2019-12-30 21:26 Andreas Sturmlechner
2019-12-07 21:08 Andreas Sturmlechner
2019-12-07 21:08 Andreas Sturmlechner
2019-12-04 13:05 Agostino Sarubbo
2019-10-27 16:38 Andreas Sturmlechner
2019-09-29 20:07 Andreas Sturmlechner
2019-09-29 20:07 Andreas Sturmlechner
2019-09-29 20:07 Andreas Sturmlechner
2019-09-26 19:02 Thomas Deutschmann
2019-09-05 17:01 Andreas Sturmlechner
2019-08-22 14:43 Andreas Sturmlechner
2019-08-04 18:41 Andreas Sturmlechner
2019-07-29  6:13 Andreas Sturmlechner
2019-07-24 21:22 Andreas Sturmlechner
2019-07-24 21:22 Andreas Sturmlechner
2019-07-24 20:49 Thomas Deutschmann
2019-06-27 23:37 Andreas Sturmlechner
2019-04-17  6:09 Andreas Sturmlechner
2019-03-03 15:27 Andreas Sturmlechner
2019-03-03  5:41 Mikle Kolyada
2019-03-02 20:49 Thomas Deutschmann
2019-03-02 11:50 Andreas Sturmlechner
2019-02-24 18:01 Andreas Sturmlechner
2019-02-15 23:07 Andreas Sturmlechner
2019-02-07 15:15 Andreas Sturmlechner
2019-01-26 23:57 Andreas Sturmlechner
2019-01-26 23:57 Andreas Sturmlechner
2019-01-17 21:26 Mikle Kolyada
2019-01-15 22:10 Thomas Deutschmann
2018-12-29 22:02 Andreas Sturmlechner
2018-11-23 21:33 Andreas Sturmlechner
2018-11-22  0:33 Andreas Sturmlechner
2018-11-18  8:48 Mikle Kolyada
2018-11-17 21:34 Thomas Deutschmann
2018-11-17 18:39 Andreas Sturmlechner
2018-10-26 20:17 Andreas Sturmlechner
2018-10-26 20:17 Andreas Sturmlechner
2018-10-04 12:55 Andreas Sturmlechner
2018-07-16 11:54 Johannes Huber
2018-07-16  6:32 Johannes Huber
2018-07-15 16:04 Mikle Kolyada
2018-04-22 11:47 Andreas Sturmlechner
2018-04-14 21:10 Aaron Bauman
2018-04-12 19:23 Johannes Huber
2018-04-12 19:23 Johannes Huber
2018-04-12 19:23 Johannes Huber
2018-03-06 15:31 Andreas Sturmlechner
2018-03-06 15:31 Andreas Sturmlechner
2018-01-06 22:34 Andreas Sturmlechner
2018-01-06 22:34 Andreas Sturmlechner
2017-11-19  7:49 Michael Palimaka
2017-10-19 17:23 Andreas Sturmlechner
2017-10-19 17:23 Andreas Sturmlechner
2017-10-19 17:23 Andreas Sturmlechner
2017-09-02 21:39 Andreas Sturmlechner
2017-09-02 21:39 Andreas Sturmlechner
2017-05-11 18:12 Andreas Sturmlechner
2017-05-11 18:12 Andreas Sturmlechner
2017-05-11 18:12 Andreas Sturmlechner
2017-04-25 13:21 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=1504030746.f319eb6b16953dd4de002c8c05b317e23d20ecdf.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