From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2BA2A139347 for ; Thu, 8 Jul 2021 11:07:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BC08E0B61; Thu, 8 Jul 2021 11:07:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 350D8E0B61 for ; Thu, 8 Jul 2021 11:07:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4A4F2342AA3 for ; Thu, 8 Jul 2021 11:07:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C27CF7CA for ; Thu, 8 Jul 2021 11:07:19 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1625685937.6c5c2371299bb3d5104a72978b5d407b88173284.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-gfx/oxipng/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-gfx/oxipng/oxipng-3.0.1.ebuild media-gfx/oxipng/oxipng-4.0.3.ebuild X-VCS-Directories: media-gfx/oxipng/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 6c5c2371299bb3d5104a72978b5d407b88173284 X-VCS-Branch: master Date: Thu, 8 Jul 2021 11:07:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 156493c5-3895-49eb-9c79-5e5bd80a3a83 X-Archives-Hash: 04fa8670b995957fd67ca6b2685eba5a commit: 6c5c2371299bb3d5104a72978b5d407b88173284 Author: YOSHIOKA Takuma hard-wi red> AuthorDate: Wed Jul 7 19:25:37 2021 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Jul 7 19:25:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6c5c2371 media-gfx/oxipng: add workaround for occasionally broken tests The issue is reported to upstream (). Closes: https://bugs.gentoo.org/784416 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: YOSHIOKA Takuma hard-wi.red> media-gfx/oxipng/oxipng-3.0.1.ebuild | 6 ++++++ media-gfx/oxipng/oxipng-4.0.3.ebuild | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/media-gfx/oxipng/oxipng-3.0.1.ebuild b/media-gfx/oxipng/oxipng-3.0.1.ebuild index bea8c77b3..146fbd2c9 100644 --- a/media-gfx/oxipng/oxipng-3.0.1.ebuild +++ b/media-gfx/oxipng/oxipng-3.0.1.ebuild @@ -105,3 +105,9 @@ src_install() { dodoc CHANGELOG.md README.md } + +src_test() { + # Workaround for the upstream bug . + cargo_src_test -- --skip issue_182 + cargo_src_test -- issue_182 +} diff --git a/media-gfx/oxipng/oxipng-4.0.3.ebuild b/media-gfx/oxipng/oxipng-4.0.3.ebuild index 30cd48fe3..a095c1ad3 100644 --- a/media-gfx/oxipng/oxipng-4.0.3.ebuild +++ b/media-gfx/oxipng/oxipng-4.0.3.ebuild @@ -99,3 +99,9 @@ src_install() { dodoc CHANGELOG.md README.md } + +src_test() { + # Workaround for the upstream bug . + cargo_src_test -- --skip issue_182 + cargo_src_test -- issue_182 +}