mirror of
https://github.com/dgibson/dtc.git
synced 2025-10-14 00:37:41 -04:00
The DTC version in version_gen.h causes a warning with setuptools: setuptools/dist.py:501: UserWarning: The version specified ('1.6.1-g5454474d') \ is an invalid version, this may not work as expected with newer versions of \ setuptools, pip, and PyPI. Please see PEP 440 for more details. It also creates an unnecessary dependency on the rest of the build system(s). Switch to use setuptools_scm instead to get the version for pylibfdt. Signed-off-by: Rob Herring <robh@kernel.org> Message-Id: <20211111011135.2386773-3-robh@kernel.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
49 lines
1.3 KiB
Python
Executable file
49 lines
1.3 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
|
|
import os
|
|
import re
|
|
import sys
|
|
|
|
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 os.getcwd()
|
|
|
|
srcdir = os.path.dirname(os.path.abspath(sys.argv[0]))
|
|
top_builddir = get_top_builddir()
|
|
|
|
libfdt_module = Extension(
|
|
'_libfdt',
|
|
sources=[os.path.join(srcdir, 'libfdt.i')],
|
|
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')],
|
|
)
|
|
|
|
setup(
|
|
name='libfdt',
|
|
use_scm_version={
|
|
"root": os.path.join(srcdir, '..'),
|
|
},
|
|
setup_requires = ['setuptools_scm'],
|
|
author='Simon Glass <sjg@chromium.org>',
|
|
description='Python binding for libfdt',
|
|
ext_modules=[libfdt_module],
|
|
package_dir={'': srcdir},
|
|
py_modules=['libfdt'],
|
|
)
|