b111122ea5
The default Python version for pylibfdt is already Python 3 but if called without specifiying an interpreter, the setup.py script gets called with Python 2. It's of course still possible to call setup.py with python2 directly. Signed-off-by: Luca Weiss <luca@z3ntu.xyz> Message-Id: <20190907152530.25102-1-luca@z3ntu.xyz> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
48 lines
1 KiB
Python
Executable file
48 lines
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 distutils.core import setup, Extension
|
|
import os
|
|
import re
|
|
import sys
|
|
|
|
|
|
VERSION_PATTERN = '^#define DTC_VERSION "DTC ([^"]*)"$'
|
|
|
|
|
|
def get_version():
|
|
version_file = "../version_gen.h"
|
|
f = open(version_file, 'rt')
|
|
m = re.match(VERSION_PATTERN, f.readline())
|
|
return m.group(1)
|
|
|
|
|
|
setupdir = os.path.dirname(os.path.abspath(sys.argv[0]))
|
|
os.chdir(setupdir)
|
|
|
|
libfdt_module = Extension(
|
|
'_libfdt',
|
|
sources=['libfdt.i'],
|
|
include_dirs=['../libfdt'],
|
|
libraries=['fdt'],
|
|
library_dirs=['../libfdt'],
|
|
swig_opts=['-I../libfdt'],
|
|
)
|
|
|
|
setup(
|
|
name='libfdt',
|
|
version=get_version(),
|
|
author='Simon Glass <sjg@chromium.org>',
|
|
description='Python binding for libfdt',
|
|
ext_modules=[libfdt_module],
|
|
py_modules=['libfdt'],
|
|
)
|