From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/qdirstat/
Date: Thu, 19 Sep 2019 16:21:15 +0000 (UTC) [thread overview]
Message-ID: <1568908069.c707d9cb9f19868bff269ea9af8bd104aada42ca.juippis@gentoo> (raw)
commit: c707d9cb9f19868bff269ea9af8bd104aada42ca
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Sat Sep 14 22:52:11 2019 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Sep 19 15:47:49 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c707d9cb
sys-apps/qdirstat: bump to version 1.6
Also bumped to EAPI=7 and added myself as maintainer.
Closes: https://bugs.gentoo.org/637400
Closes: https://bugs.gentoo.org/668742
Package-Manager: Portage-2.3.75, Repoman-2.3.17
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/12927
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
sys-apps/qdirstat/Manifest | 1 +
sys-apps/qdirstat/metadata.xml | 10 ++++++-
sys-apps/qdirstat/qdirstat-1.6.ebuild | 53 +++++++++++++++++++++++++++++++++++
3 files changed, 63 insertions(+), 1 deletion(-)
diff --git a/sys-apps/qdirstat/Manifest b/sys-apps/qdirstat/Manifest
index 3dcad4c5289..7b2965fcf90 100644
--- a/sys-apps/qdirstat/Manifest
+++ b/sys-apps/qdirstat/Manifest
@@ -1 +1,2 @@
DIST qdirstat-1.4.tar.gz 2534241 BLAKE2B 70b84376a949ab3d74879bc78dac9d41c592ee9a4c60d27ad9d85ab09378f85a65209c78f7030f76e86e8e418803eef5ed1dadb07a1058ec38c13d753f6e3e61 SHA512 5711a78297f4224e4471ac14d8e42ee9ac746cc31315ff894dafa1db578eff4ff2a5c62edc525a49c523154a0de402f878200d96601c7924bf0273f0eac9ab74
+DIST qdirstat-1.6.tar.gz 6398935 BLAKE2B dba15df3f9dd34276ee38ccdd97d1b8158596198b22a807b4d0a68c7d33d146a25ef5b987c4a6e3dc16df421422ddc0cad2e9f60a80493ac668bcb023c15c31c SHA512 8d1350bc8995dac2de90a32ca5ddaac47a317c7e7044f39ed87a7b2e208cda0b84f04c147f7a2414d7a0c5c731479847a879aedcf5781ca772fbfa8fa360cc77
diff --git a/sys-apps/qdirstat/metadata.xml b/sys-apps/qdirstat/metadata.xml
index b811e95a6ae..b73ce0a34ae 100644
--- a/sys-apps/qdirstat/metadata.xml
+++ b/sys-apps/qdirstat/metadata.xml
@@ -1,7 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>ck+gentoo@bl4ckb0x.de</email>
+ <name>Conrad Kostecki</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
<longdescription>
Qt-based directory statistics: KDirStat without any KDE -- from
the author of the original KDirStat.
@@ -15,6 +22,7 @@
and other Unix-like systems.
</longdescription>
<upstream>
+ <bugs-to>https://github.com/shundhammer/qdirstat/issues</bugs-to>
<remote-id type="github">shundhammer/qdirstat</remote-id>
</upstream>
</pkgmetadata>
diff --git a/sys-apps/qdirstat/qdirstat-1.6.ebuild b/sys-apps/qdirstat/qdirstat-1.6.ebuild
new file mode 100644
index 00000000000..3a907d9e667
--- /dev/null
+++ b/sys-apps/qdirstat/qdirstat-1.6.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit qmake-utils xdg-utils
+
+DESCRIPTION="Qt-based directory statistics"
+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"
+
+DEPEND="
+ dev-qt/qtgui:5
+ dev-qt/qtcore:5
+ dev-qt/qtwidgets:5
+ sys-libs/zlib
+"
+
+RDEPEND="
+ ${DEPEND}
+ dev-lang/perl
+ dev-perl/URI
+"
+
+src_prepare() {
+ default
+
+ # Fix QA warning about incorrect use of path
+ sed -e "10s:/qdirstat:/${P}:" -i doc/doc.pro || die
+ sed -e "10s:/qdirstat:/${P}:" -i doc/stats/stats.pro || die
+}
+
+src_configure() {
+ eqmake5
+}
+
+src_install() {
+ emake INSTALL_ROOT="${ED}" install
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+ xdg_icon_cache_update
+}
next reply other threads:[~2019-09-19 16:21 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-19 16:21 Joonas Niilola [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-09-18 20:39 [gentoo-commits] repo/gentoo:master commit in: sys-apps/qdirstat/ Conrad Kostecki
2025-09-18 20:35 Sam James
2025-09-18 20:35 Sam James
2025-08-27 15:02 Andreas Sturmlechner
2025-08-27 15:02 Andreas Sturmlechner
2025-08-25 16:05 Andreas Sturmlechner
2024-03-03 23:16 Conrad Kostecki
2024-03-03 23:16 Conrad Kostecki
2024-03-03 23:16 Conrad Kostecki
2024-01-14 15:53 Conrad Kostecki
2022-07-31 13:56 Conrad Kostecki
2022-07-31 13:56 Conrad Kostecki
2022-06-30 10:40 Conrad Kostecki
2022-06-30 10:30 Conrad Kostecki
2021-09-27 20:08 Conrad Kostecki
2021-09-27 20:08 Conrad Kostecki
2021-09-27 20:08 Conrad Kostecki
2021-08-28 19:38 Conrad Kostecki
2021-05-06 11:05 Conrad Kostecki
2021-05-06 11:05 Conrad Kostecki
2021-05-06 11:05 Conrad Kostecki
2021-04-05 15:52 Conrad Kostecki
2020-09-18 9:20 Conrad Kostecki
2020-08-09 15:53 Conrad Kostecki
2020-06-04 13:13 Conrad Kostecki
2020-05-29 7:39 Agostino Sarubbo
2020-02-13 19:02 Conrad Kostecki
2020-02-13 19:02 Conrad Kostecki
2019-12-15 14:46 Agostino Sarubbo
2019-12-15 13:43 Agostino Sarubbo
2019-12-02 23:22 Conrad Kostecki
2019-09-22 8:13 Joonas Niilola
2018-01-27 17:19 Jonathan Scruggs
2017-08-16 19:16 Michał Górny
2017-08-16 19:16 Michał Górny
2017-01-26 22:46 David Seifert
2016-08-10 8:57 Patrice Clement
2016-08-10 8:57 Patrice Clement
2016-08-10 6:57 Patrice Clement
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=1568908069.c707d9cb9f19868bff269ea9af8bd104aada42ca.juippis@gentoo \
--to=juippis@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