From patchwork Mon Sep 4 14:53:24 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: ilovezfs <1714750@bugs.launchpad.net> X-Patchwork-Id: 809716 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=2001:4830:134:3::11; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3xmCp45XX1z9t2c for ; Tue, 5 Sep 2017 01:05:32 +1000 (AEST) Received: from localhost ([::1]:53394 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1doswM-0005NU-SJ for incoming@patchwork.ozlabs.org; Mon, 04 Sep 2017 11:05:30 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41217) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dosuU-0004WL-4q for qemu-devel@nongnu.org; Mon, 04 Sep 2017 11:04:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dossp-0002aW-9s for qemu-devel@nongnu.org; Mon, 04 Sep 2017 11:03:33 -0400 Received: from indium.canonical.com ([91.189.90.7]:47562) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dossp-0002ZP-4Z for qemu-devel@nongnu.org; Mon, 04 Sep 2017 11:01:51 -0400 Received: from loganberry.canonical.com ([91.189.90.37]) by indium.canonical.com with esmtp (Exim 4.76 #1 (Debian)) id 1dossm-0002IV-Qb for ; Mon, 04 Sep 2017 15:01:48 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 880122E81BE for ; Mon, 4 Sep 2017 15:01:45 +0000 (UTC) MIME-Version: 1.0 Date: Mon, 04 Sep 2017 14:53:24 -0000 From: ilovezfs <1714750@bugs.launchpad.net> To: qemu-devel@nongnu.org X-Launchpad-Notification-Type: bug X-Launchpad-Bug: product=qemu; status=New; importance=Undecided; assignee=None; X-Launchpad-Bug-Information-Type: Public X-Launchpad-Bug-Private: no X-Launchpad-Bug-Security-Vulnerability: no X-Launchpad-Bug-Commenters: ilovezfs pmaydell th-huth X-Launchpad-Bug-Reporter: ilovezfs (ilovezfs) X-Launchpad-Bug-Modifier: ilovezfs (ilovezfs) References: <150442540217.17409.6458222878014636993.malonedeb@gac.canonical.com> Message-Id: <150453680466.10750.3497504310042559272.malone@wampee.canonical.com> X-Launchpad-Message-Rationale: Subscriber (QEMU) @qemu-devel-ml X-Launchpad-Message-For: qemu-devel-ml Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="18446"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: 2d9f684e2c42affe1b091e560fc2c8adf55082b5 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 91.189.90.7 Subject: [Qemu-devel] [Bug 1714750] Re: 2.10.0 cannot be installed on case-insensitive file system X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Bug 1714750 <1714750@bugs.launchpad.net> Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" I mean in that every user is going to have to figure this out individually until it's fixed. In any case it will not be a problem for our Homebrew users, as I will do this: ``` ``` https://github.com/Homebrew/homebrew-core/pull/17467 diff --git a/Formula/qemu.rb b/Formula/qemu.rb index 16a54af167..db0e68d103 100644 --- a/Formula/qemu.rb +++ b/Formula/qemu.rb @@ -1,10 +1,20 @@ +# Fix extraction on case-insentive file systems. +# Reported 4 Sep 2017 https://bugs.launchpad.net/qemu/+bug/1714750 +# This is actually an issue with u-boot and may take some time to sort out. +class QemuDownloadStrategy < CurlDownloadStrategy + def stage + exclude = "#{name}-#{version}/roms/u-boot/scripts/Kconfig" + safe_system "tar", "xjf", cached_location, "--exclude", exclude + chdir + end +end + class Qemu < Formula desc "x86 and PowerPC Emulator" homepage "https://www.qemu.org/" - url "https://download.qemu.org/qemu-2.9.0.tar.bz2" - sha256 "00bfb217b1bb03c7a6c3261b819cfccbfb5a58e3e2ceff546327d271773c6c14" - revision 2 - + url "https://download.qemu.org/qemu-2.10.0.tar.bz2", + :using => QemuDownloadStrategy + sha256 "7e9f39e1306e6dcc595494e91c1464d4b03f55ddd2053183e0e1b69f7f776d48" head "https://git.qemu.org/git/qemu.git" bottle do