Mercurial > hg > PaInt
annotate paint/info.py @ 69:fea269259222
move comment to more appropriate place
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 26 Jan 2013 00:00:56 -0800 |
parents | d001017d5870 |
children | da69d58f960d |
rev | line source |
---|---|
54
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
1 """ |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
2 interfaces to get information from a package |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
3 """ |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
4 |
57 | 5 import imp |
54
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
6 import os |
58
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
7 import subprocess |
54
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
8 import sys |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
9 |
57 | 10 from subprocess import check_call as call |
11 | |
61
1234bfb1f1f0
we really need to pick a canon
Jeff Hammel <jhammel@mozilla.com>
parents:
60
diff
changeset
|
12 # TODO: |
1234bfb1f1f0
we really need to pick a canon
Jeff Hammel <jhammel@mozilla.com>
parents:
60
diff
changeset
|
13 # Reconcile the difference between the keys (and values) between the different |
1234bfb1f1f0
we really need to pick a canon
Jeff Hammel <jhammel@mozilla.com>
parents:
60
diff
changeset
|
14 # implementations. Pick a canon and stick with it. |
1234bfb1f1f0
we really need to pick a canon
Jeff Hammel <jhammel@mozilla.com>
parents:
60
diff
changeset
|
15 |
1234bfb1f1f0
we really need to pick a canon
Jeff Hammel <jhammel@mozilla.com>
parents:
60
diff
changeset
|
16 # SetupOverridePackageInfo: |
1234bfb1f1f0
we really need to pick a canon
Jeff Hammel <jhammel@mozilla.com>
parents:
60
diff
changeset
|
17 # {'entry_points': '\n', 'description': 'a dummy package', 'license': '', 'author': 'Jeff Hammel', 'install_requires': [], 'include_package_data': True, 'classifiers': [], 'url': 'http://example.com/', 'author_email': 'jhammel@mozilla.com', 'version': '0.1', 'zip_safe': False, 'packages': ['dummy'], 'long_description': 'dummy\n===========\n\na dummy package\n\n----\n\nJeff Hammel\n\nhttp://example.com/\n\n', 'name': 'dummy'} |
1234bfb1f1f0
we really need to pick a canon
Jeff Hammel <jhammel@mozilla.com>
parents:
60
diff
changeset
|
18 |
1234bfb1f1f0
we really need to pick a canon
Jeff Hammel <jhammel@mozilla.com>
parents:
60
diff
changeset
|
19 # EggInfo: |
1234bfb1f1f0
we really need to pick a canon
Jeff Hammel <jhammel@mozilla.com>
parents:
60
diff
changeset
|
20 # {'Name': 'dummy', 'License': 'UNKNOWN', 'Author': 'Jeff Hammel', 'Metadata-Version': '1.0', 'Home-page': 'http://example.com/', 'Summary': 'a dummy package', 'Platform': 'UNKNOWN', 'Version': '0.1', 'Author-email': 'jhammel@mozilla.com', 'Description': 'dummy'} |
1234bfb1f1f0
we really need to pick a canon
Jeff Hammel <jhammel@mozilla.com>
parents:
60
diff
changeset
|
21 |
67 | 22 # see http://www.python.org/dev/peps/pep-0314/ : |
23 # Metadata for Python Software Packages | |
61
1234bfb1f1f0
we really need to pick a canon
Jeff Hammel <jhammel@mozilla.com>
parents:
60
diff
changeset
|
24 |
69
fea269259222
move comment to more appropriate place
Jeff Hammel <jhammel@mozilla.com>
parents:
68
diff
changeset
|
25 |
fea269259222
move comment to more appropriate place
Jeff Hammel <jhammel@mozilla.com>
parents:
68
diff
changeset
|
26 # TODO: consider using pkginfo |
fea269259222
move comment to more appropriate place
Jeff Hammel <jhammel@mozilla.com>
parents:
68
diff
changeset
|
27 |
54
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
28 class PackageInfo(object): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
29 """abstract base class of package info""" |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
30 def __init__(self, path): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
31 """ |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
32 - path : path to setup.py or its directory |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
33 """ |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
34 if os.path.isdir(path): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
35 path = os.path.join(path, 'setup.py') |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
36 assert os.path.exists(path), "'%s' not found" % path |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
37 self.setup_py = os.path.abspath(path) |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
38 |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
39 def __call__(self): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
40 """returns dictionary of package info""" |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
41 raise NotImplementedError("abstract base class") |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
42 |
68
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
43 def dependencies(self): |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
44 raise NotImplementedError("abstract base class") |
67 | 45 |
54
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
46 class SetupOverridePackageInfo(PackageInfo): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
47 """ |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
48 gather setup.py information by overriding the function |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
49 """ |
67 | 50 # TODO: override distutils.core.setup as well |
51 # http://docs.python.org/2/distutils/index.html#distutils-index | |
54
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
52 |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
53 def __call__(self): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
54 setuptools = sys.modules.get('setuptools') |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
55 sys.modules['setuptools'] = sys.modules[__name__] |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
56 globals()['setup'] = self._setup |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
57 try: |
57 | 58 module = imp.load_source('setup', self.setup_py) |
56 | 59 finally: |
60 sys.modules.pop('setuptools') | |
61 if setuptools: | |
62 sys.modules['setuptools'] = setuptools | |
63 globals().pop('setup') | |
54
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
64 return self.__dict__.pop('_info') |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
65 |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
66 def _setup(self, **kwargs): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
67 self._info = kwargs |
57 | 68 |
67 | 69 |
57 | 70 class EggInfo(PackageInfo): |
71 """ | |
72 use `python setup.py egg_info` to gather package information | |
73 """ | |
74 | |
75 def __call__(self): | |
58
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
76 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
77 info = self.read_pkg_info(self._pkg_info()) |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
78 # TODO: install_requires |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
79 return info |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
80 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
81 @classmethod |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
82 def read_pkg_info(cls, path): |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
83 """reads PKG-INFO and returns a dict""" |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
84 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
85 # read the package information |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
86 info_dict = {} |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
87 for line in file(path).readlines(): |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
88 if not line or line[0].isspace(): |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
89 continue # XXX neglects description |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
90 assert ':' in line |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
91 key, value = [i.strip() for i in line.split(':', 1)] |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
92 info_dict[key] = value |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
93 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
94 # return the information |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
95 return info_dict |
57 | 96 |
68
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
97 def dependencies(self): |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
98 """return the dependencies of the package""" |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
99 |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
100 # TODO: should probably have a more detailed dict: |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
101 # {'mozinfo': {'version': '>= 0.2', |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
102 # 'url': 'http://something.com/'}} |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
103 |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
104 # get the egg_info directory |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
105 egg_info = self._egg_info() |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
106 |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
107 # read the dependencies |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
108 requires = os.path.join(egg_info, 'requires.txt') |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
109 if os.path.exists(requires): |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
110 dependencies = [i.strip() for i in file(requires).readlines() if i.strip()] |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
111 else: |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
112 dependencies = [] |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
113 dependencies = dict([(i, None) for i in dependencies]) |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
114 |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
115 # read the dependency links |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
116 dependency_links = os.path.join(egg_info, 'dependency_links.txt') |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
117 if os.path.exists(dependency_links): |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
118 links = [i.strip() for i in file(dependency_links).readlines() if i.strip()] |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
119 for link in links: |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
120 # XXX pretty ghetto |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
121 assert '#egg=' in link |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
122 url, dep = link.split('#egg=', 1) |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
123 if dep in dependencies: |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
124 dependencies[dep] = link |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
125 |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
126 return dependencies |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
127 |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
128 |
57 | 129 def _egg_info(self): |
130 """build the egg_info directory""" | |
131 | |
60 | 132 # cached result |
133 if getattr(self, '_egg_info_path', None): | |
57 | 134 return self._egg_info_path |
135 | |
58
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
136 directory = os.path.dirname(self.setup_py) |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
137 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
138 # setup the egg info |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
139 try: |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
140 call([sys.executable, 'setup.py', 'egg_info'], cwd=directory, stdout=subprocess.PIPE) |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
141 except Exception: |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
142 print "Failure to generate egg_info: %s" % self.setup_py |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
143 raise |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
144 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
145 # get the .egg-info directory |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
146 egg_info = [i for i in os.listdir(directory) |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
147 if i.endswith('.egg-info')] |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
148 assert len(egg_info) == 1, 'Expected one .egg-info directory in %s, got: %s' % (directory, egg_info) |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
149 egg_info = os.path.join(directory, egg_info[0]) |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
150 assert os.path.isdir(egg_info), "%s is not a directory" % egg_info |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
151 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
152 # cache it |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
153 self._egg_info_path = egg_info |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
154 return self._egg_info_path |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
155 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
156 def _pkg_info(self): |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
157 """returns path to PKG-INFO file""" |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
158 |
59
acee5e882768
the egg-info tests fail. yay!
Jeff Hammel <jhammel@mozilla.com>
parents:
58
diff
changeset
|
159 if getattr(self, '_pkg_info_path', None): |
58
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
160 # return cached value |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
161 return self._pkg_info_path |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
162 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
163 try: |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
164 egg_info = self._egg_info() |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
165 except Exception, exception: |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
166 # try to get the package info from a file |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
167 path = os.path.dirname(self.setup_py) |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
168 pkg_info = os.path.join(path, 'PKG-INFO') |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
169 if os.path.exists(pkg_info): |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
170 self._pkg_info_path = pkg_info |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
171 return self._pkg_info_path |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
172 raise Exception("Cannot find or generate PKG-INFO") |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
173 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
174 pkg_info = os.path.join(egg_info, 'PKG-INFO') |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
175 assert os.path.exists(pkg_info) |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
176 self._pkg_info_path = pkg_info |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
177 return self._pkg_info_path |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
178 |