Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pms-test-suite:master commit in: pmstestsuite/library/standard/
Date: Thu, 28 Jul 2011 18:02:11
Message-Id: 2e1edecab867693deb82662d025dd491a89b9dbd.mgorny@gentoo
1 commit: 2e1edecab867693deb82662d025dd491a89b9dbd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 28 17:16:09 2011 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 28 17:16:09 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/pms-test-suite.git;a=commit;h=2e1edeca
7
8 Switch fetching ebuild tests to a sane URI.
9
10 ---
11 pmstestsuite/library/standard/ext_cases.py | 5 +----
12 1 files changed, 1 insertions(+), 4 deletions(-)
13
14 diff --git a/pmstestsuite/library/standard/ext_cases.py b/pmstestsuite/library/standard/ext_cases.py
15 index fef45a1..837a608 100644
16 --- a/pmstestsuite/library/standard/ext_cases.py
17 +++ b/pmstestsuite/library/standard/ext_cases.py
18 @@ -10,13 +10,10 @@ class DBusFetchingEbuildTestCase(DBusEbuildTestCase):
19 sources -- to decrease ${DISTDIR} pollution.
20 """
21
22 - # temporary, due to SRC_URI arrow
23 - supported_eapis = (2, 3, 4)
24 -
25 def __init__(self, *args, **kwargs):
26 DBusEbuildTestCase.__init__(self, *args, **kwargs)
27 # XXX: switch to a dedicated file without the arrow
28 - val = 'http://www.gentoo.org/ -> pms-test-suite-dummy.html'
29 + val = 'http://dev.gentoo.org/~mgorny/pmsts-temp.bin'
30 if 'SRC_URI' in self.ebuild_vars:
31 val = '%s %s' % (self.ebuild_vars['SRC_URI'], val)
32 self.ebuild_vars['SRC_URI'] = val