diff options
author | Pascal Terjan <pterjan@gmail.com> | 2014-10-14 20:49:00 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@gmail.com> | 2014-10-14 20:49:45 +0000 |
commit | c4ab8fc45f49e5490f6193c99fb945cc95961023 (patch) | |
tree | f303964bdd985854619ab20cb8a0de9cb1342028 | |
parent | 1bf0de883294342847c7d886689b2f2e614716e5 (diff) | |
download | rpm-setup-c4ab8fc45f49e5490f6193c99fb945cc95961023.tar rpm-setup-c4ab8fc45f49e5490f6193c99fb945cc95961023.tar.gz rpm-setup-c4ab8fc45f49e5490f6193c99fb945cc95961023.tar.bz2 rpm-setup-c4ab8fc45f49e5490f6193c99fb945cc95961023.tar.xz rpm-setup-c4ab8fc45f49e5490f6193c99fb945cc95961023.zip |
Support being passed the egg-info directory
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | pythoneggs.py | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- support being passed the egg-info directory + Version 2.5 - 1 October 2014, by Thierry Vignaud - do not emit PHP requires for package's own files diff --git a/pythoneggs.py b/pythoneggs.py index 23a595f..367aad1 100755 --- a/pythoneggs.py +++ b/pythoneggs.py @@ -88,7 +88,10 @@ for f in files: metadata = PathMetadata(path_item, parent_name) else: path_item = f - metadata = FileMetadata(f) + if isdir(f): + metadata = PathMetadata(parent_name, f) + else: + metadata = FileMetadata(f) dist = Distribution.from_location(path_item, dist_name, metadata) if not dist.py_version: continue |