From 82b2679d2ce8ee7a89ba0fc0757c33c15d680df4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Nystr=C3=B6m?= Date: Thu, 7 Feb 2013 11:00:26 +0100 Subject: [PATCH] scripts/create-recipe: Bugfixes for create-recipe easy_install handling. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. Tell easy_install to always download, regardless of python install content. 2. Support https/ftp et.c. URLs provided by easy_install (From OE-Core rev: 18e3654894175af0f51049cf2dcf42295bfbc905) Signed-off-by: David Nyström Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- scripts/create-recipe | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/create-recipe b/scripts/create-recipe index 1b10e1b591..5613e92cb9 100755 --- a/scripts/create-recipe +++ b/scripts/create-recipe @@ -1918,9 +1918,9 @@ if ( -e "$dir/setup.py" ) { if ($recurse_python == 1) { foreach (@rawpythondeps) { my $ptempdir = tempdir(); - $purl = `easy_install -eb $ptempdir "$_" 2>/dev/null`; - $purl =~ s/#.*//; - @purllist = $purl =~ m/Downloading (http:\/\/.*\n)/g; + $purl = `easy_install -aeb $ptempdir "$_" 2>/dev/null`; + $purl =~ s/#.*//g; + @purllist = $purl =~ m/Downloading (.*:\/\/.*\n)/g; chomp(@purllist); # Remove empty lines