Gentoo Archives: gentoo-commits

From: YOSHIOKA Takuma <lo48576@×××××××.red>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/oxipng/
Date: Wed, 07 Jul 2021 19:29:07
Message-Id: 1625685937.6c5c2371299bb3d5104a72978b5d407b88173284.YOSHIOKATakuma@gentoo
1 commit: 6c5c2371299bb3d5104a72978b5d407b88173284
2 Author: YOSHIOKA Takuma <lo48576 <AT> hard-wi <DOT> red>
3 AuthorDate: Wed Jul 7 19:25:37 2021 +0000
4 Commit: YOSHIOKA Takuma <lo48576 <AT> hard-wi <DOT> red>
5 CommitDate: Wed Jul 7 19:25:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6c5c2371
7
8 media-gfx/oxipng: add workaround for occasionally broken tests
9
10 The issue is reported to upstream
11 (<https://github.com/shssoichiro/oxipng/issues/412>).
12
13 Closes: https://bugs.gentoo.org/784416
14 Package-Manager: Portage-3.0.20, Repoman-3.0.3
15 Signed-off-by: YOSHIOKA Takuma <lo48576 <AT> hard-wi.red>
16
17 media-gfx/oxipng/oxipng-3.0.1.ebuild | 6 ++++++
18 media-gfx/oxipng/oxipng-4.0.3.ebuild | 6 ++++++
19 2 files changed, 12 insertions(+)
20
21 diff --git a/media-gfx/oxipng/oxipng-3.0.1.ebuild b/media-gfx/oxipng/oxipng-3.0.1.ebuild
22 index bea8c77b3..146fbd2c9 100644
23 --- a/media-gfx/oxipng/oxipng-3.0.1.ebuild
24 +++ b/media-gfx/oxipng/oxipng-3.0.1.ebuild
25 @@ -105,3 +105,9 @@ src_install() {
26
27 dodoc CHANGELOG.md README.md
28 }
29 +
30 +src_test() {
31 + # Workaround for the upstream bug <https://github.com/shssoichiro/oxipng/issues/412>.
32 + cargo_src_test -- --skip issue_182
33 + cargo_src_test -- issue_182
34 +}
35
36 diff --git a/media-gfx/oxipng/oxipng-4.0.3.ebuild b/media-gfx/oxipng/oxipng-4.0.3.ebuild
37 index 30cd48fe3..a095c1ad3 100644
38 --- a/media-gfx/oxipng/oxipng-4.0.3.ebuild
39 +++ b/media-gfx/oxipng/oxipng-4.0.3.ebuild
40 @@ -99,3 +99,9 @@ src_install() {
41
42 dodoc CHANGELOG.md README.md
43 }
44 +
45 +src_test() {
46 + # Workaround for the upstream bug <https://github.com/shssoichiro/oxipng/issues/412>.
47 + cargo_src_test -- --skip issue_182
48 + cargo_src_test -- issue_182
49 +}