forked from zopefoundation/Zope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.py
45 lines (31 loc) · 1.02 KB
/
util.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from ConfigParser import RawConfigParser
import os
HERE = os.path.abspath(os.path.dirname(__file__))
class CaseSensitiveParser(RawConfigParser):
def optionxform(self, value):
return value
def generate(in_, out):
in_file = os.path.join(HERE, in_)
out_file = os.path.join(HERE, out)
parser = CaseSensitiveParser()
parser.read(in_file)
requirements = []
versions = parser.items('versions')
zope_requirement = (
'-e git+https://github.com/zopefoundation/Zope.git@master#egg=Zope2\n')
for name, pin in versions:
if name == 'Zope2':
if pin:
zope_requirement = 'Zope2==%s\n' % pin
continue
if not pin:
continue
requirements.append('%s==%s\n' % (name, pin))
with open(out_file, 'wb') as fd:
fd.write(zope_requirement)
for req in sorted(requirements):
fd.write(req)
def main():
generate('versions-prod.cfg', 'requirements-full.txt')
if __name__ == '__main__':
main()