sys-apps/qdirstat: bump to version 1.2
authorJonathan Scruggs <j.scruggs@gmail.com>
Thu, 26 Jan 2017 17:16:06 +0000 (17:16 +0000)
committerDavid Seifert <soap@gentoo.org>
Thu, 26 Jan 2017 22:45:16 +0000 (23:45 +0100)
New version has a lot of bug fixes including better BTRFS support.

Signed-off by: Jonathan Scruggs (j.scruggs@gmail.com)
Closes: https://github.com/gentoo/gentoo/pull/3661

sys-apps/qdirstat/Manifest
sys-apps/qdirstat/qdirstat-1.2.ebuild [new file with mode: 0644]

index 014cb28539b121376ca6d30d3e89d6ddba4fd6bc..fc73d946bc6664dcc1d7d9854718ac6012ea7830 100644 (file)
@@ -1 +1,2 @@
 DIST qdirstat-1.0.tar.gz 805110 SHA256 b8404af004606a9d0e7f3a35bb28f6629a8c84620549fcab8898a551cc07b3a4 SHA512 9e98ea690fd84b435f1b4078c79350a7c0ee6b48560dc500fc9410633a650539c2db16f0526e181700580de0ee8b3044d1219eafc9870cd7e421511159b6d11d WHIRLPOOL 222945223109e9fc6bc2ae1dedeb5e55da4833be688abc14fc884bdd7ed566446d328142b770cebb0438aef52bcc1b48609f45790fc8efdbe36d96b609f9db29
+DIST qdirstat-1.2.tar.gz 1022084 SHA256 d79734915768ae858c784142c7a07b7599178329b40c73894bf575decaf1a911 SHA512 cc340ab9cacdd1ec7edb9baa45302cc9d43b0389b9e0b5dd542b2fa98e8c5a0872350a01790107db4f95e57c9bc45107d019f00841a88fc4a9778178a4f84feb WHIRLPOOL 77e45a215bdeba0cdf71ecc430b8e7d909b21cbd0d02f18f366573be5007eb7addcbf40d1dd3fe4f0b35b270804638b7e92da4ed123cc9ac4c1aa8ace7e7c2ec
diff --git a/sys-apps/qdirstat/qdirstat-1.2.ebuild b/sys-apps/qdirstat/qdirstat-1.2.ebuild
new file mode 100644 (file)
index 0000000..cb2cc92
--- /dev/null
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit qmake-utils
+
+DESCRIPTION="Qt app to show where your disk space has gone and to help you clean it up"
+HOMEPAGE="https://github.com/shundhammer/qdirstat"
+SRC_URI="https://github.com/shundhammer/qdirstat/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-qt/qtgui:5
+       dev-qt/qtcore:5
+       dev-qt/qtwidgets:5"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+       eqmake5
+}
+
+src_install() {
+       emake INSTALL_ROOT="${ED}" install
+}