mapnik/scons/scons.py

103 lines
3.3 KiB
Python
Raw Permalink Normal View History

#! /usr/bin/env python
2011-10-04 20:36:00 +02:00
#
# SCons - a Software Constructor
#
2020-11-19 11:14:48 +01:00
# Copyright (c) 2001 - 2020 The SCons Foundation
2011-10-04 20:36:00 +02:00
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2020-11-19 11:14:48 +01:00
__revision__ = "scripts/scons.py c289977f8b34786ab6c334311e232886da7e8df1 2020-07-17 01:50:03 bdbaddog"
2011-10-04 20:36:00 +02:00
2020-11-19 11:14:48 +01:00
__version__ = "4.0.1"
2011-10-04 20:36:00 +02:00
2020-11-19 11:14:48 +01:00
__build__ = "c289977f8b34786ab6c334311e232886da7e8df1"
2011-10-04 20:36:00 +02:00
2020-11-19 11:14:48 +01:00
__buildsys__ = "ProDog2020"
2011-10-04 20:36:00 +02:00
2020-11-19 11:14:48 +01:00
__date__ = "2020-07-17 01:50:03"
2011-10-04 20:36:00 +02:00
2015-08-12 11:18:09 +02:00
__developer__ = "bdbaddog"
2011-10-04 20:36:00 +02:00
2020-11-19 11:14:48 +01:00
2011-10-04 20:36:00 +02:00
import os
import sys
2014-10-21 07:18:07 +02:00
2020-11-19 11:14:48 +01:00
# Python compatibility check
if sys.version_info < (3, 5, 0):
2013-05-22 05:51:17 +02:00
msg = "scons: *** SCons version %s does not run under Python version %s.\n\
2020-11-19 11:14:48 +01:00
Python >= 3.5 is required.\n"
2013-05-22 05:51:17 +02:00
sys.stderr.write(msg % (__version__, sys.version.split()[0]))
sys.exit(1)
2020-11-19 11:14:48 +01:00
# Strip the script directory from sys.path so on case-insensitive
# (WIN32) systems Python doesn't think that the "scons" script is the
# "SCons" package.
2017-11-16 11:59:55 +01:00
script_dir = os.path.dirname(os.path.realpath(__file__))
2020-11-19 11:14:48 +01:00
script_path = os.path.realpath(os.path.dirname(__file__))
if script_path in sys.path:
sys.path.remove(script_path)
2011-10-04 20:36:00 +02:00
libs = []
if "SCONS_LIB_DIR" in os.environ:
libs.append(os.environ["SCONS_LIB_DIR"])
2020-11-19 11:14:48 +01:00
# running from source takes 2nd priority (since 2.3.2), following SCONS_LIB_DIR
source_path = os.path.join(script_path, os.pardir)
if os.path.isdir(source_path):
libs.append(source_path)
2014-10-21 07:18:07 +02:00
2020-11-19 11:14:48 +01:00
# add local-install locations
2011-10-04 20:36:00 +02:00
local_version = 'scons-local-' + __version__
local = 'scons-local'
if script_dir:
local_version = os.path.join(script_dir, local_version)
local = os.path.join(script_dir, local)
2020-11-19 11:14:48 +01:00
if os.path.isdir(local_version):
libs.append(os.path.abspath(local_version))
if os.path.isdir(local):
libs.append(os.path.abspath(local))
2011-10-04 20:36:00 +02:00
sys.path = libs + sys.path
##############################################################################
# END STANDARD SCons SCRIPT HEADER
##############################################################################
if __name__ == "__main__":
2013-05-22 05:51:17 +02:00
try:
import SCons.Script
2016-08-05 11:16:06 +02:00
except ImportError:
2020-11-19 11:14:48 +01:00
sys.stderr.write("SCons import failed. Unable to find engine files in:\n")
2014-10-21 07:18:07 +02:00
for path in libs:
2020-11-19 11:14:48 +01:00
sys.stderr.write(" {}\n".format(path))
2014-10-21 07:18:07 +02:00
raise
2011-10-04 20:36:00 +02:00
# this does all the work, and calls sys.exit
# with the proper exit status when done.
SCons.Script.main()
# Local Variables:
# tab-width:4
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=4 shiftwidth=4: