From patchwork Fri Jun 10 04:52:13 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Larson X-Patchwork-Id: 1799 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.45.109) by localhost6.localdomain6 with IMAP4-SSL; 10 Jun 2011 20:11:49 -0000 Delivered-To: patches@linaro.org Received: by 10.52.181.10 with SMTP id ds10cs289848vdc; Thu, 9 Jun 2011 21:52:15 -0700 (PDT) Received: by 10.227.198.199 with SMTP id ep7mr1626143wbb.40.1307681534385; Thu, 09 Jun 2011 21:52:14 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id ek19si5755193wbb.143.2011.06.09.21.52.14; Thu, 09 Jun 2011 21:52:14 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1QUthd-0000aQ-NY for ; Fri, 10 Jun 2011 04:52:13 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id B0D792E8067 for ; Fri, 10 Jun 2011 04:52:13 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-test X-Launchpad-Branch: ~linaro-validation/lava-test/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 70 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-test/trunk] Rev 70: Minimum necessary to rename abrek to lava-test. More cleanup can be Message-Id: <20110610045213.3104.29931.launchpad@loganberry.canonical.com> Date: Fri, 10 Jun 2011 04:52:13 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13175"; Instance="initZopeless config overlay" X-Launchpad-Hash: 3adeea0dd79e47d4fd72a236cfe326bd3c1c92a4 ------------------------------------------------------------ revno: 70 committer: Paul Larson branch nick: lava-test timestamp: Thu 2011-06-09 23:49:54 -0500 message: Minimum necessary to rename abrek to lava-test. More cleanup can be done later to change filenames, class names, etc to be more consistent with the rename renamed: bin/abrek => bin/lava-test modified: README setup.py --- lp:lava-test https://code.launchpad.net/~linaro-validation/lava-test/trunk You are subscribed to branch lp:lava-test. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-test/trunk/+edit-subscription === modified file 'README' --- README 2010-07-19 10:42:37 +0000 +++ README 2011-06-10 04:49:54 +0000 @@ -1,4 +1,4 @@ -Abrek is an automated testing framework with pre-defined tests and the +Lava-test is an automated testing framework with pre-defined tests and the ability to define additional tests as needed. Tests can be automatically installed, executed, and the results can be parsed and uploaded to an external server. === renamed file 'bin/abrek' => 'bin/lava-test' === modified file 'setup.py' --- setup.py 2010-08-18 15:33:32 +0000 +++ setup.py 2011-06-10 04:49:54 +0000 @@ -21,16 +21,16 @@ try: from DistUtilsExtra.auto import setup except ImportError: - print >> sys.stderr, 'To build abrek you need', \ + print >> sys.stderr, 'To build lava-test you need', \ 'https://launchpad.net/python-distutils-extra' sys.exit(1) setup( -name='abrek', +name='lava-test', version=version, author='Paul Larson', author_email='paul.larson@linaro.org', -url='https://launchpad.net/abrek', -description='Abrek automated testing framework', +url='https://launchpad.net/lava-test', +description='Lava test execution framework', long_description=open("README").read() + "\n", )