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 80E3A138334 for ; Sun, 30 Dec 2018 00:05:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F682E0B28; Sun, 30 Dec 2018 00:05:34 +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 33875E0B28 for ; Sun, 30 Dec 2018 00:05:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D91DC335C77 for ; Sun, 30 Dec 2018 00:05:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09BA74FA for ; Sun, 30 Dec 2018 00:05:31 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1546128144.9935e583097e71b23f179681b740c15636d00ac1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/exiv2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/exiv2/exiv2-0.27.0.ebuild X-VCS-Directories: media-gfx/exiv2/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9935e583097e71b23f179681b740c15636d00ac1 X-VCS-Branch: master Date: Sun, 30 Dec 2018 00:05:31 +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: 0928ee9a-bd1f-424d-b9f1-8e043b1ce9cd X-Archives-Hash: a692ca1ac4d02dbf4f03bb55b69ca77d commit: 9935e583097e71b23f179681b740c15636d00ac1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Dec 30 00:01:43 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Dec 30 00:02:24 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9935e583 media-gfx/exiv2: Remove Apple filesystem cruft Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-gfx/exiv2/exiv2-0.27.0.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/media-gfx/exiv2/exiv2-0.27.0.ebuild b/media-gfx/exiv2/exiv2-0.27.0.ebuild index c45a92101c2..f59464a6685 100644 --- a/media-gfx/exiv2/exiv2-0.27.0.ebuild +++ b/media-gfx/exiv2/exiv2-0.27.0.ebuild @@ -44,8 +44,6 @@ DEPEND="${RDEPEND} DOCS=( README.md doc/ChangeLog doc/cmd.txt ) -S="${S}-Source" - PATCHES=( # pending upstream "${FILESDIR}"/${P}-png-broken-icc-profile.patch @@ -55,6 +53,14 @@ pkg_setup() { use doc && python-any-r1_pkg_setup } +src_unpack() { + # FIXME @upstream: MacOS cruft is getting installed, don't let it in... + # https://github.com/Exiv2/exiv2/issues/620 + tar -C "${WORKDIR}" --exclude=.* -xpf "${DISTDIR}/${A}" --gz 2> /dev/null || + elog "${my_tar}: tar extract command failed at least partially - continuing" + mv "${P}-Source" "${S}" || die "Failed to create source dir ${S}" +} + src_prepare() { # FIXME @upstream: einfo "Converting doc/cmd.txt to UTF-8"