summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/selftest/cases/recipetool.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/recipetool.py b/meta/lib/oeqa/selftest/cases/recipetool.py
index 754ea94982..437eb2a733 100644
--- a/meta/lib/oeqa/selftest/cases/recipetool.py
+++ b/meta/lib/oeqa/selftest/cases/recipetool.py
@@ -431,12 +431,12 @@ class RecipetoolTests(RecipetoolBase):
431 temprecipe = os.path.join(self.tempdir, 'recipe') 431 temprecipe = os.path.join(self.tempdir, 'recipe')
432 os.makedirs(temprecipe) 432 os.makedirs(temprecipe)
433 recipefile = os.path.join(temprecipe, 'navit_0.5.0.bb') 433 recipefile = os.path.join(temprecipe, 'navit_0.5.0.bb')
434 srcuri = 'http://downloads.sourceforge.net/project/navit/v0.5.0/navit-0.5.0.tar.gz' 434 srcuri = 'http://downloads.yoctoproject.org/mirror/sources/navit-0.5.0.tar.gz'
435 result = runCmd('recipetool create -o %s %s' % (temprecipe, srcuri)) 435 result = runCmd('recipetool create -o %s %s' % (temprecipe, srcuri))
436 self.assertTrue(os.path.isfile(recipefile)) 436 self.assertTrue(os.path.isfile(recipefile))
437 checkvars = {} 437 checkvars = {}
438 checkvars['LICENSE'] = set(['Unknown', 'GPLv2', 'LGPLv2']) 438 checkvars['LICENSE'] = set(['Unknown', 'GPLv2', 'LGPLv2'])
439 checkvars['SRC_URI'] = 'http://downloads.sourceforge.net/project/navit/v${PV}/navit-${PV}.tar.gz' 439 checkvars['SRC_URI'] = 'http://downloads.yoctoproject.org/mirror/sources/navit-${PV}.tar.gz'
440 checkvars['SRC_URI[md5sum]'] = '242f398e979a6b8c0f3c802b63435b68' 440 checkvars['SRC_URI[md5sum]'] = '242f398e979a6b8c0f3c802b63435b68'
441 checkvars['SRC_URI[sha256sum]'] = '13353481d7fc01a4f64e385dda460b51496366bba0fd2cc85a89a0747910e94d' 441 checkvars['SRC_URI[sha256sum]'] = '13353481d7fc01a4f64e385dda460b51496366bba0fd2cc85a89a0747910e94d'
442 checkvars['DEPENDS'] = set(['freetype', 'zlib', 'openssl', 'glib-2.0', 'virtual/libgl', 'virtual/egl', 'gtk+', 'libpng', 'libsdl', 'freeglut', 'dbus-glib']) 442 checkvars['DEPENDS'] = set(['freetype', 'zlib', 'openssl', 'glib-2.0', 'virtual/libgl', 'virtual/egl', 'gtk+', 'libpng', 'libsdl', 'freeglut', 'dbus-glib'])