don't write pointless 'npm(foo) > 0' deps
This commit is contained in:
parent
5dd35b8cd5
commit
8792574c0a
@ -54,7 +54,7 @@ def main():
|
|||||||
if 'engines' in metadata and 'node' in metadata['engines']:
|
if 'engines' in metadata and 'node' in metadata['engines']:
|
||||||
deps += process_dep(req, metadata['engines']['node'])
|
deps += process_dep(req, metadata['engines']['node'])
|
||||||
else:
|
else:
|
||||||
print req
|
deps += req
|
||||||
|
|
||||||
if 'dependencies' in metadata:
|
if 'dependencies' in metadata:
|
||||||
for name, version in metadata['dependencies'].iteritems():
|
for name, version in metadata['dependencies'].iteritems():
|
||||||
@ -119,6 +119,7 @@ def convert_dep(req, operator, version):
|
|||||||
|
|
||||||
# 1 or 1.x or 1.x.x or ~1
|
# 1 or 1.x or 1.x.x or ~1
|
||||||
if len(parts) == 1 or parts[1] == 'x':
|
if len(parts) == 1 or parts[1] == 'x':
|
||||||
|
if parts[0] != 0:
|
||||||
deps.append('{0} >= {1}'.format(req, parts[0]))
|
deps.append('{0} >= {1}'.format(req, parts[0]))
|
||||||
deps.append('{0} < {1}'.format(req, parts[0]+1))
|
deps.append('{0} < {1}'.format(req, parts[0]+1))
|
||||||
|
|
||||||
|
@ -166,6 +166,7 @@ cp -p common.gypi %{buildroot}%{_datadir}/node
|
|||||||
- add defines to match libuv (#892601)
|
- add defines to match libuv (#892601)
|
||||||
- make v8 dependency explicit (and thus more accurate)
|
- make v8 dependency explicit (and thus more accurate)
|
||||||
- add -g to $C(XX)FLAGS instead of patching configure to add it
|
- add -g to $C(XX)FLAGS instead of patching configure to add it
|
||||||
|
- don't write pointless 'npm(foo) > 0' deps
|
||||||
|
|
||||||
* Sat Jan 05 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 0.9.5-4
|
* Sat Jan 05 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 0.9.5-4
|
||||||
- install development headers
|
- install development headers
|
||||||
|
Loading…
Reference in New Issue
Block a user