aboutsummaryrefslogtreecommitdiff
blob: 23e9b361be79d7c6f93b7f36369d268832840670 (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#!/usr/bin/env python

import re
import sys
import subprocess
from distutils import core
from distutils.cmd import Command
from glob import glob

import os
import io

sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), "pym"))

if (len(sys.argv) > 2) and (sys.argv[1] == "set_version"):
    __version__ = sys.argv[2]
else:
    __version__ = os.getenv("VERSION", default=os.getenv("PVR", default="9999"))

cwd = os.getcwd()

# Load EPREFIX from Portage, fall back to the empty string if it fails
try:
    from portage.const import EPREFIX
except ImportError:
    EPREFIX = ""


# Bash files that need `VERSION=""` subbed, relative to this dir:
bash_scripts = [
    (os.path.join(cwd, path), "VERSION=")
    for path in ("bin/ebump", "bin/euse", "bin/revdep-rebuild.sh")
]

# Python files that need `__version__ = ""` subbed, relative to this dir:
python_scripts = [
    (os.path.join(cwd, path), "__version__ = ")
    for path in (
        "bin/eclean",
        "bin/eclean-dist",
        "bin/eclean-pkg",
        "bin/epkginfo",
        "pym/gentoolkit/eclean/cli.py",
        "pym/gentoolkit/enalyze/__init__.py",
        "pym/gentoolkit/ekeyword/ekeyword.py",
        "pym/gentoolkit/equery/__init__.py",
        "pym/gentoolkit/eshowkw/__init__.py",
        "pym/gentoolkit/imlate/imlate.py",
        "pym/gentoolkit/revdep_rebuild/__init__.py",
    )
]

manpages = [
    (os.path.join(cwd, path[0]), path[1])
    for path in (
        ("man/ebump.1", "EBUMP"),
        ("man/eclean.1", "ECLEAN"),
        ("man/enalyze.1", "ENALYZE"),
        ("man/epkginfo.1", "EPKGINFO"),
        ("man/equery.1", "EQUERY"),
        ("man/eread.1", "EREAD"),
        ("man/eshowkw.1", "ESHOWKW"),
        ("man/euse.1", "EUSE"),
        ("man/imlate.1", "IMLATE"),
        ("man/revdep-rebuild.1", "REVDEP-REBUILD"),
    )
]


class set_version(core.Command):
    """Set python __version__ and bash VERSION to our __version__."""

    description = "hardcode scripts' version using VERSION from environment"
    user_options = []  # [(long_name, short_name, desc),]

    def initialize_options(self):
        pass

    def finalize_options(self):
        pass

    def run(self):
        ver = "git" if __version__ == "9999" else __version__
        print("Setting version to %s" % ver)

        def sub(files, pattern):
            for f in files:
                updated_file = []
                with io.open(f[0], "r", 1, "utf_8") as s:
                    for line in s:
                        newline = re.sub(pattern % f[1], '"%s"' % ver, line, 1)
                        updated_file.append(newline)
                with io.open(f[0], "w", 1, "utf_8") as s:
                    s.writelines(updated_file)

        quote = r'[\'"]{1}'
        bash_re = r"(?<=%s)" + quote + "[^'\"]*" + quote
        sub(bash_scripts, bash_re)
        python_re = r"(?<=^%s)" + quote + "[^'\"]*" + quote
        sub(python_scripts, python_re)
        man_re = r'(?<=^.TH "%s" "[0-9]" )' + quote + "[^'\"]*" + quote
        sub(manpages, man_re)


class TestCommand(Command):
    user_options = []

    def initialize_options(self):
        pass

    def finalize_options(self):
        pass

    def run(self):
        args = [sys.executable, "-m", "unittest", "discover", "pym"]
        raise SystemExit(subprocess.call(args))


packages = [
    str(".".join(root.split(os.sep)[1:]))
    for root, dirs, files in os.walk("pym/gentoolkit")
    if "__init__.py" in files
]

test_data = {
    "gentoolkit": [
        "test/eclean/Packages",
        "test/eclean/testdistfiles.tar.gz",
        "test/eclean/distfiles.exclude",
    ]
}

core.setup(
    name="gentoolkit",
    version=__version__,
    description="Set of tools that work with and enhance portage.",
    author="",
    author_email="",
    maintainer="Gentoo Portage Tools Team",
    maintainer_email="tools-portage@gentoo.org",
    url="http://www.gentoo.org/proj/en/portage/tools/index.xml",
    download_url="http://distfiles.gentoo.org/distfiles/gentoolkit-%s.tar.gz"
    % __version__,
    package_dir={"": "pym"},
    packages=packages,
    package_data=test_data,
    scripts=(glob("bin/*")),
    data_files=(
        (
            os.path.join(os.sep, EPREFIX.lstrip(os.sep), "etc/env.d"),
            ["data/99gentoolkit-env"],
        ),
        (
            os.path.join(os.sep, EPREFIX.lstrip(os.sep), "etc/revdep-rebuild"),
            ["data/revdep-rebuild/99revdep-rebuild"],
        ),
        (
            os.path.join(os.sep, EPREFIX.lstrip(os.sep), "etc/eclean"),
            glob("data/eclean/*"),
        ),
        (
            os.path.join(os.sep, EPREFIX.lstrip(os.sep), "usr/share/man/man1"),
            glob("man/*"),
        ),
        (
            os.path.join(os.sep, EPREFIX.lstrip(os.sep), "usr/lib/tmpfiles.d"),
            ["data/tmpfiles.d/revdep-rebuild.conf"],
        ),
    ),
    cmdclass={
        "test": TestCommand,
        "set_version": set_version,
    },
)

# vim: set ts=4 sw=4 tw=79: