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
|
#!/usr/bin/env python3
import logging
import re
import sys
from distutils import core, log
from distutils.command.sdist import sdist
from distutils.core import Command
import os
import io
import unittest
__version__ = os.getenv("VERSION", default=os.getenv("PVR", default="9999"))
cwd = os.getcwd()
# establish the eprefix, initially set so eprefixify can
# set it on install
EPREFIX = "@GENTOO_PORTAGE_EPREFIX@"
# check and set it if it wasn't
if "GENTOO_PORTAGE_EPREFIX" in EPREFIX:
EPREFIX = ""
# Python files that need `version = ""` subbed, relative to this dir:
python_scripts = [os.path.join(cwd, path) for path in ("mirrorselect/version.py",)]
manpage = [os.path.join(cwd, path) for path in ("mirrorselect.8",)]
class set_version(core.Command):
"""Set python 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 open(f, "r", 1, "utf_8") as s:
for line in s:
newline = re.sub(pattern, '"%s"' % ver, line, 1)
if newline != line:
logging.info(f"{f}: {newline}")
updated_file.append(newline)
with open(f, "w", 1, "utf_8") as s:
s.writelines(updated_file)
quote = r'[\'"]{1}'
python_re = r"(?<=^version = )" + quote + "[^'\"]*" + quote
sub(python_scripts, python_re)
man_re = r'(?<=^.TH "mirrorselect" "8" )' + quote + "[^'\"]*" + quote
sub(manpage, man_re)
class x_sdist(sdist):
"""sdist defaulting to archive files owned by root."""
def finalize_options(self):
if self.owner is None:
self.owner = "root"
if self.group is None:
self.group = "root"
sdist.finalize_options(self)
class TestCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
suite = unittest.TestSuite()
tests = unittest.defaultTestLoader.discover("tests")
suite.addTests(tests)
result = unittest.TextTestRunner(verbosity=2).run(suite)
if result.errors or result.failures:
raise SystemExit(1)
test_data = {"mirrorselect": []}
core.setup(
name="mirrorselect",
version=__version__,
description="Tool for selecting Gentoo source and rsync mirrors",
author="",
author_email="",
maintainer="Gentoo Portage Tools Team",
maintainer_email="tools-portage@gentoo.org",
url="https://wiki.gentoo.org/wiki/Project:Portage-Tools",
download_url="http://distfiles.gentoo.org/distfiles/mirrorselect-%s.tar.gz"
% __version__,
packages=["mirrorselect"],
# package_data = test_data,
scripts=(["bin/mirrorselect"]),
data_files=(
(
os.path.join(os.sep, EPREFIX.lstrip(os.sep), "usr/share/man/man8"),
["mirrorselect.8"],
),
),
cmdclass={
"test": TestCommand,
"sdist": x_sdist,
"set_version": set_version,
},
)
|