Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/pcmanfm-qt/
Date: Tue, 12 Mar 2019 19:37:47
Message-Id: 1552419443.690326eefbcd517fafa99c1c1c812d47eb69bc9b.asturm@gentoo
1 commit: 690326eefbcd517fafa99c1c1c812d47eb69bc9b
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 12 13:17:49 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 12 19:37:23 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=690326ee
7
8 x11-misc/pcmanfm-qt: remove 'x11-libs/libfm' dependency
9
10 Upstream removed this completely in 0.14.0.
11
12 - https://github.com/lxqt/libfm-qt/blob/master/CHANGELOG#L25
13
14 Closes: https://bugs.gentoo.org/680004
15 Package-Manager: Portage-2.3.62, Repoman-2.3.12
16 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
17 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
18
19 x11-misc/pcmanfm-qt/pcmanfm-qt-0.14.1-r1.ebuild | 49 +++++++++++++++++++++++++
20 1 file changed, 49 insertions(+)
21
22 diff --git a/x11-misc/pcmanfm-qt/pcmanfm-qt-0.14.1-r1.ebuild b/x11-misc/pcmanfm-qt/pcmanfm-qt-0.14.1-r1.ebuild
23 new file mode 100644
24 index 00000000000..1c2abbd2c9b
25 --- /dev/null
26 +++ b/x11-misc/pcmanfm-qt/pcmanfm-qt-0.14.1-r1.ebuild
27 @@ -0,0 +1,49 @@
28 +# Copyright 1999-2019 Gentoo Authors
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=7
32 +
33 +inherit cmake-utils xdg-utils
34 +
35 +if [[ "${PV}" == "9999" ]]; then
36 + inherit git-r3
37 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
38 +else
39 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
40 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
41 +fi
42 +
43 +DESCRIPTION="Fast lightweight tabbed filemanager (Qt port)"
44 +HOMEPAGE="https://lxqt.org/"
45 +
46 +LICENSE="GPL-2+ LGPL-2.1+"
47 +SLOT="0"
48 +
49 +BDEPEND="
50 + dev-qt/linguist-tools:5
51 + >=dev-util/lxqt-build-tools-0.6.0
52 +"
53 +DEPEND="
54 + dev-libs/glib:2
55 + dev-qt/qtcore:5
56 + dev-qt/qtdbus:5
57 + dev-qt/qtgui:5
58 + dev-qt/qtwidgets:5
59 + dev-qt/qtx11extras:5
60 + =x11-libs/libfm-qt-$(ver_cut 1-2)*
61 + x11-libs/libxcb:=
62 + x11-misc/xdg-utils
63 + virtual/eject
64 + virtual/freedesktop-icon-theme
65 +"
66 +RDEPEND="${DEPEND}
67 + !lxqt-base/lxqt-l10n
68 +"
69 +
70 +pkg_postinst() {
71 + xdg_desktop_database_update
72 +}
73 +
74 +pkg_postrm() {
75 + xdg_desktop_database_update
76 +}