2016-08-24 15:10:21 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import argparse
|
2018-07-23 15:11:03 +00:00
|
|
|
import contextlib
|
2016-11-19 21:01:44 +00:00
|
|
|
import json
|
2016-09-05 14:54:46 +00:00
|
|
|
import os
|
2016-11-19 21:01:44 +00:00
|
|
|
import platform
|
2016-09-05 14:54:46 +00:00
|
|
|
import re
|
|
|
|
import site
|
2016-11-02 18:40:54 +00:00
|
|
|
import shutil
|
2016-08-24 15:10:21 +00:00
|
|
|
import subprocess
|
2016-11-19 13:18:33 +00:00
|
|
|
import sys
|
2016-11-02 18:40:54 +00:00
|
|
|
import tempfile
|
2018-10-27 15:59:29 +00:00
|
|
|
import pathlib
|
2019-12-18 20:44:30 +00:00
|
|
|
import signal
|
2016-08-24 15:10:21 +00:00
|
|
|
|
2018-01-19 20:04:09 +00:00
|
|
|
from distutils.sysconfig import get_python_lib
|
2019-03-08 16:38:43 +00:00
|
|
|
from distutils.util import strtobool
|
2018-01-19 20:04:09 +00:00
|
|
|
|
2018-11-12 23:23:14 +00:00
|
|
|
from scripts.common import get_meson
|
|
|
|
from scripts.common import git
|
|
|
|
from scripts.common import win32_get_short_path_name
|
2019-08-03 02:22:16 +00:00
|
|
|
from scripts.common import get_wine_shortpath
|
2016-08-24 15:10:21 +00:00
|
|
|
|
2017-09-15 12:24:54 +00:00
|
|
|
SCRIPTDIR = os.path.dirname(os.path.realpath(__file__))
|
2017-08-21 14:57:29 +00:00
|
|
|
PREFIX_DIR = os.path.join(SCRIPTDIR, 'prefix')
|
2018-05-05 15:05:12 +00:00
|
|
|
# Use '_build' as the builddir instead of 'build'
|
|
|
|
DEFAULT_BUILDDIR = os.path.join(SCRIPTDIR, 'build')
|
|
|
|
if not os.path.exists(DEFAULT_BUILDDIR):
|
|
|
|
DEFAULT_BUILDDIR = os.path.join(SCRIPTDIR, '_build')
|
2016-08-24 15:10:21 +00:00
|
|
|
|
2019-09-19 10:45:03 +00:00
|
|
|
TYPELIB_REG = re.compile(r'.*\.typelib$')
|
|
|
|
SHAREDLIB_REG = re.compile(r'\.so|\.dylib|\.dll')
|
|
|
|
|
2019-11-02 15:27:16 +00:00
|
|
|
# libdir is expanded from option of the same name listed in the `meson
|
|
|
|
# introspect --buildoptions` output.
|
|
|
|
GSTPLUGIN_FILEPATH_REG_TEMPLATE = r'.*/{libdir}/gstreamer-1.0/[^/]+$'
|
|
|
|
GSTPLUGIN_FILEPATH_REG = None
|
2016-08-24 15:10:21 +00:00
|
|
|
|
2019-02-14 08:31:52 +00:00
|
|
|
def listify(o):
|
|
|
|
if isinstance(o, str):
|
|
|
|
return [o]
|
|
|
|
if isinstance(o, list):
|
|
|
|
return o
|
|
|
|
raise AssertionError('Object {!r} must be a string or a list'.format(o))
|
|
|
|
|
|
|
|
def stringify(o):
|
|
|
|
if isinstance(o, str):
|
|
|
|
return o
|
|
|
|
if isinstance(o, list):
|
|
|
|
if len(o) == 1:
|
|
|
|
return o[0]
|
|
|
|
raise AssertionError('Did not expect object {!r} to have more than one element'.format(o))
|
|
|
|
raise AssertionError('Object {!r} must be a string or a list'.format(o))
|
|
|
|
|
2019-06-05 01:04:45 +00:00
|
|
|
def prepend_env_var(env, var, value, sysroot):
|
|
|
|
if value.startswith(sysroot):
|
|
|
|
value = value[len(sysroot):]
|
2019-04-15 10:04:44 +00:00
|
|
|
# Try not to exceed maximum length limits for env vars on Windows
|
2019-11-11 11:41:23 +00:00
|
|
|
if os.name == 'nt':
|
2019-04-15 10:04:44 +00:00
|
|
|
value = win32_get_short_path_name(value)
|
2019-04-15 10:02:36 +00:00
|
|
|
env_val = env.get(var, '')
|
|
|
|
val = os.pathsep + value + os.pathsep
|
|
|
|
# Don't add the same value twice
|
|
|
|
if val in env_val or env_val.startswith(value + os.pathsep):
|
|
|
|
return
|
|
|
|
env[var] = val + env_val
|
2016-08-24 15:10:21 +00:00
|
|
|
env[var] = env[var].replace(os.pathsep + os.pathsep, os.pathsep).strip(os.pathsep)
|
|
|
|
|
2019-09-19 10:45:03 +00:00
|
|
|
def is_library_target_and_not_plugin(target, filename):
|
|
|
|
'''
|
|
|
|
Don't add plugins to PATH/LD_LIBRARY_PATH because:
|
|
|
|
1. We don't need to
|
|
|
|
2. It causes us to exceed the PATH length limit on Windows and Wine
|
|
|
|
'''
|
|
|
|
if not target['type'].startswith('shared'):
|
|
|
|
return False
|
|
|
|
if not target['installed']:
|
|
|
|
return False
|
|
|
|
# Check if this output of that target is a shared library
|
|
|
|
if not SHAREDLIB_REG.search(filename):
|
|
|
|
return False
|
|
|
|
# Check if it's installed to the gstreamer plugin location
|
2019-11-02 15:23:45 +00:00
|
|
|
for install_filename in listify(target['install_filename']):
|
2019-09-19 10:45:03 +00:00
|
|
|
if install_filename.endswith(os.path.basename(filename)):
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
# None of the installed files in the target correspond to the built
|
|
|
|
# filename, so skip
|
|
|
|
return False
|
2019-11-02 15:27:16 +00:00
|
|
|
|
|
|
|
global GSTPLUGIN_FILEPATH_REG
|
|
|
|
if GSTPLUGIN_FILEPATH_REG is None:
|
|
|
|
GSTPLUGIN_FILEPATH_REG = re.compile(GSTPLUGIN_FILEPATH_REG_TEMPLATE)
|
2019-09-19 10:45:03 +00:00
|
|
|
if GSTPLUGIN_FILEPATH_REG.search(install_filename.replace('\\', '/')):
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2016-09-05 14:54:46 +00:00
|
|
|
|
2019-08-03 02:22:16 +00:00
|
|
|
def get_wine_subprocess_env(options, env):
|
|
|
|
with open(os.path.join(options.builddir, 'meson-info', 'intro-buildoptions.json')) as f:
|
|
|
|
buildoptions = json.load(f)
|
|
|
|
|
|
|
|
prefix, = [o for o in buildoptions if o['name'] == 'prefix']
|
|
|
|
path = os.path.normpath(os.path.join(prefix['value'], 'bin'))
|
|
|
|
prepend_env_var(env, "PATH", path, options.sysroot)
|
|
|
|
wine_path = get_wine_shortpath(
|
|
|
|
options.wine.split(' '),
|
|
|
|
[path] + env.get('WINEPATH', '').split(';')
|
|
|
|
)
|
|
|
|
if options.winepath:
|
|
|
|
wine_path += ';' + options.winepath
|
|
|
|
env['WINEPATH'] = wine_path
|
|
|
|
env['WINEDEBUG'] = 'fixme-all'
|
|
|
|
|
|
|
|
return env
|
|
|
|
|
|
|
|
|
2018-08-17 14:33:09 +00:00
|
|
|
def get_subprocess_env(options, gst_version):
|
2016-08-24 15:10:21 +00:00
|
|
|
env = os.environ.copy()
|
|
|
|
|
2016-10-20 21:12:53 +00:00
|
|
|
env["CURRENT_GST"] = os.path.normpath(SCRIPTDIR)
|
2019-08-03 02:22:16 +00:00
|
|
|
env["GST_VERSION"] = gst_version
|
2016-08-24 15:10:21 +00:00
|
|
|
env["GST_VALIDATE_SCENARIOS_PATH"] = os.path.normpath(
|
|
|
|
"%s/subprojects/gst-devtools/validate/data/scenarios" % SCRIPTDIR)
|
|
|
|
env["GST_VALIDATE_PLUGIN_PATH"] = os.path.normpath(
|
|
|
|
"%s/subprojects/gst-devtools/validate/plugins" % options.builddir)
|
2016-09-05 17:47:50 +00:00
|
|
|
env["GST_VALIDATE_APPS_DIR"] = os.path.normpath(
|
|
|
|
"%s/subprojects/gst-editing-services/tests/validate" % SCRIPTDIR)
|
2019-08-03 02:22:16 +00:00
|
|
|
env["GST_ENV"] = 'gst-' + gst_version
|
|
|
|
env["GST_REGISTRY"] = os.path.normpath(options.builddir + "/registry.dat")
|
2016-08-24 15:10:21 +00:00
|
|
|
prepend_env_var(env, "PATH", os.path.normpath(
|
2019-06-05 01:04:45 +00:00
|
|
|
"%s/subprojects/gst-devtools/validate/tools" % options.builddir),
|
|
|
|
options.sysroot)
|
2019-08-03 02:22:16 +00:00
|
|
|
|
|
|
|
if options.wine:
|
|
|
|
return get_wine_subprocess_env(options, env)
|
|
|
|
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, "PATH", os.path.join(SCRIPTDIR, 'meson'),
|
|
|
|
options.sysroot)
|
2019-08-03 02:22:16 +00:00
|
|
|
|
2016-08-24 15:10:21 +00:00
|
|
|
env["GST_PLUGIN_SYSTEM_PATH"] = ""
|
|
|
|
env["GST_PLUGIN_SCANNER"] = os.path.normpath(
|
|
|
|
"%s/subprojects/gstreamer/libs/gst/helpers/gst-plugin-scanner" % options.builddir)
|
|
|
|
env["GST_PTP_HELPER"] = os.path.normpath(
|
|
|
|
"%s/subprojects/gstreamer/libs/gst/helpers/gst-ptp-helper" % options.builddir)
|
2016-09-05 14:54:46 +00:00
|
|
|
|
2019-11-11 11:41:23 +00:00
|
|
|
if os.name == 'nt':
|
2016-11-19 13:11:55 +00:00
|
|
|
lib_path_envvar = 'PATH'
|
|
|
|
elif platform.system() == 'Darwin':
|
|
|
|
lib_path_envvar = 'DYLD_LIBRARY_PATH'
|
|
|
|
else:
|
|
|
|
lib_path_envvar = 'LD_LIBRARY_PATH'
|
|
|
|
|
2017-03-14 22:31:11 +00:00
|
|
|
prepend_env_var(env, "GST_PLUGIN_PATH", os.path.join(SCRIPTDIR, 'subprojects',
|
2019-06-05 01:04:45 +00:00
|
|
|
'gst-python', 'plugin'),
|
|
|
|
options.sysroot)
|
2017-08-21 14:57:29 +00:00
|
|
|
prepend_env_var(env, "GST_PLUGIN_PATH", os.path.join(PREFIX_DIR, 'lib',
|
2019-06-05 01:04:45 +00:00
|
|
|
'gstreamer-1.0'),
|
|
|
|
options.sysroot)
|
2019-05-16 20:12:05 +00:00
|
|
|
prepend_env_var(env, "GST_PLUGIN_PATH", os.path.join(options.builddir, 'subprojects',
|
2019-06-05 01:04:45 +00:00
|
|
|
'libnice', 'gst'),
|
|
|
|
options.sysroot)
|
|
|
|
prepend_env_var(env, "GST_VALIDATE_SCENARIOS_PATH",
|
|
|
|
os.path.join(PREFIX_DIR, 'share', 'gstreamer-1.0',
|
|
|
|
'validate', 'scenarios'),
|
|
|
|
options.sysroot)
|
2017-08-21 14:57:29 +00:00
|
|
|
prepend_env_var(env, "GI_TYPELIB_PATH", os.path.join(PREFIX_DIR, 'lib',
|
2019-06-05 01:04:45 +00:00
|
|
|
'lib', 'girepository-1.0'),
|
|
|
|
options.sysroot)
|
|
|
|
prepend_env_var(env, "PKG_CONFIG_PATH", os.path.join(PREFIX_DIR, 'lib', 'pkgconfig'),
|
|
|
|
options.sysroot)
|
2017-03-14 22:31:11 +00:00
|
|
|
|
2019-05-11 09:03:18 +00:00
|
|
|
# gst-indent
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, "PATH", os.path.join(SCRIPTDIR, 'gstreamer', 'tools'),
|
|
|
|
options.sysroot)
|
2019-05-11 09:03:18 +00:00
|
|
|
|
2019-11-02 09:44:57 +00:00
|
|
|
# tools: gst-launch-1.0, gst-inspect-1.0
|
|
|
|
prepend_env_var(env, "PATH", os.path.join(options.builddir, 'subprojects',
|
|
|
|
'gstreamer', 'tools'),
|
|
|
|
options.sysroot)
|
|
|
|
prepend_env_var(env, "PATH", os.path.join(options.builddir, 'subprojects',
|
|
|
|
'gst-plugins-base', 'tools'),
|
|
|
|
options.sysroot)
|
|
|
|
|
2019-04-01 18:25:14 +00:00
|
|
|
# Library and binary search paths
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, "PATH", os.path.join(PREFIX_DIR, 'bin'),
|
|
|
|
options.sysroot)
|
2019-04-01 18:25:14 +00:00
|
|
|
if lib_path_envvar != 'PATH':
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, lib_path_envvar, os.path.join(PREFIX_DIR, 'lib'),
|
|
|
|
options.sysroot)
|
2019-07-19 16:00:54 +00:00
|
|
|
prepend_env_var(env, lib_path_envvar, os.path.join(PREFIX_DIR, 'lib64'),
|
|
|
|
options.sysroot)
|
2019-04-01 18:25:14 +00:00
|
|
|
elif 'QMAKE' in os.environ:
|
|
|
|
# There's no RPATH on Windows, so we need to set PATH for the qt5 DLLs
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, 'PATH', os.path.dirname(os.environ['QMAKE']),
|
|
|
|
options.sysroot)
|
2019-04-01 18:25:14 +00:00
|
|
|
|
2017-12-18 15:55:11 +00:00
|
|
|
meson = get_meson()
|
2018-08-10 21:20:14 +00:00
|
|
|
targets_s = subprocess.check_output(meson + ['introspect', options.builddir, '--targets'])
|
2016-11-19 21:01:44 +00:00
|
|
|
targets = json.loads(targets_s.decode())
|
2016-12-14 20:13:53 +00:00
|
|
|
paths = set()
|
2017-08-22 19:29:58 +00:00
|
|
|
mono_paths = set()
|
2018-11-23 14:42:03 +00:00
|
|
|
srcdir_path = pathlib.Path(options.srcdir)
|
2019-11-02 15:27:16 +00:00
|
|
|
|
|
|
|
build_options_s = subprocess.check_output(meson + ['introspect', options.builddir, '--buildoptions'])
|
|
|
|
build_options = json.loads(build_options_s.decode())
|
|
|
|
libdir, = [o['value'] for o in build_options if o['name'] == 'libdir']
|
|
|
|
libdir = libdir.replace('\\', '/')
|
|
|
|
|
|
|
|
global GSTPLUGIN_FILEPATH_REG_TEMPLATE
|
|
|
|
GSTPLUGIN_FILEPATH_REG_TEMPLATE = GSTPLUGIN_FILEPATH_REG_TEMPLATE.format(libdir=libdir)
|
|
|
|
|
2016-11-19 21:01:44 +00:00
|
|
|
for target in targets:
|
2019-02-14 08:31:52 +00:00
|
|
|
filenames = listify(target['filename'])
|
|
|
|
for filename in filenames:
|
|
|
|
root = os.path.dirname(filename)
|
|
|
|
if srcdir_path / "subprojects/gst-devtools/validate/plugins" in (srcdir_path / root).parents:
|
2016-11-19 21:01:44 +00:00
|
|
|
continue
|
2019-02-14 08:31:52 +00:00
|
|
|
if filename.endswith('.dll'):
|
|
|
|
mono_paths.add(os.path.join(options.builddir, root))
|
2019-09-19 10:45:03 +00:00
|
|
|
if TYPELIB_REG.search(filename):
|
2019-02-14 08:31:52 +00:00
|
|
|
prepend_env_var(env, "GI_TYPELIB_PATH",
|
2019-06-05 01:04:45 +00:00
|
|
|
os.path.join(options.builddir, root),
|
|
|
|
options.sysroot)
|
2019-09-19 10:45:03 +00:00
|
|
|
elif is_library_target_and_not_plugin(target, filename):
|
2019-02-14 08:31:52 +00:00
|
|
|
prepend_env_var(env, lib_path_envvar,
|
2019-06-05 01:04:45 +00:00
|
|
|
os.path.join(options.builddir, root),
|
|
|
|
options.sysroot)
|
2019-02-14 08:31:52 +00:00
|
|
|
elif target['type'] == 'executable' and target['installed']:
|
|
|
|
paths.add(os.path.join(options.builddir, root))
|
2016-12-14 20:13:53 +00:00
|
|
|
|
2018-11-11 23:06:04 +00:00
|
|
|
with open(os.path.join(options.builddir, 'GstPluginsPath.json')) as f:
|
|
|
|
for plugin_path in json.load(f):
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, 'GST_PLUGIN_PATH', plugin_path,
|
|
|
|
options.sysroot)
|
2018-11-11 23:06:04 +00:00
|
|
|
|
2016-12-14 20:13:53 +00:00
|
|
|
for p in paths:
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, 'PATH', p, options.sysroot)
|
2016-09-05 14:54:46 +00:00
|
|
|
|
2017-08-22 19:29:58 +00:00
|
|
|
if os.name != 'nt':
|
|
|
|
for p in mono_paths:
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, "MONO_PATH", p, options.sysroot)
|
2017-08-22 19:29:58 +00:00
|
|
|
|
2016-12-19 13:10:58 +00:00
|
|
|
presets = set()
|
|
|
|
encoding_targets = set()
|
2017-01-04 11:10:56 +00:00
|
|
|
pkg_dirs = set()
|
2018-11-08 14:52:03 +00:00
|
|
|
python_dirs = set(["%s/subprojects/gstreamer/libs/gst/helpers/" % options.srcdir])
|
2018-08-10 21:20:14 +00:00
|
|
|
if '--installed' in subprocess.check_output(meson + ['introspect', '-h']).decode():
|
|
|
|
installed_s = subprocess.check_output(meson + ['introspect', options.builddir, '--installed'])
|
2016-12-19 13:10:58 +00:00
|
|
|
for path, installpath in json.loads(installed_s.decode()).items():
|
2018-10-27 15:59:29 +00:00
|
|
|
installpath_parts = pathlib.Path(installpath).parts
|
|
|
|
path_parts = pathlib.Path(path).parts
|
|
|
|
|
|
|
|
# We want to add all python modules to the PYTHONPATH
|
|
|
|
# in a manner consistent with the way they would be imported:
|
|
|
|
# For example if the source path /home/meh/foo/bar.py
|
|
|
|
# is to be installed in /usr/lib/python/site-packages/foo/bar.py,
|
|
|
|
# we want to add /home/meh to the PYTHONPATH.
|
|
|
|
# This will only work for projects where the paths to be installed
|
|
|
|
# mirror the installed directory layout, for example if the path
|
|
|
|
# is /home/meh/baz/bar.py and the install path is
|
|
|
|
# /usr/lib/site-packages/foo/bar.py , we will not add anything
|
|
|
|
# to PYTHONPATH, but the current approach works with pygobject
|
|
|
|
# and gst-python at least.
|
|
|
|
if 'site-packages' in installpath_parts:
|
|
|
|
install_subpath = os.path.join(*installpath_parts[installpath_parts.index('site-packages') + 1:])
|
|
|
|
if path.endswith(install_subpath):
|
|
|
|
python_dirs.add(path[:len (install_subpath) * -1])
|
|
|
|
|
2016-12-19 13:10:58 +00:00
|
|
|
if path.endswith('.prs'):
|
|
|
|
presets.add(os.path.dirname(path))
|
|
|
|
elif path.endswith('.gep'):
|
|
|
|
encoding_targets.add(
|
|
|
|
os.path.abspath(os.path.join(os.path.dirname(path), '..')))
|
2017-01-04 11:10:56 +00:00
|
|
|
elif path.endswith('.pc'):
|
|
|
|
# Is there a -uninstalled pc file for this file?
|
|
|
|
uninstalled = "{0}-uninstalled.pc".format(path[:-3])
|
|
|
|
if os.path.exists(uninstalled):
|
|
|
|
pkg_dirs.add(os.path.dirname(path))
|
|
|
|
|
2019-01-04 11:58:37 +00:00
|
|
|
if path.endswith('gstomx.conf'):
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, 'GST_OMX_CONFIG_DIR', os.path.dirname(path),
|
|
|
|
options.sysroot)
|
2019-01-04 11:58:37 +00:00
|
|
|
|
2016-12-19 13:10:58 +00:00
|
|
|
for p in presets:
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, 'GST_PRESET_PATH', p, options.sysroot)
|
2016-12-19 13:10:58 +00:00
|
|
|
|
|
|
|
for t in encoding_targets:
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, 'GST_ENCODING_TARGET_PATH', t, options.sysroot)
|
2016-12-19 13:10:58 +00:00
|
|
|
|
2017-01-04 11:10:56 +00:00
|
|
|
for pkg_dir in pkg_dirs:
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, "PKG_CONFIG_PATH", pkg_dir, options.sysroot)
|
2017-03-28 17:32:24 +00:00
|
|
|
prepend_env_var(env, "PKG_CONFIG_PATH", os.path.join(options.builddir,
|
|
|
|
'subprojects',
|
|
|
|
'gst-plugins-good',
|
2019-06-05 01:04:45 +00:00
|
|
|
'pkgconfig'),
|
|
|
|
options.sysroot)
|
2017-01-04 11:10:56 +00:00
|
|
|
|
2018-10-27 15:59:29 +00:00
|
|
|
for python_dir in python_dirs:
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, 'PYTHONPATH', python_dir, options.sysroot)
|
2018-10-27 15:59:29 +00:00
|
|
|
|
2017-01-27 19:54:21 +00:00
|
|
|
mesonpath = os.path.join(SCRIPTDIR, "meson")
|
|
|
|
if os.path.join(mesonpath):
|
|
|
|
# Add meson/ into PYTHONPATH if we are using a local meson
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, 'PYTHONPATH', mesonpath, options.sysroot)
|
2017-01-27 19:54:21 +00:00
|
|
|
|
2019-05-25 10:02:37 +00:00
|
|
|
# For devhelp books
|
|
|
|
if not 'XDG_DATA_DIRS' in env or not env['XDG_DATA_DIRS']:
|
|
|
|
# Preserve default paths when empty
|
2019-06-05 01:04:45 +00:00
|
|
|
prepend_env_var(env, 'XDG_DATA_DIRS', '/usr/local/share/:/usr/share/', '')
|
2019-05-25 10:02:37 +00:00
|
|
|
|
|
|
|
prepend_env_var (env, 'XDG_DATA_DIRS', os.path.join(options.builddir,
|
|
|
|
'subprojects',
|
|
|
|
'gst-docs',
|
2019-06-05 01:04:45 +00:00
|
|
|
'GStreamer-doc'),
|
|
|
|
options.sysroot)
|
2019-05-25 10:02:37 +00:00
|
|
|
|
2016-08-24 15:10:21 +00:00
|
|
|
return env
|
|
|
|
|
2019-01-24 17:13:08 +00:00
|
|
|
def get_windows_shell():
|
|
|
|
command = ['powershell.exe' ,'-noprofile', '-executionpolicy', 'bypass', '-file', 'cmd_or_ps.ps1']
|
|
|
|
result = subprocess.check_output(command)
|
|
|
|
return result.decode().strip()
|
|
|
|
|
2016-08-24 15:10:21 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
parser = argparse.ArgumentParser(prog="gstreamer-uninstalled")
|
|
|
|
|
|
|
|
parser.add_argument("--builddir",
|
2018-05-05 15:05:12 +00:00
|
|
|
default=DEFAULT_BUILDDIR,
|
2016-08-24 15:10:21 +00:00
|
|
|
help="The meson build directory")
|
2017-04-05 22:25:31 +00:00
|
|
|
parser.add_argument("--srcdir",
|
|
|
|
default=SCRIPTDIR,
|
|
|
|
help="The top level source directory")
|
2019-05-06 20:07:28 +00:00
|
|
|
parser.add_argument("--sysroot",
|
|
|
|
default='',
|
|
|
|
help="The sysroot path used during cross-compilation")
|
2019-08-03 02:22:16 +00:00
|
|
|
parser.add_argument("--wine",
|
|
|
|
default='',
|
|
|
|
help="Build a wine env based on specified wine command")
|
|
|
|
parser.add_argument("--winepath",
|
|
|
|
default='',
|
|
|
|
help="Exra path to set to WINEPATH.")
|
2016-09-06 03:00:17 +00:00
|
|
|
options, args = parser.parse_known_args()
|
2016-08-24 15:10:21 +00:00
|
|
|
|
|
|
|
if not os.path.exists(options.builddir):
|
|
|
|
print("GStreamer not built in %s\n\nBuild it and try again" %
|
|
|
|
options.builddir)
|
|
|
|
exit(1)
|
2018-05-05 13:08:00 +00:00
|
|
|
options.builddir = os.path.abspath(options.builddir)
|
2016-08-24 15:10:21 +00:00
|
|
|
|
2017-04-05 22:25:31 +00:00
|
|
|
if not os.path.exists(options.srcdir):
|
|
|
|
print("The specified source dir does not exist" %
|
|
|
|
options.srcdir)
|
|
|
|
exit(1)
|
|
|
|
|
2018-08-17 14:33:09 +00:00
|
|
|
# The following incantation will retrieve the current branch name.
|
2018-08-31 11:31:24 +00:00
|
|
|
gst_version = git("rev-parse", "--symbolic-full-name", "--abbrev-ref", "HEAD",
|
|
|
|
repository_path=options.srcdir).strip('\n')
|
2018-08-17 14:33:09 +00:00
|
|
|
|
2019-08-03 02:22:16 +00:00
|
|
|
if options.wine:
|
|
|
|
gst_version += '-' + os.path.basename(options.wine)
|
|
|
|
|
2016-09-06 03:00:17 +00:00
|
|
|
if not args:
|
2019-11-11 11:41:23 +00:00
|
|
|
if os.name == 'nt':
|
2019-01-24 17:13:08 +00:00
|
|
|
shell = get_windows_shell()
|
|
|
|
if shell == 'powershell.exe':
|
|
|
|
args = ['powershell.exe']
|
|
|
|
args += ['-NoLogo', '-NoExit']
|
|
|
|
prompt = 'function global:prompt { "[gst-' + gst_version + '"+"] PS " + $PWD + "> "}'
|
|
|
|
args += ['-Command', prompt]
|
|
|
|
else:
|
|
|
|
args = [os.environ.get("COMSPEC", r"C:\WINDOWS\system32\cmd.exe")]
|
|
|
|
args += ['/k', 'prompt [gst-{}] $P$G'.format(gst_version)]
|
2016-10-17 14:42:07 +00:00
|
|
|
else:
|
|
|
|
args = [os.environ.get("SHELL", os.path.realpath("/bin/sh"))]
|
2019-03-08 16:38:43 +00:00
|
|
|
if "bash" in args[0] and not strtobool(os.environ.get("GST_BUILD_DISABLE_PS1_OVERRIDE", r"FALSE")):
|
2019-07-29 03:22:55 +00:00
|
|
|
tmprc = tempfile.NamedTemporaryFile(mode='w')
|
2016-11-02 18:40:54 +00:00
|
|
|
bashrc = os.path.expanduser('~/.bashrc')
|
|
|
|
if os.path.exists(bashrc):
|
|
|
|
with open(bashrc, 'r') as src:
|
|
|
|
shutil.copyfileobj(src, tmprc)
|
2019-07-29 03:22:55 +00:00
|
|
|
tmprc.write('\nexport PS1="[gst-%s] $PS1"' % gst_version)
|
|
|
|
tmprc.flush()
|
|
|
|
# Let the GC remove the tmp file
|
|
|
|
args.append("--rcfile")
|
|
|
|
args.append(tmprc.name)
|
2019-12-18 20:44:30 +00:00
|
|
|
if 'fish' in args[0]:
|
|
|
|
# Ignore SIGINT while using fish as the shell to make it behave
|
|
|
|
# like other shells such as bash and zsh.
|
|
|
|
# See: https://gitlab.freedesktop.org/gstreamer/gst-build/issues/18
|
|
|
|
signal.signal(signal.SIGINT, lambda x, y: True)
|
2019-12-18 21:09:01 +00:00
|
|
|
# Set the prompt
|
|
|
|
args.append('--init-command')
|
|
|
|
prompt_cmd = '''functions --copy fish_prompt original_fish_prompt
|
|
|
|
function fish_prompt
|
|
|
|
echo -n '[gst-{}] '(original_fish_prompt)
|
|
|
|
end'''.format(gst_version)
|
|
|
|
args.append(prompt_cmd)
|
2016-08-24 15:10:21 +00:00
|
|
|
try:
|
2018-11-23 18:13:49 +00:00
|
|
|
exit(subprocess.call(args, close_fds=False,
|
2018-08-17 14:33:09 +00:00
|
|
|
env=get_subprocess_env(options, gst_version)))
|
2016-08-24 15:10:21 +00:00
|
|
|
except subprocess.CalledProcessError as e:
|
|
|
|
exit(e.returncode)
|