summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-03-02 12:48:52 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2019-03-02 12:49:48 +0100
commitd88aa18e5a0329c0fc30bedbe1dd2953826900e1 (patch)
treefd1278fa4ad254b815ca9eec55974e55310bf7b1 /kde-misc
parentkde-misc/latte-dock: 0.8.7 version bump (diff)
downloadgentoo-d88aa18e5a0329c0fc30bedbe1dd2953826900e1.tar.gz
gentoo-d88aa18e5a0329c0fc30bedbe1dd2953826900e1.tar.bz2
gentoo-d88aa18e5a0329c0fc30bedbe1dd2953826900e1.zip
kde-misc/latte-dock: Drop 0.8.6-r1
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-misc')
-rw-r--r--kde-misc/latte-dock/Manifest1
-rw-r--r--kde-misc/latte-dock/files/latte-dock-0.8.6-create-dir-if-missing.patch34
-rw-r--r--kde-misc/latte-dock/latte-dock-0.8.6-r1.ebuild53
3 files changed, 0 insertions, 88 deletions
diff --git a/kde-misc/latte-dock/Manifest b/kde-misc/latte-dock/Manifest
index c25cd26001c0..251dccc4915d 100644
--- a/kde-misc/latte-dock/Manifest
+++ b/kde-misc/latte-dock/Manifest
@@ -1,3 +1,2 @@
DIST latte-dock-0.8.4.tar.xz 656528 BLAKE2B 200bf01ea489f2c7486291623ca6b0518e04ca4d607c9d42294abc3f13f1fd13d5a9da7dd16f7ced7d786e729bda12e80666283d3dfad32cb49be5731118ac84 SHA512 6a3fd4223316cc2e17934c1e7220cfe4b23ac5a06070f22ff26dcc2f312f73a666230aa612cdefd650e320ad09dd3456e44d253a2eab31e7c9c5d2f52343acc2
-DIST latte-dock-0.8.6.tar.xz 659084 BLAKE2B 6f78cfb74931bfd6ea0430c2124608057e67ea9bcc664197cc704207cc61d09754fb8fbdf8f988ce9abc434d5aee2e95e82dc1f7ba0c8d3624d823fccfd5112e SHA512 3e8285347cee9d7349fd43df5b7f17ee577e3c376ce0026499fd04bdba63664f66876560b8c0f545c48345d2b111a7928add9fc92fc3570121b6a5edbf4200f8
DIST latte-dock-0.8.7.tar.xz 659220 BLAKE2B 0a4abd2ff3dec0638a841e4a6cc056773c21c995c67edf894310c76e25af3f405b999d5be32c82fa0e7b36d16a4b3ec5fc0c145fbb5dbd75c24fde023135112b SHA512 28e8a90ef986cd4e92ef97acd59f979f8133c5b1c0a084825fd8d9f21165552377c42c375bfe8ecc0b121a4d3561101648cbeaaca1fd14b7bfdb2e632b3d42f5
diff --git a/kde-misc/latte-dock/files/latte-dock-0.8.6-create-dir-if-missing.patch b/kde-misc/latte-dock/files/latte-dock-0.8.6-create-dir-if-missing.patch
deleted file mode 100644
index 97cc7c1d76d7..000000000000
--- a/kde-misc/latte-dock/files/latte-dock-0.8.6-create-dir-if-missing.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 7283e2698d1fcd9aba2e4e1de1b24ed13425e2f5 Mon Sep 17 00:00:00 2001
-From: Michail Vourlakos <mvourlakos@gmail.com>
-Date: Sun, 24 Feb 2019 13:10:04 +0200
-Subject: create latte dir if missing when loading presets
-
---this is critical because it does not open Latte at
-first run. The fix is just to make sure that "latte"
-directory will be created in case there isnt already
-
-BUG: 404762
----
- app/layoutmanager.cpp | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/app/layoutmanager.cpp b/app/layoutmanager.cpp
-index 73cb740..97abed1 100644
---- a/app/layoutmanager.cpp
-+++ b/app/layoutmanager.cpp
-@@ -1075,6 +1075,12 @@ void LayoutManager::importPresets(bool includeDefault)
-
- void LayoutManager::importPreset(int presetNo, bool newInstanceIfPresent)
- {
-+ QDir configDir(QDir::homePath() + "/.config");
-+
-+ if (!QDir(configDir.absolutePath() + "/latte").exists()) {
-+ configDir.mkdir("latte");
-+ }
-+
- QByteArray presetNameOrig = QString("preset" + QString::number(presetNo)).toUtf8();
- QString presetPath = m_corona->kPackage().filePath(presetNameOrig);
- QString presetName = Layout::layoutName(presetPath);
---
-cgit v1.1
-
diff --git a/kde-misc/latte-dock/latte-dock-0.8.6-r1.ebuild b/kde-misc/latte-dock/latte-dock-0.8.6-r1.ebuild
deleted file mode 100644
index 332a87ea14fb..000000000000
--- a/kde-misc/latte-dock/latte-dock-0.8.6-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit kde5
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
- SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Elegant dock, based on KDE Frameworks"
-HOMEPAGE="https://store.kde.org/p/1169519/
- https://github.com/psifidotos/Latte-Dock"
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE=""
-
-DEPEND="
- $(add_frameworks_dep kactivities)
- $(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)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep kiconthemes)
- $(add_frameworks_dep knewstuff)
- $(add_frameworks_dep knotifications)
- $(add_frameworks_dep kpackage)
- $(add_frameworks_dep kwayland)
- $(add_frameworks_dep kwindowsystem)
- $(add_frameworks_dep kxmlgui)
- $(add_frameworks_dep plasma X)
- $(add_qt_dep qtdbus)
- $(add_qt_dep qtdeclarative)
- $(add_qt_dep qtgraphicaleffects)
- $(add_qt_dep qtgui 'xcb')
- $(add_qt_dep qtwidgets)
- $(add_qt_dep qtx11extras)
- x11-libs/libSM
- x11-libs/libX11
- x11-libs/libxcb
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( CHANGELOG.md README.md )
-
-PATCHES=( "${FILESDIR}/${P}-create-dir-if-missing.patch" )