From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/quimup/
Date: Mon, 27 Jan 2025 19:03:17 +0000 (UTC) [thread overview]
Message-ID: <1738004428.06ad2a7da23ff748b9b83e68aa10f933369d306b.asturm@gentoo> (raw)
commit: 06ad2a7da23ff748b9b83e68aa10f933369d306b
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 27 19:00:28 2025 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jan 27 19:00:28 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06ad2a7d
media-sound/quimup: Fix upstream tarball having symlinks for DOCS
Closes: https://bugs.gentoo.org/947318
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-sound/quimup/Manifest | 2 ++
media-sound/quimup/quimup-2.1.1-r1.ebuild | 51 +++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/media-sound/quimup/Manifest b/media-sound/quimup/Manifest
index 404ef69b8cab..81cff5377dfd 100644
--- a/media-sound/quimup/Manifest
+++ b/media-sound/quimup/Manifest
@@ -1,3 +1,5 @@
DIST Quimup-2.1.0.source.tar.gz 697565 BLAKE2B 78b950d0134041becac0d2eb6786db90797127882279bd078da332df5cc3d1bfea8da256cfc49f6a83eefb8b25a3beb60af0d7bf3e1e8394b46956ba72fd6dc8 SHA512 c7d86deaa6483ea9467e2bc8dd7e413f67ebf271713cab939cda8c9689a52651b45724d99cdec7d72350273fb59e2542acf82ebc9da1cea8e0210f575351e686
DIST Quimup-2.1.1.source.tar.gz 2423998 BLAKE2B 342e7bf6682fcba5f6c5c2ebaabb8b475d2ec8d37f32cbdd2c3deebe32cd3bea022bf33176fe523869c0562f7256aea687e5056649684033019f67297ecd4ba3 SHA512 4adec84bcd6e9825a1610fb74be5768d1d3eeeb641fdb57b64db6904a0b8cfad48fc9cb53732f169710528085d9433e35f936a519a8128b822a89fa971b5533b
DIST Quimup_1.4.4_source.tar.gz 240902 BLAKE2B a411653b1c5ced5dc7f4b9ebe6244380d23cd165eaf2b14760a3f87946094f7ffad3df73afe500c0f8ea8f6d77e690391e78a0403b9436485b4c670de3c3b0da SHA512 4fac921df6e7157952536e1cdda0e468b72f70f8f938ccfd5d1a7d286f4b7d7ac063ca2c6111f38fb76b2a6235a323858f2f898165c80702b2c0aaeaff8869c9
+DIST quimup-2.1.1-changelog 3970 BLAKE2B 30fddc76c9de5d20f0f514f0d79d024503a145da74726c5632dbd4fc42574c744b68b6842e1785b5e83d521638d780fb126191230da2dc1d03e0ccae12d15bf7 SHA512 2d6471c75184906b07fc47a7a0bd1193e1a6a66b39fe11c87d2ec3af7630bc6be5a9cf5039698fee3aa8b222ca10a74762995fb764ac1acc2f0fa2d67b3eafa6
+DIST quimup-2.1.1-readme 8066 BLAKE2B 7566cd0b973fd5f75457f564bd1060912c4c748cb82edb8dacbf8d2c6ff5c41ec4b6490bf43edc63af6ccb46e408a25e9b41ba710d0a46da8ecbf610776ed76b SHA512 882a7a360f1f13450b77bf77be426b54c40e03f980a9ece18b376fb37306e6f761f581f9ac4d8f4ab584dbd980e9a2824ccee199108be52b1f508b8d29e72df7
diff --git a/media-sound/quimup/quimup-2.1.1-r1.ebuild b/media-sound/quimup/quimup-2.1.1-r1.ebuild
new file mode 100644
index 000000000000..d54ff0dddf8c
--- /dev/null
+++ b/media-sound/quimup/quimup-2.1.1-r1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop qmake-utils xdg
+
+DESCRIPTION="Qt client for the music player daemon (MPD)"
+HOMEPAGE="https://quimup.sourceforge.io"
+SRC_URI="https://downloads.sourceforge.net/${PN}/${P^}.source.tar.gz
+https://master.dl.sourceforge.net/project/${PN}/${PN^}%20${PV}/changelog -> ${P}-changelog
+https://master.dl.sourceforge.net/project/${PN}/${PN^}%20${PV}/readme -> ${P}-readme"
+S="${WORKDIR}/${P^}.source"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ dev-qt/qtbase:6[gui,network,widgets]
+ media-libs/libmpdclient
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( changelog faq readme )
+
+src_prepare() {
+ default
+
+ local x
+ for x in changelog readme; do
+ rm ${x} || die
+ cp "${DISTDIR}"/${P}-${x} ${x} || die
+ done
+}
+
+src_configure() {
+ eqmake6
+}
+
+src_install() {
+ default
+ dobin ${PN}
+
+ for x in 32 64 128 scalable; do
+ doicon -s ${x} RPM_DEB_build/share/icons/hicolor/${x}*/*
+ done
+
+ domenu RPM_DEB_build/share/applications/${PN^}.desktop
+}
next reply other threads:[~2025-01-27 19:03 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-27 19:03 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-27 23:25 [gentoo-commits] repo/gentoo:master commit in: media-sound/quimup/ Sam James
2025-01-27 23:25 Sam James
2025-01-27 19:04 Andreas Sturmlechner
2025-01-27 19:03 Andreas Sturmlechner
2025-01-01 16:17 Miroslav Šulc
2024-08-01 7:43 Miroslav Šulc
2020-10-13 15:02 Andreas Sturmlechner
2020-10-13 9:26 Agostino Sarubbo
2020-10-12 12:39 Agostino Sarubbo
2020-08-22 16:06 Andreas Sturmlechner
2018-10-02 14:39 Mikle Kolyada
2018-10-01 21:47 Thomas Deutschmann
2018-08-22 9:03 Andreas Sturmlechner
2017-09-21 14:40 Michael Palimaka
2016-08-06 11:33 Pacho Ramos
2015-09-25 10:42 Agostino Sarubbo
2015-09-20 11:33 Christoph Mende
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=1738004428.06ad2a7da23ff748b9b83e68aa10f933369d306b.asturm@gentoo \
--to=asturm@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