Lines Matching refs:url
250 url="https://www.openssl.org/source/openssl-1.1.1u.tar.gz",
277 url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tcl%s-src.tar.gz"%(tcl_tk_ver,),
294 url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tk%s-src.tar.gz"%(tcl_tk_ver,),
317 url="http://tukaani.org/xz/xz-5.2.3.tar.gz",
328 url="http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz",
362 url="https://sqlite.org/2023/sqlite-autoconf-3420000.tar.gz",
386 url="http://download.oracle.com/berkeley-db/db-4.7.25.tar.gz",
767 def downloadURL(url, fname):
769 Download the contents of the url into the file.
771 fpIn = urllib_request.urlopen(url)
786 def verifyThirdPartyFile(url, checksum, fname):
788 Download file from url to filename fname if it does not already exist.
797 downloadURL(url, fname)
952 url = recipe['url']
958 archiveName = os.path.split(url)[-1]
964 verifyThirdPartyFile(url, recipe['checksum'], sourceArchive)
975 url, checksum = patch
976 fn = os.path.join(DEPSRC, os.path.basename(url))
977 verifyThirdPartyFile(url, checksum, fn)
986 url, checksum = patchscript
987 fn = os.path.join(DEPSRC, os.path.basename(url))
988 verifyThirdPartyFile(url, checksum, fn)