ef1978abee
Upgrade to the latest master from git://git.kernel.org/pub/scm/utils/dtc/dtc.git. at commited310803ea
. Bug: 221191119 Bug: 222320399 Bug: 230794395 Bug: 234413190 Change-Id: I6cc623e217641d7db3d4f2c4873cda472da08ef4 (cherry picked from commit9c26cc838f
) Merged-In: I6cc623e217641d7db3d4f2c4873cda472da08ef4
77 lines
2.1 KiB
Python
Executable file
77 lines
2.1 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
# SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause)
|
|
|
|
# While Python 3 is the default, it's also possible to invoke
|
|
# this setup.py script with Python 2.
|
|
|
|
"""
|
|
setup.py file for SWIG libfdt
|
|
Copyright (C) 2017 Google, Inc.
|
|
Written by Simon Glass <sjg@chromium.org>
|
|
"""
|
|
|
|
from setuptools import setup, Extension
|
|
from setuptools.command.build_py import build_py as _build_py
|
|
|
|
import os
|
|
import re
|
|
import sys
|
|
|
|
srcdir = os.path.dirname(__file__)
|
|
|
|
with open(os.path.join(srcdir, "README"), "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
def get_top_builddir():
|
|
if '--top-builddir' in sys.argv:
|
|
index = sys.argv.index('--top-builddir')
|
|
sys.argv.pop(index)
|
|
return sys.argv.pop(index)
|
|
else:
|
|
return srcdir
|
|
|
|
top_builddir = get_top_builddir()
|
|
|
|
libfdt_module = Extension(
|
|
'_libfdt',
|
|
sources=[os.path.join(srcdir, 'pylibfdt/libfdt.i')],
|
|
define_macros=[('PY_SSIZE_T_CLEAN', None)],
|
|
include_dirs=[os.path.join(srcdir, 'libfdt')],
|
|
libraries=['fdt'],
|
|
library_dirs=[os.path.join(top_builddir, 'libfdt')],
|
|
swig_opts=['-I' + os.path.join(srcdir, 'libfdt')],
|
|
)
|
|
|
|
class build_py(_build_py):
|
|
def run(self):
|
|
self.run_command("build_ext")
|
|
return super().run()
|
|
|
|
setup(
|
|
name='libfdt',
|
|
use_scm_version={
|
|
"root": srcdir,
|
|
},
|
|
cmdclass = {'build_py' : build_py},
|
|
setup_requires = ['setuptools_scm'],
|
|
author='Simon Glass',
|
|
author_email='sjg@chromium.org',
|
|
description='Python binding for libfdt',
|
|
ext_modules=[libfdt_module],
|
|
package_dir={'': os.path.join(srcdir, 'pylibfdt')},
|
|
py_modules=['libfdt'],
|
|
|
|
long_description=long_description,
|
|
long_description_content_type="text/plain",
|
|
url="https://git.kernel.org/pub/scm/utils/dtc/dtc.git",
|
|
license="BSD",
|
|
license_files=["GPL", "BSD-2-Clause"],
|
|
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: BSD License",
|
|
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
|
|
)
|