summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/selftest/recipetool.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oeqa/selftest/recipetool.py b/meta/lib/oeqa/selftest/recipetool.py
index d62c8bb603..d47b9dd01f 100644
--- a/meta/lib/oeqa/selftest/recipetool.py
+++ b/meta/lib/oeqa/selftest/recipetool.py
@@ -369,15 +369,15 @@ class RecipetoolTests(RecipetoolBase):
369 tempsrc = os.path.join(self.tempdir, 'srctree') 369 tempsrc = os.path.join(self.tempdir, 'srctree')
370 os.makedirs(tempsrc) 370 os.makedirs(tempsrc)
371 recipefile = os.path.join(self.tempdir, 'logrotate_3.8.7.bb') 371 recipefile = os.path.join(self.tempdir, 'logrotate_3.8.7.bb')
372 srcuri = 'https://fedorahosted.org/releases/l/o/logrotate/logrotate-3.8.7.tar.gz' 372 srcuri = 'https://github.com/logrotate/logrotate/archive/r3-8-7.tar.gz'
373 result = runCmd('recipetool create -o %s %s -x %s' % (recipefile, srcuri, tempsrc)) 373 result = runCmd('recipetool create -o %s %s -x %s' % (recipefile, srcuri, tempsrc))
374 self.assertTrue(os.path.isfile(recipefile)) 374 self.assertTrue(os.path.isfile(recipefile))
375 checkvars = {} 375 checkvars = {}
376 checkvars['LICENSE'] = 'GPLv2' 376 checkvars['LICENSE'] = 'GPLv2'
377 checkvars['LIC_FILES_CHKSUM'] = 'file://COPYING;md5=18810669f13b87348459e611d31ab760' 377 checkvars['LIC_FILES_CHKSUM'] = 'file://COPYING;md5=18810669f13b87348459e611d31ab760'
378 checkvars['SRC_URI'] = 'https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.gz' 378 checkvars['SRC_URI'] = 'https://github.com/logrotate/logrotate/archive/r3-8-7.tar.gz'
379 checkvars['SRC_URI[md5sum]'] = '99e08503ef24c3e2e3ff74cc5f3be213' 379 checkvars['SRC_URI[md5sum]'] = '6b1aa0e0d07eda3c9a2526520850397a'
380 checkvars['SRC_URI[sha256sum]'] = 'f6ba691f40e30e640efa2752c1f9499a3f9738257660994de70a45fe00d12b64' 380 checkvars['SRC_URI[sha256sum]'] = 'dece4bfeb9d8374a0ecafa34be139b5a697db5c926dcc69a9b8715431a22e733'
381 self._test_recipe_contents(recipefile, checkvars, []) 381 self._test_recipe_contents(recipefile, checkvars, [])
382 382
383 @testcase(1194) 383 @testcase(1194)