From patchwork Thu Jun 21 12:49:50 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Riku Voipio X-Patchwork-Id: 9535 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 6444A23F19 for ; Thu, 21 Jun 2012 12:50:13 +0000 (UTC) Received: from mail-gh0-f180.google.com (mail-gh0-f180.google.com [209.85.160.180]) by fiordland.canonical.com (Postfix) with ESMTP id 2B739A1803A for ; Thu, 21 Jun 2012 12:50:13 +0000 (UTC) Received: by ghbz12 with SMTP id z12so409484ghb.11 for ; Thu, 21 Jun 2012 05:50:12 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:date:from :to:subject:message-id:mime-version:content-type:content-disposition :x-message-flag:user-agent:x-gm-message-state; bh=SoPFSGFE1MdqbggxPaap1SgzxDkIpdOQr7OXEP1ATK0=; b=Mw4pjK3XNcBcXm2pOJnj8PYRn+X133NQ0RjXvNVMgY3Wg7oPXOuY3Yp/Md9a/vlorC YIaAqA8222huGmbDvDEg5CUWsXTh7xC1aM0lbSTzo8Yv+hjfvvInKEDK/VYtzoYy54iD Le1s5KR8bWtR9X67ZrfFj0Vj4MtdMrIzmc8Z1N0TctlBS/osmtRbuLaFaQJ/v8agO0eq euYz6bgyiTs8LWqDgccjdSza9cvshH1XMyL0JXnDFhAgtWRHYPq5KJf8ee2Pq9RxgC/8 +SEUZIbc08EhwlyZHDcXOQ3eJgNgAv3jcwLERjvJt7W4O42ZJrqr1RX53rsQ2CyeS6G8 GxIw== Received: by 10.50.87.227 with SMTP id bb3mr7136855igb.57.1340282995119; Thu, 21 Jun 2012 05:49:55 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.24.148 with SMTP id v20csp18833ibb; Thu, 21 Jun 2012 05:49:53 -0700 (PDT) Received: by 10.181.11.137 with SMTP id ei9mr20174221wid.21.1340282993523; Thu, 21 Jun 2012 05:49:53 -0700 (PDT) Received: from afflict.kos.to (afflict.kos.to. [92.243.29.197]) by mx.google.com with ESMTPS id cp7si5532378wib.31.2012.06.21.05.49.52 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 21 Jun 2012 05:49:53 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of nchip@afflict.kos.to designates 92.243.29.197 as permitted sender) client-ip=92.243.29.197; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of nchip@afflict.kos.to designates 92.243.29.197 as permitted sender) smtp.mail=nchip@afflict.kos.to Received: by afflict.kos.to (Postfix, from userid 1000) id E36B7264C7; Thu, 21 Jun 2012 14:49:50 +0200 (CEST) Date: Thu, 21 Jun 2012 15:49:50 +0300 From: Riku Voipio To: submit@bugs.debian.org Subject: [PATCH] Set e2fsprogs as Multi-Arch: foreign Message-ID: <20120621124950.GA20021@afflict.kos.to> MIME-Version: 1.0 Content-Disposition: inline X-message-flag: Warning: message not sent with a DRM-Certified client User-Agent: Mutt/1.5.20 (2009-06-14) X-Gm-Message-State: ALoCoQlC/7ms5P9OXUAXJiQOOyqrqY49JBETrsOUQfgLkmbzhKxod+RH/nmb1/IfaxXxTKQbpQrR Package: e2fsprogs Version: 1.42.4-3 Severity: wishlist Tags: patch User: multiarch-devel@lists.alioth.debian.org Usertags: multiarch If package foo:i386 depends on e2fsprogs, without Multi-Arch: foreign statetment, the i386 version of e2fsprogs will be installed. By setting the foreign field, the already installed (in this example amd64) e2fsprogs package is enough to satisfy the dependency. The M-A: foreign field is ignored in pre-multiarch systems, so ifdeffing it using macros should be unnessary. Signed-off-by: Riku Voipio --- debian/control.in | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/control.in b/debian/control.in index 3ef9294..292959a 100644 --- a/debian/control.in +++ b/debian/control.in @@ -240,6 +240,7 @@ ifdef(`UTIL_LINUX_NG', '', ``Pre-Depends: ${shlibs:Depends}, ${misc:Depends} '')dnl +Multi-Arch: foreign Suggests: gpart, parted, e2fsck-static Conflicts: dump (<< 0.4b4-4), quota (<< 1.55-8.1), initscripts (<< 2.85-4), sysvinit (<< 2.85-4) Replaces: hurd (<= 20040301-1), libblkid1 (<< 1.38+1.39-WIP-2005.12.10-2), libuuid1 (<< 1.38+1.39-WIP-2005.12.10-2)