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
|
#!/usr/bin/env python
# -*- coding: ISO-8859-1 -*-
import os
import sys
import re
import glob
from distutils.core import setup
from distutils.command.build_scripts import build_scripts
from distutils.command.install_data import install_data
from distutils.command.install import install
#
# Build the command line script
#
class BuildScripts(build_scripts):
SHELL_SCRIPT = """#!%(env_executable)s%(env_args)s%(py_executable)s
import sys
import os
package_base = r"%(package_base)s"
%(lib_path)s
%(catalogs)s
%(style_set)s
from %(package_path)s import %(package)s
%(package)s.main(base=package_base)
"""
CATALOGS = """cat = os.environ.get("SGML_CATALOG_FILES")
if cat:
cat += ":%s"
else:
cat = "%s"
os.environ["SGML_CATALOG_FILES"] = cat
"""
def run(self):
"""
Create the proper script for the current platform.
"""
if not self.scripts:
return
# The script can only work with package data
self.data_files = self.distribution.data_files
if not(self.data_files):
return
if self.dry_run:
return
# Ensure the destination directory exists
self.mkpath(self.build_dir)
# Data useful for building the script
install = self.distribution.get_command_obj("install")
if not(install.install_data):
return
self._install_lib = os.path.normpath(install.install_lib)
self._root = install.root
if self._root:
self._root = os.path.normpath(self._root)
self._package_base = os.path.join(install.install_data,
self.data_files[0][0])
self._catalogs = install.catalogs
self._style = install.style
self._use_py_path = install.use_python_path
print self._package_base
# Build the command line script
self.build_script()
def _strip_root(self, *paths):
if not(self._root):
return paths
newpaths = []
for path in paths:
if path.startswith(self._root):
newpaths.append(path[len(self._root):])
else:
newpaths.append(path)
return newpaths
def build_script(self):
script_name = self.scripts[0]
# prepare args for the bang path at the top of the script
ENV_BIN = '/usr/bin/env'
env_args = ''
if self._use_py_path:
env_exec = ''
py_exec = sys.executable
elif os.name == 'posix':
# Some Solaris platforms may not have an 'env' binary.
# If /usr/bin/env exists, use '#!/usr/bin/env python'
# otherwise, use '#!' + sys.executable
env_exec = os.path.isfile(ENV_BIN) and \
os.access(ENV_BIN, os.X_OK) and ENV_BIN or ''
py_exec = env_exec and 'python' or sys.executable
else:
# shouldn't matter on non-POSIX; we'll just use defaults
env_exec = ENV_BIN
py_exec = 'python'
# Retrieve actual installation paths
lib_path, package_base = self._strip_root(self._install_lib,
self._package_base)
# Just help for non standard installation paths
if lib_path in sys.path:
lib_path = ""
else:
lib_path = "sys.path.append(r\"%s\")" % lib_path
if self._catalogs:
catalogs = self.CATALOGS % (self._catalogs, self._catalogs)
else:
catalogs = ""
if self._style:
style_set = "sys.argv.insert(1, '-T%s')" % self._style
else:
style_set = ""
script_args = { 'env_executable': env_exec,
'env_args': env_exec and (' %s' % env_args) or '',
'py_executable': py_exec,
'lib_path': lib_path,
'style_set': style_set,
'package': "dblatex",
'package_path': "dbtexmf.dblatex",
'catalogs': catalogs,
'package_base': package_base }
script = self.SHELL_SCRIPT % script_args
script_name = os.path.basename(script_name)
outfile = os.path.join(self.build_dir, script_name)
fd = os.open(outfile, os.O_WRONLY|os.O_CREAT|os.O_TRUNC, 0755)
os.write(fd, script)
os.close(fd)
def find_programs(utils):
sys.path.append("lib")
from contrib.which import which
util_paths = {}
missed = []
for util in utils:
try:
path = which.which(util)
util_paths[util] = path
except which.WhichError:
missed.append(util)
sys.path.remove("lib")
return (util_paths, missed)
class Install(install):
user_options = install.user_options + \
[('catalogs=', None, 'default SGML catalogs'),
('nodeps', None, 'don\'t check the dependencies'),
('style=', None, 'default style to use'),
('use-python-path', None, 'don\'t use env to locate python')]
def initialize_options(self):
install.initialize_options(self)
self.catalogs = None
self.nodeps = None
self.style = None
self.use_python_path = None
def check_util_dependencies(self):
# First, check non critical graphic tools
found, missed = find_programs(("epstopdf", "convert", "fig2dev"))
for util in found:
print "+checking %s... yes" % util
for util in missed:
print "+checking %s... no" % util
if missed:
print("warning: not found: %s" % ", ".join(missed))
# Now, be serious
found, missed = find_programs(("latex", "makeindex",
"pdflatex", "kpsewhich"))
for util in found:
print "+checking %s... yes" % util
for util in missed:
print "+checking %s... no" % util
if missed:
raise OSError("not found: %s" % ", ".join(missed))
def check_xslt_dependencies(self):
sys.path.insert(0, "lib")
from dbtexmf.xslt import xslt
sys.path.remove("lib")
# At least one XSLT must be available
deplists = xslt.get_deplists()
if not(deplists):
raise OSError("no XSLT available")
# For each XSLT check the programs they depend on
xslt_found = []
xslt_missed = []
for (mod, deplist) in deplists:
if not(deplist):
xslt_found.append(mod)
print "+checking XSLT %s... yes" % mod
continue
found, missed = find_programs(deplist)
if missed:
xslt_missed.append(mod)
print "+checking XSLT %s... no (missing %s)" % \
(mod, ", ".join(missed))
else:
xslt_found.append(mod)
print "+checking XSLT %s... yes" % mod
if not(xslt_found):
raise OSError("XSLT not installed: %s" % ", ".join(xslt_missed))
elif xslt_missed:
print "warning: XSLT not found: %s" % ", ".join(xslt_missed)
def check_latex_dependencies(self):
# Find the Latex files from the package
stys = []
for root, dirs, files in os.walk('latex/'):
stys += glob.glob(os.path.join(root, "*.sty"))
if stys:
own_stys = [os.path.basename(s)[:-4] for s in stys]
else:
own_stys = []
# Find the used packages
used_stys = []
re_sty = re.compile(r"\\usepackage\s*\[?.*\]?{(\w+)}")
for sty in stys:
f = open(sty)
for line in f:
line = line.split("%")[0]
m = re_sty.search(line)
if m:
p = m.group(1)
try:
used_stys.index(p)
except:
used_stys.append(p)
f.close()
# Now look if they are found
found_stys = []
mis_stys = []
used_stys.sort()
# Dirty...
for f in ("truncate", "elfonts", "CJKutf8", "pinyin"):
try:
used_stys.remove(f)
except:
pass
for sty in used_stys:
if sty in found_stys:
continue
status = "+checking %s... " % sty
if sty in own_stys:
status += "found in package"
found_stys.append(sty)
print status
continue
ios = os.popen2("kpsewhich %s.sty" % sty)
if ios[1].readlines():
status += "yes"
found_stys.append(sty)
else:
status += "no"
mis_stys.append(sty)
print status
if mis_stys:
raise OSError("not found: %s" % ", ".join(mis_stys))
def run(self):
if not(self.nodeps):
try:
self.check_xslt_dependencies()
self.check_util_dependencies()
self.check_latex_dependencies()
except Exception, e:
print >>sys.stderr, "Error: %s" % e
sys.exit(1)
# If no build is required, at least build the script
if self.skip_build:
self.run_command('build_scripts')
install.run(self)
class InstallData(install_data):
def run(self):
# Walk through sub-dirs, specified in data_files and build the
# full data files list accordingly
full_data_files = []
for install_base, paths in self.data_files:
base_files = []
for path in paths:
if os.path.isdir(path):
for root, dirs, files in os.walk(path):
idir = os.path.join(install_base, root)
files = [os.path.join(root, i) for i in files]
if files:
full_data_files += [(idir, files)]
else:
base_files.append(path)
if base_files:
full_data_files += [(install_base, base_files)]
# Replace synthetic data_files by the full one, and do the actual job
self.data_files = full_data_files
return install_data.run(self)
def get_version():
sys.path.insert(0, "lib")
from dbtexmf.dblatex import dblatex
d = dblatex.DbLatex(base=os.getcwd())
sys.path.remove("lib")
return d.get_version()
if __name__ == "__main__":
setup(name="dblatex",
version=get_version(),
description='DocBook to LaTeX/ConTeXt Publishing',
author='Benot Guillon',
author_email='marsgui@users.sourceforge.net',
url='http://dblatex.sf.net',
packages=['dbtexmf',
'dbtexmf.core',
'dbtexmf.xslt',
'dbtexmf.dblatex',
'dbtexmf.dblatex.grubber'],
package_dir={'dbtexmf':'lib/dbtexmf'},
package_data={'dbtexmf.core':['sgmlent.txt']},
data_files=[('share/dblatex', ['xsl', 'latex']),
('share/doc/dblatex', ['docs/manual.pdf']),
('share/man/man1', ['docs/manpage/dblatex.1.gz'])],
scripts=['scripts/dblatex'],
cmdclass={'build_scripts': BuildScripts,
'install': Install,
'install_data': InstallData}
)
|