Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/yoshimi/
Date: Sat, 25 Sep 2021 06:59:10
Message-Id: 1632553141.15204289cf8a0184edaa30acc790b2b84f2503af.fordfrog@gentoo
1 commit: 15204289cf8a0184edaa30acc790b2b84f2503af
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 25 06:47:23 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 25 06:59:01 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15204289
7
8 media-sound/yoshimi: fixed QA issue with compressed doc files in 2.1.0
9
10 Closes: https://bugs.gentoo.org/810319
11 Package-Manager: Portage-3.0.23, Repoman-3.0.3
12 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
13
14 .../yoshimi/{yoshimi-2.1.0.ebuild => yoshimi-2.1.0-r1.ebuild} | 10 ++++++++++
15 1 file changed, 10 insertions(+)
16
17 diff --git a/media-sound/yoshimi/yoshimi-2.1.0.ebuild b/media-sound/yoshimi/yoshimi-2.1.0-r1.ebuild
18 similarity index 84%
19 rename from media-sound/yoshimi/yoshimi-2.1.0.ebuild
20 rename to media-sound/yoshimi/yoshimi-2.1.0-r1.ebuild
21 index ae3192e6c50..23dfc649dc2 100644
22 --- a/media-sound/yoshimi/yoshimi-2.1.0.ebuild
23 +++ b/media-sound/yoshimi/yoshimi-2.1.0-r1.ebuild
24 @@ -48,3 +48,13 @@ src_configure() {
25 )
26 cmake_src_configure
27 }
28 +
29 +src_install() {
30 + cmake_src_install
31 +
32 + # unpack Histories.tar.bz2 to avoid QA issues
33 + pushd "${ED}/usr/share/doc/${PF}" || die
34 + tar xvf Histories.tar.bz2 || die
35 + rm Histories.tar.bz2
36 + popd
37 +}