mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
16 lines
522 B
Diff
16 lines
522 B
Diff
--- a/urlgrabber/grabber.py 2010-02-19 14:50:45.000000000 -0500
|
|
+++ b/urlgrabber/grabber.py 2010-02-19 14:51:28.000000000 -0500
|
|
@@ -1626,6 +1626,12 @@
|
|
|
|
_curl_cache = pycurl.Curl() # make one and reuse it over and over and over
|
|
|
|
+def reset_curl_obj():
|
|
+ """To make sure curl has reread the network/dns info we force a reload"""
|
|
+ global _curl_cache
|
|
+ _curl_cache.close()
|
|
+ _curl_cache = pycurl.Curl()
|
|
+
|
|
|
|
#####################################################################
|
|
# DEPRECATED FUNCTIONS
|