Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/qdirstat/
Date: Thu, 04 Jun 2020 13:13:14
Message-Id: 1591276381.c19b965dc287a7b21809b0961f56aab592cb4204.conikost@gentoo
1 commit: c19b965dc287a7b21809b0961f56aab592cb4204
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 4 13:12:28 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 4 13:13:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c19b965d
7
8 sys-apps/qdirstat: drop old version
9
10 Package-Manager: Portage-2.3.100, Repoman-2.3.22
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 sys-apps/qdirstat/Manifest | 1 -
14 sys-apps/qdirstat/qdirstat-1.6.ebuild | 53 -----------------------------------
15 2 files changed, 54 deletions(-)
16
17 diff --git a/sys-apps/qdirstat/Manifest b/sys-apps/qdirstat/Manifest
18 index 455c766d6bd..22f172db4ec 100644
19 --- a/sys-apps/qdirstat/Manifest
20 +++ b/sys-apps/qdirstat/Manifest
21 @@ -1,2 +1 @@
22 DIST qdirstat-1.6.1.tar.gz 7708491 BLAKE2B e6a92f93c76de0f602a66409a2701cd06f1744ab67c3c829938695f1d59b7244998d3a6ddd9d6cfc6408db3ac98d355f4496348ebd198c93ea345b33414c3048 SHA512 fd4c6a3582184785d935e96e884cc3e2033e3ee174ea893816b14524c5c5c62923c5a8c5869969fb8b1d0e84bbffd9dc707a68bdb53898c55dfd14fe16946110
23 -DIST qdirstat-1.6.tar.gz 6398935 BLAKE2B dba15df3f9dd34276ee38ccdd97d1b8158596198b22a807b4d0a68c7d33d146a25ef5b987c4a6e3dc16df421422ddc0cad2e9f60a80493ac668bcb023c15c31c SHA512 8d1350bc8995dac2de90a32ca5ddaac47a317c7e7044f39ed87a7b2e208cda0b84f04c147f7a2414d7a0c5c731479847a879aedcf5781ca772fbfa8fa360cc77
24
25 diff --git a/sys-apps/qdirstat/qdirstat-1.6.ebuild b/sys-apps/qdirstat/qdirstat-1.6.ebuild
26 deleted file mode 100644
27 index 1033decd52b..00000000000
28 --- a/sys-apps/qdirstat/qdirstat-1.6.ebuild
29 +++ /dev/null
30 @@ -1,53 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit qmake-utils xdg-utils
37 -
38 -DESCRIPTION="Qt-based directory statistics"
39 -HOMEPAGE="https://github.com/shundhammer/qdirstat"
40 -SRC_URI="https://github.com/shundhammer/qdirstat/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -
46 -DEPEND="
47 - dev-qt/qtgui:5
48 - dev-qt/qtcore:5
49 - dev-qt/qtwidgets:5
50 - sys-libs/zlib
51 -"
52 -
53 -RDEPEND="
54 - ${DEPEND}
55 - dev-lang/perl
56 - dev-perl/URI
57 -"
58 -
59 -src_prepare() {
60 - default
61 -
62 - # Fix QA warning about incorrect use of path
63 - sed -e "10s:/qdirstat:/${P}:" -i doc/doc.pro || die
64 - sed -e "10s:/qdirstat:/${P}:" -i doc/stats/stats.pro || die
65 -}
66 -
67 -src_configure() {
68 - eqmake5
69 -}
70 -
71 -src_install() {
72 - emake INSTALL_ROOT="${ED}" install
73 -}
74 -
75 -pkg_postinst() {
76 - xdg_desktop_database_update
77 - xdg_icon_cache_update
78 -}
79 -
80 -pkg_postrm() {
81 - xdg_desktop_database_update
82 - xdg_icon_cache_update
83 -}