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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
|
#!/usr/bin/env python
"""
There are four relevant customizations to the standard distutils installation
process: (1) allowing separate installations of aeidon and gaupol, (2) writing
the aeidon.paths module, (3) handling translating of various files and
(4) installing extensions.
(1) Allowing separate installations of aeidon and gaupol are handled through
global options --with-aeidon, --without-aeidon, --with-gaupol and
--without-gaupol. See './setup.py --help' and the file 'README.aeidon' for
documentation and the Distribution class defined in this file for the
implementation and logic of how that is handled.
(2) Gaupol finds non-Python files based on the paths written in module
aeidon.paths. In aeidon/paths.py the paths default to the ones in the
source directory. During the 'install_lib' command the file gets rewritten
to build/aeidon/paths.py with the installation paths and that file will be
installed. The paths are based on variable 'install_data' with the 'root'
variable stripped if it is given. If doing distro-packaging, make sure this
file gets correctly written.
(3) During installation, the .po files are compiled into .mo files, the desktop
file, pattern files and extension metadata files are translated. This
requires gettext and intltool, more specifically, executables 'msgfmt' and
'intltool-merge' in $PATH.
(4) Extensions are installed under the data directory. All python code included
in the extensions are compiled during the 'install_data' command, using the
same arguments for 'byte_compile' as used by the 'install_lib' command. If
the 'install_lib' command was given '--no-compile' option, then the
extensions are not compiled either.
"""
import distutils.command.clean
import distutils.command.install
import distutils.command.install_data
import distutils.command.install_lib
import distutils.command.sdist
import glob
import os
import re
import shutil
import sys
import tarfile
import tempfile
os.chdir(os.path.dirname(__file__) or ".")
running_py2exe = "py2exe" in sys.argv
clean = distutils.command.clean.clean
distribution = distutils.dist.Distribution
install = distutils.command.install.install
install_data = distutils.command.install_data.install_data
install_lib = distutils.command.install_lib.install_lib
log = distutils.log
sdist = distutils.command.sdist.sdist
if running_py2exe:
# py2exe patches the Distribution class, so we need to import py2exe here
# and subclass the patched Distribution class ourselves.
import py2exe
distribution = py2exe.Distribution
##
## Patch distribution class with new global options.
##
global_options = (
("mandir=", None, ("relative installation directory for man pages "
"(defaults to 'share/man')")),
("with-aeidon", None, "install the aeidon package"),
("without-aeidon", None, "don't install the aeidon package"),
("with-gaupol", None, "install the gaupol package"),
("without-gaupol", None, "don't install the gaupol package"),
("with-iso-codes", None, "install iso-codes XML files"),
("without-iso-codes", None, "don't install iso-codes XML files"))
negative_opt = {"without-aeidon": "with-aeidon",
"without-gaupol": "with-gaupol",
"without-iso-codes": "with-iso-codes"}
distribution.global_options.extend(global_options)
distribution.negative_opt.update(negative_opt)
def get_aeidon_version():
"""Return version number from aeidon/__init__.py."""
text = open(os.path.join("aeidon", "__init__.py"), "r").read()
return re.search(r"__version__ *= *['\"](.*?)['\"]", text).group(1)
def get_gaupol_version():
"""Return version number from gaupol/__init__.py."""
text = open(os.path.join("gaupol", "__init__.py"), "r").read()
return re.search(r"__version__ *= *['\"](.*?)['\"]", text).group(1)
def run_command_or_exit(command):
"""Run command in shell and raise SystemExit if it fails."""
if os.system(command) != 0:
log.error("command %s failed" % repr(command))
raise SystemExit(1)
def run_command_or_warn(command):
"""Run command in shell and raise SystemExit if it fails."""
if os.system(command) != 0:
log.warn("command %s failed" % repr(command))
class Clean(clean):
"""Command to remove files and directories created."""
def run(self):
"""Remove files and directories listed in manifest/clean."""
clean.run(self)
fobj = open(os.path.join("manifest", "clean"), "r")
for targets in (glob.glob(x.strip()) for x in fobj):
for target in filter(os.path.isdir, targets):
log.info("removing '%s'" % target)
if not self.dry_run:
shutil.rmtree(target)
for target in filter(os.path.isfile, targets):
log.info("removing '%s'" % target)
if not self.dry_run:
os.remove(target)
fobj.close()
class Distribution(distribution):
"""The core controller of distutils commands."""
def __find_data_files(self, name):
"""Find data files to install for name."""
fok = lambda x: not x.endswith((".in", ".pyc"))
basename = "data-files.%s" % name
fobj = open(os.path.join("manifest", basename), "r")
for line in (x.strip() for x in fobj):
if not line: continue
if line.startswith("["):
dest = line[1:-1]
continue
files = filter(fok, glob.glob(line))
files = filter(os.path.isfile, files)
assert files
self.data_files.append((dest, files))
fobj.close()
def __find_man_pages(self):
"""Find man pages to install."""
mandir = self.mandir
while mandir.endswith("/"):
mandir = mandir[:-1]
dest = "/".join((mandir, "man1"))
self.data_files.append((dest, ("doc/gaupol.1",)))
def __find_packages(self, name):
"""Find Python packages to install for name."""
for (root, dirs, files) in os.walk(name):
init_path = os.path.join(root, "__init__.py")
if not os.path.isfile(init_path): continue
path = root.replace(os.sep, ".")
if path.endswith(".test"): continue
self.packages.append(path[path.find(name):])
def __find_scripts(self, name):
"""Find scripts to install for name."""
if name == "gaupol":
self.scripts.append("bin/gaupol")
def __init__(self, attrs=None):
"""Initialize a Distribution object."""
self.mandir = "share/man"
self.with_aeidon = True
self.with_gaupol = True
self.with_iso_codes = True
value = distribution.__init__(self, attrs)
self.data_files = []
self.packages = []
self.scripts = []
return value
def parse_command_line(self):
"""Parse commands and options given as arguments."""
value = distribution.parse_command_line(self)
# Configuration files are parsed before the command line,
# so once the command line is parsed, all options have
# their final values and thus files corresponding to
# the packages to install can finally be set.
if self.with_aeidon:
self.__find_data_files("aeidon")
self.__find_packages("aeidon")
if self.with_iso_codes:
self.__find_data_files("iso-codes")
if self.with_gaupol:
self.__find_data_files("gaupol")
self.__find_man_pages()
self.__find_packages("gaupol")
self.__find_scripts("gaupol")
# Redefine name, version and requires metadata attributes. These are
# used in the egg-info file written by distutils. While egg-info files
# appear completely useless, it needs to be ensured that if aeidon and
# gaupol are installed separately, they install differently named
# egg-info files in order to avoid overwriting files.
if self.with_gaupol:
self.metadata.name = "gaupol"
self.metadata.version = get_gaupol_version()
self.metadata.requires = ("gtk",)
else: # Without gaupol.
self.metadata.name = "aeidon"
self.metadata.version = get_aeidon_version()
self.metadata.requires = ()
return value
def parse_config_files(self, filenames=None):
"""Parse options from configuration files."""
value = distribution.parse_config_files(self, filenames)
strtobool = distutils.util.strtobool
for option in ("with_aeidon", "with_gaupol", "with_iso_codes"):
value = getattr(self, option)
if isinstance(value, basestring):
setattr(self, option, strtobool(value))
return value
class Documentation(distutils.cmd.Command):
"""Command to build documentation from source code."""
description = "build documentation from source code"
user_options = [("format=", "f",
"type of documentation to create (try 'html')")]
def initialize_options(self):
"""Initialize default values for options."""
self.format = None
def finalize_options(self):
"""Ensure that options have valid values."""
if self.format is None:
log.warn("format not specified, using 'html'")
self.format = "html"
def run(self):
"""Build documentation from source code."""
os.chdir(os.path.join("doc", "sphinx"))
if not self.dry_run:
run_command_or_exit("make clean")
run_command_or_exit("python%d.%d autogen.py aeidon gaupol"
% sys.version_info[:2])
run_command_or_exit("make %s" % self.format)
class Install(install):
"""Command to install everything."""
def run(self):
"""Install everything and update the desktop file database."""
install.run(self)
if self.distribution.with_gaupol:
get_command_obj = self.distribution.get_command_obj
root = get_command_obj("install").root
data_dir = get_command_obj("install_data").install_dir
# Assume we're actually installing if --root was not given.
if (root is not None) or (data_dir is None): return
directory = os.path.join(data_dir, "share", "applications")
log.info("updating desktop database in '%s'" % directory)
run_command_or_warn('update-desktop-database "%s"' % directory)
class InstallData(install_data):
"""Command to install data files."""
def __build_extensions(self):
"""Build all Python code files in extensions."""
get_command_obj = self.distribution.get_command_obj
if not get_command_obj("install_lib").compile: return
optimize = get_command_obj("install_lib").optimize
data_dir = get_command_obj("install_data").install_dir
data_dir = os.path.join(data_dir, "share", "gaupol")
files = glob.glob("%s/extensions/*/*.py" % data_dir)
distutils.util.byte_compile(files, optimize, self.force, self.dry_run)
def __get_desktop_file(self):
"""Return a tuple for translated desktop file."""
path = os.path.join("data", "gaupol.desktop")
if not running_py2exe:
command = "intltool-merge -d po %s.in %s" % (path, path)
run_command_or_exit(command)
return ("share/applications", (path,))
def __get_extension_file(self, extension, extension_file):
"""Return a tuple for translated extension metadata file."""
assert extension_file.endswith(".in")
path = extension_file[:-3]
if not running_py2exe:
command = "intltool-merge -d po %s.in %s" % (path, path)
run_command_or_exit(command)
return ("share/gaupol/extensions/%s" % extension, (path,))
def __get_mo_file(self, po_file):
"""Return a tuple for compiled .mo file."""
locale = os.path.basename(po_file[:-3])
mo_dir = os.path.join("locale", locale, "LC_MESSAGES")
if not os.path.isdir(mo_dir):
log.info("creating %s" % mo_dir)
os.makedirs(mo_dir)
mo_file = os.path.join(mo_dir, "gaupol.mo")
dest_dir = os.path.join("share", mo_dir)
if not running_py2exe:
log.info("compiling '%s'" % mo_file)
command = "msgfmt %s -o %s" % (po_file, mo_file)
run_command_or_exit(command)
return (dest_dir, (mo_file,))
def __get_pattern_file(self, pattern_file):
"""Return a tuple for the translated pattern file."""
assert pattern_file.endswith(".in")
path = pattern_file[:-3]
if not running_py2exe:
command = "intltool-merge -d po %s.in %s" % (path, path)
run_command_or_exit(command)
return ("share/gaupol/patterns", (path,))
def run(self):
"""Install data files after translating them."""
if self.distribution.with_aeidon:
for po_file in glob.glob("po/*.po"):
self.data_files.append(self.__get_mo_file(po_file))
for pattern_file in glob.glob("data/patterns/*.in"):
self.data_files.append(self.__get_pattern_file(pattern_file))
if self.distribution.with_gaupol:
for extension in os.listdir("data/extensions"):
pattern = "data/extensions/%s/*.gaupol-extension.in"
pattern = pattern % extension
for extension_file in glob.glob(pattern):
t = self.__get_extension_file(extension, extension_file)
self.data_files.append(t)
self.data_files.append(self.__get_desktop_file())
install_data.run(self)
if self.distribution.with_gaupol:
self.__build_extensions()
class InstallLib(install_lib):
"""Command to install library files."""
def __write_paths_module(self):
"""Write installation paths to build/aeidon/paths.py."""
get_command_obj = self.distribution.get_command_obj
root = get_command_obj("install").root
prefix = get_command_obj("install").install_data
# Allow --root to be used like $DESTDIR.
if root is not None:
prefix = os.path.abspath(prefix)
prefix = prefix.replace(os.path.abspath(root), "")
data_dir = os.path.join(prefix, "share", "gaupol")
locale_dir = os.path.join(prefix, "share", "locale")
# Write changes to the aeidon.paths module.
path = os.path.join(self.build_dir, "aeidon", "paths.py")
text = open(path, "r").read()
patt = "DATA_DIR = get_data_directory()"
repl = "DATA_DIR = %s" % repr(data_dir)
text = text.replace(patt, repl)
assert text.count(repr(data_dir)) > 0
patt = "LOCALE_DIR = get_locale_directory()"
repl = "LOCALE_DIR = %s" % repr(locale_dir)
text = text.replace(patt, repl)
assert text.count(repr(locale_dir)) > 0
open(path, "w").write(text)
def install(self):
"""Install library files after writing changes."""
if self.distribution.with_aeidon:
self.__write_paths_module()
return install_lib.install(self)
class SDistGna(sdist):
description = "create source distribution for gna.org"
def finalize_options(self):
"""Set the distribution directory to 'dist/X.Y'."""
version = get_gaupol_version()
sdist.finalize_options(self)
branch = ".".join(version.split(".")[:2])
self.dist_dir = os.path.join(self.dist_dir, branch)
def run(self):
version = get_gaupol_version()
if os.path.isfile("ChangeLog"):
os.remove("ChangeLog")
run_command_or_exit("tools/generate-change-log > ChangeLog")
assert os.path.isfile("ChangeLog")
assert open("ChangeLog", "r").read().strip()
sdist.run(self)
basename = "gaupol-%s" % version
tarballs = os.listdir(self.dist_dir)
os.chdir(self.dist_dir)
# Compare tarball contents with working copy.
temp_dir = tempfile.gettempdir()
test_dir = os.path.join(temp_dir, basename)
tobj = tarfile.open(tarballs[-1], "r")
for member in tobj.getmembers():
tobj.extract(member, temp_dir)
log.info("comparing tarball (tmp) with working copy (../..)")
os.system('diff -qr -x ".*" -x "*.pyc" ../.. %s' % test_dir)
response = raw_input("Are all files in the tarball [Y/n]? ")
if response.lower() == "n":
raise SystemExit("Must edit MANIFEST.in")
shutil.rmtree(test_dir)
# Create extra distribution files.
log.info("calculating md5sums")
run_command_or_exit("md5sum * > %s.md5sum" % basename)
log.info("creating '%s.changes'" % basename)
source = os.path.join("..", "..", "ChangeLog")
shutil.copyfile(source, "%s.changes" % basename)
log.info("creating '%s.news'" % basename)
source = os.path.join("..", "..", "NEWS")
shutil.copyfile(source, "%s.news" % basename)
for tarball in tarballs:
log.info("signing '%s'" % tarball)
run_command_or_exit("gpg --detach %s" % tarball)
os.chdir("..")
log.info("creating 'latest.txt'")
with open("latest.txt", "w") as fobj:
fobj.write("%s\n" % version)
setup_kwargs = dict(
name="gaupol",
version=get_gaupol_version(),
requires=("gtk",),
platforms=("Platform Independent",),
author="Osmo Salomaa",
author_email="otsaloma@cc.hut.fi",
url="http://home.gna.org/gaupol/",
description="Editor for text-based subtitle files",
license="GPL",
distclass=Distribution,
cmdclass={
"clean": Clean,
"doc": Documentation,
"install": Install,
"install_data": InstallData,
"install_lib": InstallLib,
"sdist_gna": SDistGna,
})
if __name__ == "__main__":
distutils.core.setup(**setup_kwargs)
|