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
|
#!/usr/bin/env python
# -*- coding: ascii -*-
u"""
:Copyright:
Copyright 2011 - 2019
Andr\xe9 Malo or his licensors, as applicable
:License:
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
===========================================
rJSmin - A Javascript Minifier For Python
===========================================
rJSmin - A Javascript Minifier For Python.
"""
from __future__ import print_function
__author__ = u"Andr\xe9 Malo"
__docformat__ = "restructuredtext en"
import os as _os
import posixpath as _posixpath
import sys as _sys
# pylint: disable = no-name-in-module, import-error
from distutils import core as _core
import setuptools as _setuptools
# pylint: disable = invalid-name
def _doc(filename):
""" Read docs file """
args = {} if str is bytes else dict(encoding='utf-8')
try:
with open(_os.path.join('docs', filename), **args) as fp:
return fp.read()
except IOError:
return None
def _lines(multiline):
""" Split multiline string into single line % empty and comments """
return [line for line in (
line.strip() for line in multiline.splitlines(False)
) if line and not line.startswith('#')]
package = dict(
name='rjsmin',
top='.',
pathname='.',
provides=_doc('PROVIDES'),
desc=_doc('SUMMARY').strip(),
longdesc=_doc('DESCRIPTION'),
author=__author__,
email='nd@perlig.de',
license="Apache License, Version 2.0",
keywords=_lines(_doc('KEYWORDS')),
url='http://opensource.perlig.de/rjsmin/',
classifiers=_lines(_doc('CLASSIFIERS') or ''),
packages=False,
py_modules=['rjsmin'],
version_file='rjsmin.py',
install_requires=[],
)
class BuildFailed(Exception):
""" The build has failed """
from distutils.command import build_ext as _build_ext # pylint: disable = wrong-import-order
from distutils import errors as _errors # pylint: disable = wrong-import-order
class build_ext(_build_ext.build_ext): # pylint: disable = no-init
""" Improved extension building code """
def run(self):
""" Unify exception """
try:
_build_ext.build_ext.run(self)
except _errors.DistutilsPlatformError:
raise BuildFailed()
def build_extension(self, ext):
"""
Build C extension - with extended functionality
The following features are added here:
- The macros ``EXT_PACKAGE`` and ``EXT_MODULE`` will be filled (or
unset) depending on the extensions name, but only if they are not
already defined.
- "." is added to the include directories (for cext.h)
:Parameters:
`ext` : `Extension`
The extension to build
:Return: whatever ``distutils.command.build_ext.build_ext`` returns
:Rtype: any
"""
# handle name macros
macros = dict(ext.define_macros or ())
tup = ext.name.split('.')
if len(tup) == 1:
pkg, mod = None, tup[0]
else:
pkg, mod = '.'.join(tup[:-1]), tup[-1]
if pkg is not None and 'EXT_PACKAGE' not in macros:
ext.define_macros.append(('EXT_PACKAGE', pkg))
if 'EXT_MODULE' not in macros:
ext.define_macros.append(('EXT_MODULE', mod))
if pkg is None:
macros = dict(ext.undef_macros or ())
if 'EXT_PACKAGE' not in macros:
ext.undef_macros.append('EXT_PACKAGE')
try:
return _build_ext.build_ext.build_extension(self, ext)
except (_errors.CCompilerError, _errors.DistutilsExecError,
_errors.DistutilsPlatformError, IOError, ValueError):
raise BuildFailed()
class Extension(_core.Extension):
""" improved functionality """
def __init__(self, *args, **kwargs):
""" Initialization """
version = kwargs.pop('version')
self.depends = []
if 'depends' in kwargs:
self.depends = kwargs['depends']
_core.Extension.__init__(self, *args, **kwargs)
self.define_macros.append(('EXT_VERSION', version))
# add include path
included = '.'
if included not in self.include_dirs:
self.include_dirs.append(included)
# add cext.h to the dependencies
cext_h = _posixpath.normpath(_posixpath.join(included, 'cext.h'))
for item in self.depends:
if _posixpath.normpath(item) == cext_h:
break
else:
self.depends.append(cext_h)
EXTENSIONS = lambda v: [Extension('_rjsmin', ["rjsmin.c"], version=v)]
def do_setup(cext):
""" Main """
# pylint: disable = too-many-branches
version_file = '%s/%s' % (package['pathname'],
package.get('version_file', '__init__.py'))
with open(version_file) as fp:
for line in fp: # pylint: disable = redefined-outer-name
if line.startswith('__version__'):
version = line.split('=', 1)[1].strip()
if version.startswith(("'", '"')):
version = version[1:-1].strip()
break
else:
raise RuntimeError("Version not found")
kwargs = {}
if not cext or 'java' in _sys.platform.lower():
extensions = []
else:
extensions = EXTENSIONS(version)
if extensions:
if 'build_ext' in globals():
kwargs.setdefault('cmdclass', {})['build_ext'] = build_ext
kwargs['ext_modules'] = extensions
gcov = False
if _os.environ.get('CFLAGS') is None:
from distutils import ccompiler as _ccompiler
from distutils import log as _log
compiler = _ccompiler.get_default_compiler()
try:
with open("debug.%s.cflags" % compiler) as fp:
cflags = ' '.join([
line for line in (line.strip() for line in fp)
if line and not line.startswith('#')
]) or None
except IOError:
pass
else:
if cflags is not None:
# pylint: disable = unsupported-membership-test
if 'coverage' in cflags:
gcov = True
_log.info("Setting CFLAGS to %r", cflags)
_os.environ['CFLAGS'] = cflags
if gcov:
for ext in extensions:
ext.libraries.append('gcov')
if package.get('packages', True):
kwargs['packages'] = [package['top']] + [
'%s.%s' % (package['top'], item)
for item in
_setuptools.find_packages(package['pathname'])
]
if package.get('py_modules'):
kwargs['py_modules'] = package['py_modules']
_core.setup(
name=package['name'],
author=package['author'],
author_email=package['email'],
license=package['license'],
classifiers=package['classifiers'],
description=package['desc'],
long_description=package['longdesc'],
url=package['url'],
install_requires=package['install_requires'],
version=version,
zip_safe=False,
**kwargs
)
def setup():
""" Run setup """
try:
do_setup(True)
except BuildFailed:
if _os.environ.get('SETUP_CEXT_REQUIRED', '') not in ('', '0'):
raise
print("C extension build failed - building python only version now. "
"Set 'RJSMIN_CEXT_REQUIRED' environment variable to '1' to "
"make it fail.", file=_sys.stderr)
do_setup(False)
if __name__ == '__main__':
setup()
|