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
|
import setuptools
import subprocess
import glob, os, re, sys, string, platform
#
# REGEX for matching -I includes with or without quotes.
#
INCLUDE_REGEX = r"-I[\"']?([^\"']+)[\"']?"
# these settings will read setup information from the environment.
# instead of this, the relevant paths can be set directly here:
#
fltk_dir = ""
opengl_dir = ""
# this will be overrridden by environment variables:
fltk_dir = os.environ.get('FLTK_HOME', '')
opengl_dir = os.environ.get('OPENGL_HOME', '')
#if environment vars are not set use fltk-config for all platforms but Windows
if fltk_dir=="":
if sys.platform != 'win32':
try:
fltk_dir=subprocess.check_output(['fltk-config','--prefix']).decode()[:-1]
print(f'fltk dir found at {fltk_dir}')
except:
print('Error: fltk-config not found. Please install FLTK 1.4.x development files first and make sure fltk-config is in your PATH.')
sys.exit()
ver=subprocess.check_output(['fltk-config','--version']).decode()[:-1]
if ver[:3] != '1.4':
print(f'Error: FLTK development version {ver} found. Building pyFltk 1.4.x requires FLTK 1.4.x development files to be installed. Please uninstall previous FLTK development versions.')
sys.exit()
# Use this to pass additional compile flags, like macOS -mmacosx-version-min=OS_VERSION
cxx_flags = os.environ.get('CXX_FLAGS', '')
print("pyFLTK CXX_FLAGS=",cxx_flags)
# add your .cpp extensions in the plug-in/src directory.
UserDefinedSources = glob.glob('./plug-in/src/*.cpp') + \
glob.glob('./plug-in/src/*.cxx')
# add additional include paths in the plug-in/include directory.
UserIncludeDirs = ['./plug-in/include', './plug-in/src']
# do not edit beyond this point
###########################################################################
# command line configurations
# --enable-shared (for Windows distributions that ship a single DLL)
# --debug (for Windows distributions that change DLL name)
# --disable-gl
# --disable-forms
##########################################################################
doCheckForms = True
doCheckGl = True
isVerbose = True
doMulti = False
doOpenGL = False
doForms = False
doShared = False
# debug flag
doDebug = False
new_args = []
for item in sys.argv:
if item == '--disable-gl':
doCheckGl = False
if isVerbose:
print("No OpenGL support!")
elif item == '--disable-forms':
doCheckForms = False
if isVerbose:
print("No Forms support")
elif item == '--debug':
doDebug = True
if isVerbose:
print("Detected DEBUG build!")
elif item == '--enable-shared':
doShared = True
else:
new_args.append(item)
sys.argv = new_args
###########################################################################
#
# create proper paths
fltk_lib_dir = os.path.join(fltk_dir, 'lib')
fltk_includes = []
compile_arg_list = []
link_arg_list = []
# whatever is platform dependent
if sys.platform == 'win32':
print("Building for MS Windows, using Visual C++")
opengl_lib_dir = os.path.join(opengl_dir, 'lib')
def_list = [('WIN32', '1'),('FL_INTERNALS','1')]
compile_arg_list=['/GR', '/wd4101']
lib_dir_list = [fltk_lib_dir, opengl_lib_dir]
win32_lib_list = ["kernel32", "user32", "gdi32", "winspool", "comdlg32", "Comctl32", "advapi32", "shell32", "ole32", "oleaut32", "uuid", "odbc32", "odbccp32", "wsock32", "gdiplus", "glu32", "opengl32"]
if doDebug:
static_lib_list = ["fltkd", "fltk_imagesd", "fltk_jpegd", "fltk_pngd", "fltk_zd", "fltk_formsd", "fltk_gld"]
shared_lib_list = ["fltk_dlld"]
else:
static_lib_list = ["fltk", "fltk_images", "fltk_jpeg", "fltk_png", "fltk_z", "fltk_forms", "fltk_gl"]
shared_lib_list = ["fltk_dll"]
static_lib_list += win32_lib_list
shared_lib_list += win32_lib_list
if doShared:
def_list = def_list + [('FL_DLL', 1)]
lib_list = shared_lib_list
else:
lib_list = static_lib_list
elif sys.platform.startswith('linux') or sys.platform.startswith('gnukfreebsd') or sys.platform.startswith('gnu0'):
print("Building for Linux")
def_list = [('UNIX', '1'),('FL_INTERNALS','1')]
compile_arg_list.append('-Wno-unused-label')
compile_arg_list.append('-Wno-unused-but-set-variable')
compile_arg_list.append('-Wformat=1')
compile_arg_list.append('-Werror=format-security')
lib_dir_list = [fltk_lib_dir, '/usr/lib']
lib_list = ["fltk"]
elif sys.platform in ['freebsd4','freebsd5','freebsd6','freebsd7', 'sunos5']:
print(f"Building for: {sys.platform}")
def_list = [('UNIX', '1'),('FL_INTERNALS','1')]
lib_dir_list = [fltk_lib_dir,'/usr/X11R6/lib','/usr/lib']
lib_list = ["fltk"]
elif sys.platform == 'darwin':
print("Building for Mac OS X")
def_list = [('UNIX', '1'),('FL_INTERNALS','1')]
lib_dir_list = [fltk_lib_dir]
lib_list = ["fltk"]
cpu_type = platform.processor()
if cpu_type.startswith("i386"):
print("i386 CPU variant detected")
lib_dir_list.append('/usr/local/lib')
osx_arch = "x86_64"
elif cpu_type.startswith("arm"):
print("arm CPU variant detected")
lib_dir_list.append('/opt/homebrew/lib')
osx_arch = "arm64"
else:
print("PowerPC system detected")
osx_arch = "ppc"
compile_arg_list=['-arch', osx_arch]
link_arg_list=['-stdlib=libc++', '-arch', osx_arch, '-framework','ApplicationServices','-framework','Carbon','-framework', 'Cocoa', '-framework','OpenGL','-framework','AGL','-rpath', fltk_lib_dir]
else:
print("Platform not officially supported!")
print("You can try to edit the platform specific settings in the file setup.py by creating an entry for the following platform: ", sys.platform)
sys.exit(0)
###########################################################################
# test for fltk configuration (libraries)
def fltk_config(fltk_dir):
global doMulti
"return library paths and additional libraries that were used to link FLTK"
needed_libraries = []
needed_directories = []
needed_includes = []
ver_cmd = None
inc_cmd = None
lib_cmd = None
# always use images
var_string = " --use-images"
if doCheckGl:
var_string = var_string + " --use-gl --use-glut"
if doCheckForms:
var_string = var_string + " --use-forms"
try:
#if isVerbose:
# print("Checking fltk-config using FLTK_HOME")
#fltk_dir = os.environ['FLTK_HOME']
if isVerbose:
print(f"FLTK_HOME={fltk_dir}")
ver_cmd = f"sh {fltk_dir}/bin/fltk-config --version"
inc_cmd = f"sh {fltk_dir}/bin/fltk-config --cxxflags {var_string}"
#lib_cmd = f"sh {fltk_dir}/bin/fltk-config --use-gl --use-glut --use-images --use-forms --ldflags"
lib_cmd = f"sh {fltk_dir}/bin/fltk-config --ldflags {var_string}"
except:
if isVerbose:
print("Checking fltk-config using default installation")
ver_cmd = "fltk-config --version"
inc_cmd = f"fltk-config --cxxflags {var_string}"
lib_cmd = f"fltk-config --ldflags {var_string}"
# version
result = os.popen(ver_cmd).readlines()
if len(result) == 0:
print("No version information for FLTK found!")
else:
print("Using FLTK: ", result)
# include flags
result = os.popen(inc_cmd).readlines()
if len(result) == 0:
print("No compile flags found!")
else:
inc_list = map(lambda x: x.strip(), result[0].split(' '))
# inc_list = [x.strip() for x in result[0].split(' ')]
for inc in inc_list:
m = re.search(INCLUDE_REGEX, inc)
if m:
needed_includes.append(m.group(1))
if inc.find("_REENTRANT") >= 0:
doMulti = True
print("fltk-config includes: ", needed_includes)
# lib flags
result = os.popen(lib_cmd).readlines()
if len(result) == 0:
print("No link flags found!")
else:
lib_list = map(lambda x: x.strip(), result[0].split(' '))
# lib_list = [x.strip() for x in result[0].split(' ')]
for lib in lib_list:
if lib[:2] == '-l':
needed_libraries.append(lib[2:])
if lib[:2] == '-L':
library = lib[2:]
if lib[2] == "'":
library = lib[3:-1]
needed_directories.append(library)
print("fltk-config link paths: ", needed_directories)
print("fltk-config link libraries: ", needed_libraries)
return (needed_libraries, needed_directories, needed_includes)
###########################################################################
all_include_dirs = ['./src', './contrib','/usr/include']
if fltk_dir != "":
#if (sys.platform == 'win32'):
# all_include_dirs.insert(0, fltk_dir+"/include")
#else:
# all_include_dirs.insert(0, fltk_dir)
all_include_dirs.insert(0, os.path.join(fltk_dir,'include'))
print(all_include_dirs)
###########################################################################
if not (sys.platform == 'win32'):
print("Checking FLTK configuration ... ")
additional_libs, additional_dirs, additional_includes = fltk_config(fltk_dir)
for item in additional_includes:
# already included?
add = True
for used_inc in all_include_dirs:
if item == used_inc:
add = False
break
if add:
all_include_dirs.insert(0, item)
# check also for multi-threading
pos = 0
for item in additional_libs:
lowercase_item = item.lower()
if lowercase_item.find("pthread") >= 0:
doMulti = True
if lowercase_item.find("fltk") >= 0 and lowercase_item.find("gl") >= 0:
doOpenGL = True
if lowercase_item.find("fltk") >= 0 and lowercase_item.find("forms") >= 0:
doForms = True
# simply add all the libraries to the front of the used libraries
lib_list = additional_libs+lib_list
if not doMulti:
# disable multi-threading support
print("FLTK was configured without multi-threading support!")
compile_arg_list.append("-DDO_NOT_USE_THREADS")
else:
print("FLTK was configured with multi-threading support!")
# On Mac OSX, openGL is always used for FLTK
if sys.platform == 'darwin':
doOpenGL = True
if not doOpenGL:
# disable OpenGL support
print("FLTK was configured without OpenGL support!")
UserDefinedSources.append('./src/Fl_Gl_Stubs.cxx')
compile_arg_list.append("-DDO_NOT_USE_OPENGL")
else:
print("FLTK was configured with OpenGL support!")
if not doForms:
# disable Forms support
print("FLTK was configured without Forms support!")
UserDefinedSources.append('./src/Fl_Forms_Stubs.cxx')
else:
print("FLTK was configured with Forms support!")
# add all the library paths
lib_dir_list = additional_dirs+lib_dir_list
###########################################################################
class PySwigCommand(setuptools.Command):
"""A custom command to run swig on the interface files."""
description = 'run swig on the interface files'
user_options = [
# The format is (long option, short option, description).
#('pylint-rcfile=', None, 'path to Pylint config file'),
]
include = []
def initialize_options(self):
"""Set default values for options."""
# Each user option must be listed here with their default value.
self.pylint_rcfile = ''
def finalize_options(self):
"""Post-process options."""
add_incl = []
try:
fltk_dir = os.environ['FLTK_HOME']
#if (sys.platform == 'win32'):
# add_incl.insert(0, f"-I{fltk_dir}/include")
#else:
# add_incl.insert(0, f"-I{fltk_dir}")
add_incl.insert(0, f"-I{fltk_dir}/include")
except:
print("Using default location for FLTK!")
result = os.popen('fltk-config --cxxflags').readlines()
#print(result)
if len(result) > 0:
p_inc = map(lambda x: x.strip(), result[0].split(' '))
for item in p_inc:
m = re.search(INCLUDE_REGEX, item)
if m:
add_incl.append('-I' + m.group(1))
else:
print("FLTK not found!")
add_incl.append('-I/usr/include')
self.include = add_incl
def run(self):
"""Run command."""
command = ['swig', '-D{0}'.format(sys.platform.upper()), '-DFL_INTERNALS', '-w302', '-w312', '-w325', '-w362', '-w389', '-w401', '-w473', '-w509', '-I./swig', '-DPYTHON', '-DPYTHON3', '-c++', '-python', '-shadow', '-fastdispatch', '-outdir', 'fltk', '-o', 'fltk/fltk_wrap.cpp', './swig/fltk.i']
pos = command.index('-I./swig')
if sys.platform.upper() == 'DARWIN':
command[pos:pos] = ["-D__APPLE__"]
pos += 2
else:
pos +=1
command[pos:pos] = self.include
self.announce(
'Running command: %s' % str(command),
level=3
)
#subprocess.check_call(command, cwd='python')
subprocess.check_call(command)
if cxx_flags != '':
compile_arg_list.append(cxx_flags)
# module declarations
contrib_sources = []
module1 = setuptools.Extension(name='fltk._fltk',
define_macros=def_list,
include_dirs = all_include_dirs+UserIncludeDirs,
sources = ['./fltk/fltk_wrap.cpp',
'./contrib/ListSelect.cpp']+UserDefinedSources,
extra_compile_args=compile_arg_list,
extra_link_args=link_arg_list,
library_dirs=lib_dir_list,
libraries=lib_list)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup (cmdclass={
'swig': PySwigCommand,
},
name = 'pyfltk',
version = '1.4.4.0',
#setup_requires=['wheel'],
ext_modules = [module1],
packages = ['fltk'],
# metadata to display on PyPI
author = 'Andreas Held',
author_email = 'andreasheld@users.sourceforge.net',
url = 'http://pyfltk.sourceforge.net',
description = 'This is a Python wrapper for the FLTK',
long_description=long_description,
long_description_content_type="text/markdown",
keywords="python fltk",
project_urls={
"Bug Tracker": "https://sourceforge.net/p/pyfltk/bugs/",
"Documentation": "https://fltk.gitlab.io/fltk/",
"Source Code": "https://sourceforge.net/p/pyfltk/code/HEAD/tree/branches/fltk1.4/",
},
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)"
]
)
|