[seiscomp, scanloc] Install, add .gitignore

This commit is contained in:
2025-10-09 15:07:02 +02:00
commit 20f5301bb1
2848 changed files with 1315858 additions and 0 deletions

19
bin/seiscomp-python Executable file
View File

@ -0,0 +1,19 @@
#!/bin/sh
#
# This is a shell script that executes the Python interpreter as
# configured using cmake.
#
# In order to use this in your Python programs use this
# shebang line:
#!/usr/bin/env seiscomp-python
# Please note that this wrapper does *not* set the environment
# variables for you. To ensure that you run your script in the
# proper environment, please use 'seiscomp exec'. Alternatively
# you can also set your environment variables according to the
# output of 'seiscomp print env'.
python_executable="/usr/bin/python3"
exec $python_executable "$@"