Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hint-migrate.py « calm - cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43c5ae995eb8be53df274dc28cc8c2e12daa9d25 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/usr/bin/env python3
#
# Copyright (c) 2017 Jon Turney
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#

import argparse
import os
import re
import shutil
import sys

from . import common_constants
from . import hint

#
# migrate setup.hint to pvr.hint
#
# (just copy setup.hint to any missing pvr.hint. we don't need to bother
# cleaning up setup.hint which are no longer needed, as calm can do that)
#


def hint_migrate(args):
    for arch in common_constants.ARCHES + ['noarch']:
        basedir = os.path.join(args.rel_area, arch, 'release')

        for (dirpath, _subdirs, files) in os.walk(basedir):

            if 'setup.hint' not in files:
                continue
            setup_hint_fn = os.path.join(dirpath, 'setup.hint')

            migrate = set()
            vr = set()
            for f in files:
                match = re.match(r'^(.*?)(-src|)\.tar' + common_constants.PACKAGE_COMPRESSIONS_RE + r'$', f)

                # not an archive?
                if not match:
                    continue

                pvr = match.group(1)
                vr.add(pvr)

                # pvr.hint already exists?
                if os.path.exists(os.path.join(dirpath, pvr + '.hint')):
                    continue

                migrate.add(pvr)

            # nothing to migrate
            if not migrate:
                # that's ok if all vr already have a pvr.hint, but if we didn't
                # find any vr, something is wrong
                if not vr:
                    print("can't migrate %s as it has no versions" % (setup_hint_fn))
                continue

            # does the setup.hint parse as a pvr.hint?
            hints = hint.hint_file_parse(setup_hint_fn, hint.pvr)
            if 'parse-errors' in hints:
                reason = "is invalid as a pvr.hint"

                # specifically mention if it doesn't parse as a pvr.hint because
                # it contains version keys
                for e in hints['parse-errors']:
                    if (e.startswith('unknown key prev') or
                        e.startswith('unknown key curr') or
                        e.startswith('test has non-empty value')):
                        reason = "contains version keys"

                print("can't migrate %s as it %s" % (setup_hint_fn, reason))
                continue

            for pvr in migrate:
                pvr_hint_fn = os.path.join(dirpath, pvr + '.hint')
                print('copy %s -> %s' % (setup_hint_fn, pvr_hint_fn))
                shutil.copy2(setup_hint_fn, pvr_hint_fn)


#
#
#

def main():
    relarea_default = common_constants.FTP

    parser = argparse.ArgumentParser(description='setup.hint migrator')
    parser.add_argument('--releasearea', action='store', metavar='DIR', help="release directory (default: " + relarea_default + ")", default=relarea_default, dest='rel_area')
    (args) = parser.parse_args()

    return hint_migrate(args)


#
#
#

if __name__ == "__main__":
    sys.exit(main())