From patchwork Mon Jan 16 17:31:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 6233 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 D968A23E07 for ; Mon, 16 Jan 2012 17:31:15 +0000 (UTC) Received: from mail-bk0-f52.google.com (mail-bk0-f52.google.com [209.85.214.52]) by fiordland.canonical.com (Postfix) with ESMTP id BEC2AA183DD for ; Mon, 16 Jan 2012 17:31:15 +0000 (UTC) Received: by bkbzt4 with SMTP id zt4so787651bkb.11 for ; Mon, 16 Jan 2012 09:31:15 -0800 (PST) Received: by 10.204.153.27 with SMTP id i27mr5375139bkw.81.1326735075465; Mon, 16 Jan 2012 09:31:15 -0800 (PST) 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.205.82.144 with SMTP id ac16cs96260bkc; Mon, 16 Jan 2012 09:31:15 -0800 (PST) Received: by 10.216.138.151 with SMTP id a23mr5374358wej.52.1326735073785; Mon, 16 Jan 2012 09:31:13 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id fn3si10595995wbb.34.2012.01.16.09.31.12 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 16 Jan 2012 09:31:13 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1RmqOm-0002pk-Ri for ; Mon, 16 Jan 2012 17:31:12 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id C9028E0442 for ; Mon, 16 Jan 2012 17:31:12 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-dashboard X-Launchpad-Branch: ~linaro-validation/lava-dashboard/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 290 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dashboard/trunk] Rev 290: Fix sdist on windows Message-Id: <20120116173112.14958.54592.launchpad@ackee.canonical.com> Date: Mon, 16 Jan 2012 17:31:12 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14664"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: 46c6b375efc477cf02d7856f2b232f93dfc51ab0 ------------------------------------------------------------ revno: 290 committer: Zygmunt Krynicki branch nick: lava-dashboard timestamp: Mon 2012-01-16 18:16:46 +0100 message: Fix sdist on windows It seems that using globs on windows is very sensitive to the trailing slash. This prevented anyone from sdist/develop while working on windows modified: MANIFEST.in --- lp:lava-dashboard https://code.launchpad.net/~linaro-validation/lava-dashboard/trunk You are subscribed to branch lp:lava-dashboard. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dashboard/trunk/+edit-subscription === modified file 'MANIFEST.in' --- MANIFEST.in 2011-07-01 11:42:57 +0000 +++ MANIFEST.in 2012-01-16 17:16:46 +0000 @@ -9,4 +9,4 @@ recursive-include dashboard_app/tests/regressions *.json recursive-include dashboard_app/static *.png *.js *.css recursive-include dashboard_app/templates *.html -recursive-include examples/ *.xml *.json *html +recursive-include examples *.xml *.json *html