* [PATCH] Bugfixes for create-recipe easy_install handling.
@ 2013-02-07 10:00 David Nyström
0 siblings, 0 replies; only message in thread
From: David Nyström @ 2013-02-07 10:00 UTC (permalink / raw)
To: openembedded-core
1. Tell easy_install to always download, regardless of python
install content.
2. Support https/ftp et.c. URLs provided by easy_install
Signed-off-by: David Nyström <david.nystrom@enea.com>
---
scripts/create-recipe | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/scripts/create-recipe b/scripts/create-recipe
index 1b10e1b..5613e92 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
--
1.7.9.5
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-02-07 23:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-07 10:00 [PATCH] Bugfixes for create-recipe easy_install handling David Nyström
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox