summaryrefslogtreecommitdiffstats
2010-11-26
uclibc.inc: Dont use gnuhash on mips64Khem Raj
2010-07-08uclibc: Add thumb-interwork as local distro feature to enable bxKhem Raj
2010-07-08uClibc: redo configurationBernhard Reutner-Fischer
2010-04-28linux-libc-headers: Delete include/scsi/scsi.hTom Rini
2010-04-11uclibc: add checksums to recipesMartin Jansa
2010-01-22uclibc: Add new recipes for 0.9.30.2 release.Khem Raj
2010-01-15uclibc: Package uclibc_nonshared.a into ulibc-dev.Khem Raj
2009-12-14uclibc-nptl: Move to current tip of branchKhem Raj
2009-11-24uclibc: clean up uClibc for the new oe features mainly done Richard PurdieHenning Heinold
2009-09-03OpenEmbedded: Switch to using linux-uclibceabi and linux-gnu for TARGET_OSKhem Raj
2009-08-31uclibc: Pass ARCH=<TARGET_ARCH>" on make commandline.Khem Raj
2009-07-12uclibc: put SRC_URI = http://www.uclibc.org/downloads/uClibc-${PV}.tar.bz2Henning Heinold
2009-06-11uclibc: don't use ${OEMAKE_NO_CC} for populate_staging, it breaks uclibc-initialPhil Blundell
2009-06-10uclibc: fix glob for FILESPhil Blundell
2009-06-10uclibc: fix handling of bindir != /usr/binPhil Blundell
2009-06-02uclibc.inc : also exclude mips and mipsel from GNU hash.Denis 'Gnutoo' Carikli
2009-04-15uclibc: use LDFLAGS for ldd and ldconfig (fixes QA error)Dirk Opfer
2009-03-20uclibc: Get uclibc working in thumb mode.Khem Raj
2009-03-17rename packages/ to recipes/ per earlier agreementDenys Dmytriyenko
lass="n">join(pth, '../lib')) break if not bitbakepath: sys.stderr.write("Unable to find bitbake by searching parent directory of this script or PATH\n") sys.exit(1) return bitbakepath # For importing the following modules sys.path.insert(0, search_bitbakepath()) import bb.tinfoil def wgetHomepage(pn, homepage): result = subprocess.call('wget ' + '-q -T 5 -t 1 --spider ' + homepage, shell = True) if result: bb.warn("Failed to verify HOMEPAGE (%s) of %s" % (homepage, pn)) return 1 else: return 0 def verifyHomepage(bbhandler): pkg_pn = bbhandler.cooker.recipecache.pkg_pn pnlist = sorted(pkg_pn) count = 0 for pn in pnlist: fn = pkg_pn[pn].pop() data = bb.cache.Cache.loadDataFull(fn, bbhandler.cooker.collection.get_file_appends(fn), bbhandler.config_data) homepage = data.getVar("HOMEPAGE") if homepage: try: urllib2.urlopen(homepage, timeout=5) except Exception: count = count + wgetHomepage(pn, homepage) return count if __name__=='__main__': failcount = 0 bbhandler = bb.tinfoil.Tinfoil() bbhandler.prepare() print "Start to verify HOMEPAGE:" failcount = verifyHomepage(bbhandler) print "finish to verify HOMEPAGE." print "Summary: %s failed" % failcount