97 lines
2.8 KiB
Python
Raw Normal View History

2012-06-27 16:00:03 -07:00
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2012 OpenStack, LLC
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
r"""
A simple script to update the requirements files from a global set of
allowable requirements.
The script can be called like this:
$> python update.py ../myproj
Any requirements listed in the target files will have their versions
updated to match the global requirements. Requirements not in the global
files will be dropped.
"""
import os
import os.path
import sys
from pip import req
def _parse_reqs(filename):
reqs = dict()
pip_requires = open(filename, "r").readlines()
for pip in pip_requires:
pip = pip.strip()
if pip.startswith("#") or len(pip) == 0:
continue
install_require = req.InstallRequirement.from_line(pip)
if install_require.editable:
reqs[pip] = pip
elif install_require.url:
reqs[pip] = pip
else:
reqs[install_require.req.key] = pip
return reqs
def _copy_requires(req, source_path, dest_dir):
2012-06-27 16:00:03 -07:00
"""Copy requirements files."""
dest_path = os.path.join(dest_dir, req)
if not os.path.exists(dest_path):
# This can happen, we try all paths
return
2012-06-27 16:00:03 -07:00
source_reqs = _parse_reqs(source_path)
dest_reqs = _parse_reqs(dest_path)
dest_keys = [key.lower() for key in dest_reqs.keys()]
dest_keys.sort()
print "Syncing %s" % req
with open(dest_path, 'w') as new_reqs:
new_reqs.write("# This file is managed by openstack-depends\n")
for old_require in dest_keys:
# Special cases:
# projects need to align pep8 version on their own time
if "pep8" in old_require:
new_reqs.write("%s\n" % dest_reqs[old_require])
continue
# versions of our stuff from tarballs.openstack.org are ok
2012-06-27 16:00:03 -07:00
if old_require in source_reqs or \
"http://tarballs.openstack.org" in old_require:
2012-06-27 16:00:03 -07:00
new_reqs.write("%s\n" % source_reqs[old_require])
2012-06-27 16:00:03 -07:00
def main(argv):
for req in ('tools/pip-requires', 'requirements.txt'):
_copy_requires(req, 'tools/pip-requires', argv[0])
for req in ('tools/test-requires', 'test-requirements.txt'):
_copy_requires(req, 'tools/test-requires', argv[0])
2012-06-27 16:00:03 -07:00
if __name__ == "__main__":
main(sys.argv[1:])