Mercurial > hg > PaInt
annotate paint/info.py @ 68:d001017d5870
migrate this code to the right place
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 25 Jan 2013 23:43:13 -0800 |
parents | 8f39ba642531 |
children | fea269259222 |
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 |
54
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
25 class PackageInfo(object): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
26 """abstract base class of package info""" |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
27 def __init__(self, path): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
28 """ |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
29 - path : path to setup.py or its directory |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
30 """ |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
31 if os.path.isdir(path): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
32 path = os.path.join(path, 'setup.py') |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
33 assert os.path.exists(path), "'%s' not found" % path |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
34 self.setup_py = os.path.abspath(path) |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
35 |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
36 def __call__(self): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
37 """returns dictionary of package info""" |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
38 raise NotImplementedError("abstract base class") |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
39 |
68
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
40 def dependencies(self): |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
41 raise NotImplementedError("abstract base class") |
67 | 42 |
54
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
43 class SetupOverridePackageInfo(PackageInfo): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
44 """ |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
45 gather setup.py information by overriding the function |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
46 """ |
67 | 47 # TODO: override distutils.core.setup as well |
48 # 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
|
49 |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
50 def __call__(self): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
51 setuptools = sys.modules.get('setuptools') |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
52 sys.modules['setuptools'] = sys.modules[__name__] |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
53 globals()['setup'] = self._setup |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
54 try: |
57 | 55 module = imp.load_source('setup', self.setup_py) |
56 | 56 finally: |
57 sys.modules.pop('setuptools') | |
58 if setuptools: | |
59 sys.modules['setuptools'] = setuptools | |
60 globals().pop('setup') | |
54
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
61 return self.__dict__.pop('_info') |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
62 |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
63 def _setup(self, **kwargs): |
a8236b97abd3
separate methods for gathering package information
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
64 self._info = kwargs |
57 | 65 |
67 | 66 |
57 | 67 class EggInfo(PackageInfo): |
68 """ | |
69 use `python setup.py egg_info` to gather package information | |
70 """ | |
71 | |
72 def __call__(self): | |
58
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
73 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
74 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
|
75 # TODO: install_requires |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
76 return info |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
77 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
78 @classmethod |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
79 def read_pkg_info(cls, path): |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
80 """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
|
81 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
82 # read the package information |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
83 info_dict = {} |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
84 for line in file(path).readlines(): |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
85 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
|
86 continue # XXX neglects description |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
87 assert ':' in line |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
88 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
|
89 info_dict[key] = value |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
90 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
91 # return the information |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
92 return info_dict |
57 | 93 |
68
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
94 def dependencies(self): |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
95 """return the dependencies of the package""" |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
96 |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
97 # 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
|
98 # {'mozinfo': {'version': '>= 0.2', |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
99 # 'url': 'http://something.com/'}} |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
100 |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
101 # get the egg_info directory |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
102 egg_info = self._egg_info() |
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 # read the dependencies |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
105 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
|
106 if os.path.exists(requires): |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
107 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
|
108 else: |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
109 dependencies = [] |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
110 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
|
111 |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
112 # read the dependency links |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
113 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
|
114 if os.path.exists(dependency_links): |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
115 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
|
116 for link in links: |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
117 # XXX pretty ghetto |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
118 assert '#egg=' in link |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
119 url, dep = link.split('#egg=', 1) |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
120 if dep in dependencies: |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
121 dependencies[dep] = link |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
122 |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
123 return dependencies |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
124 |
d001017d5870
migrate this code to the right place
Jeff Hammel <jhammel@mozilla.com>
parents:
67
diff
changeset
|
125 |
57 | 126 def _egg_info(self): |
127 """build the egg_info directory""" | |
128 | |
60 | 129 # cached result |
130 if getattr(self, '_egg_info_path', None): | |
57 | 131 return self._egg_info_path |
132 | |
58
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
133 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
|
134 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
135 # setup the egg info |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
136 try: |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
137 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
|
138 except Exception: |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
139 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
|
140 raise |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
141 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
142 # get the .egg-info directory |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
143 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
|
144 if i.endswith('.egg-info')] |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
145 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
|
146 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
|
147 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
|
148 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
149 # cache it |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
150 self._egg_info_path = egg_info |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
151 return self._egg_info_path |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
152 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
153 def _pkg_info(self): |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
154 """returns path to PKG-INFO file""" |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
155 |
59
acee5e882768
the egg-info tests fail. yay!
Jeff Hammel <jhammel@mozilla.com>
parents:
58
diff
changeset
|
156 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
|
157 # return cached value |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
158 return self._pkg_info_path |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
159 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
160 try: |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
161 egg_info = self._egg_info() |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
162 except Exception, exception: |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
163 # 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
|
164 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
|
165 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
|
166 if os.path.exists(pkg_info): |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
167 self._pkg_info_path = pkg_info |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
168 return self._pkg_info_path |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
169 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
|
170 |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
171 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
|
172 assert os.path.exists(pkg_info) |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
173 self._pkg_info_path = pkg_info |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
174 return self._pkg_info_path |
13767ee2ddf4
start adding an egg_info based information thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
175 |