[seiscomp, scanloc] Install, add .gitignore
This commit is contained in:
1
share/deps/debian/10/install-base.sh
Normal file
1
share/deps/debian/10/install-base.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install libxml2 libboost-filesystem1.67.0 libboost-iostreams1.67.0 libboost-thread1.67.0 libboost-program-options1.67.0 libboost-regex1.67.0 libboost-signals1.67.0 libboost-system1.67.0 libssl1.1 libncurses5 libmariadb3 libpq5 libpython3.7 python3-numpy
|
1
share/deps/debian/10/install-fdsnws.sh
Normal file
1
share/deps/debian/10/install-fdsnws.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install python3-twisted python3-dateutil
|
1
share/deps/debian/10/install-gui.sh
Normal file
1
share/deps/debian/10/install-gui.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install libqt5gui5 libqt5xml5 libqt5opengl5 libqt5sql5-sqlite libqt5svg5 libqt5printsupport5
|
1
share/deps/debian/10/install-iloc.sh
Symbolic link
1
share/deps/debian/10/install-iloc.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../iloc/install-iloc.sh
|
1
share/deps/debian/10/install-mariadb-server.sh
Normal file
1
share/deps/debian/10/install-mariadb-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install mariadb-server mariadb-client
|
1
share/deps/debian/10/install-postgresql-server.sh
Normal file
1
share/deps/debian/10/install-postgresql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install postgresql postgresql-client
|
1
share/deps/debian/11/install-base.sh
Normal file
1
share/deps/debian/11/install-base.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install libxml2 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-thread1.74.0 libboost-program-options1.74.0 libboost-regex1.74.0 libboost-system1.74.0 libssl1.1 libncurses5 libmariadb3 libpq5 libpython3.9 python3-numpy
|
1
share/deps/debian/11/install-fdsnws.sh
Normal file
1
share/deps/debian/11/install-fdsnws.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install python3-twisted python3-dateutil
|
1
share/deps/debian/11/install-gui.sh
Normal file
1
share/deps/debian/11/install-gui.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install libqt5gui5 libqt5xml5 libqt5opengl5 libqt5sql5-sqlite libqt5svg5 libqt5printsupport5
|
1
share/deps/debian/11/install-iloc.sh
Symbolic link
1
share/deps/debian/11/install-iloc.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../iloc/install-iloc.sh
|
1
share/deps/debian/11/install-mariadb-server.sh
Normal file
1
share/deps/debian/11/install-mariadb-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install mariadb-server mariadb-client
|
1
share/deps/debian/11/install-postgresql-server.sh
Normal file
1
share/deps/debian/11/install-postgresql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install postgresql postgresql-client
|
1
share/deps/debian/12/install-base.sh
Normal file
1
share/deps/debian/12/install-base.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install libxml2 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-thread1.74.0 libboost-program-options1.74.0 libboost-regex1.74.0 libboost-system1.74.0 libssl3 libncurses5 libmariadb3 libpq5 libpython3.11 python3-numpy
|
1
share/deps/debian/12/install-fdsnws.sh
Normal file
1
share/deps/debian/12/install-fdsnws.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install python3-twisted python3-dateutil
|
1
share/deps/debian/12/install-gui.sh
Normal file
1
share/deps/debian/12/install-gui.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install libqt5gui5 libqt5xml5 libqt5opengl5 libqt5sql5-sqlite libqt5svg5 libqt5printsupport5
|
1
share/deps/debian/12/install-iloc.sh
Symbolic link
1
share/deps/debian/12/install-iloc.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../iloc/install-iloc.sh
|
1
share/deps/debian/12/install-mariadb-server.sh
Normal file
1
share/deps/debian/12/install-mariadb-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install mariadb-server mariadb-client
|
1
share/deps/debian/12/install-postgresql-server.sh
Normal file
1
share/deps/debian/12/install-postgresql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install postgresql postgresql-client
|
1
share/deps/rhel/7/install-base.sh
Normal file
1
share/deps/rhel/7/install-base.sh
Normal file
@ -0,0 +1 @@
|
||||
yum install libxml2 boost-filesystem boost-iostreams boost-thread boost-program-options boost-regex boost-signals boost-system openssl ncurses mysql postgresql python36 python36-numpy mariadb
|
10
share/deps/rhel/7/install-fdsnws.sh
Normal file
10
share/deps/rhel/7/install-fdsnws.sh
Normal file
@ -0,0 +1,10 @@
|
||||
yum install python36-dateutil python36-pip
|
||||
|
||||
echo "user name for pip install (sysop):"
|
||||
read user
|
||||
|
||||
if [ -z "$user" ]; then user=sysop; fi
|
||||
|
||||
# install Python packages using pip
|
||||
echo "installing packages for user " $user
|
||||
su - $user -c 'python3 -m pip install --user twisted'
|
1
share/deps/rhel/7/install-gui.sh
Normal file
1
share/deps/rhel/7/install-gui.sh
Normal file
@ -0,0 +1 @@
|
||||
yum install qt5-qtbase qt5-qtbase-gui qt5-qtsvg
|
1
share/deps/rhel/7/install-iloc.sh
Symbolic link
1
share/deps/rhel/7/install-iloc.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../iloc/install-iloc.sh
|
1
share/deps/rhel/7/install-mariadb-server.sh
Normal file
1
share/deps/rhel/7/install-mariadb-server.sh
Normal file
@ -0,0 +1 @@
|
||||
yum install mariadb mariadb-server
|
1
share/deps/rhel/7/install-mysql-server.sh
Normal file
1
share/deps/rhel/7/install-mysql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
yum install mysql mysql-server
|
1
share/deps/rhel/7/install-postgresql-server.sh
Normal file
1
share/deps/rhel/7/install-postgresql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
yum install postgresql postgresql-server
|
1
share/deps/rhel/8/install-base.sh
Normal file
1
share/deps/rhel/8/install-base.sh
Normal file
@ -0,0 +1 @@
|
||||
yum install libxml2 boost-filesystem boost-iostreams boost-thread boost-program-options boost-regex boost-signals boost-system openssl ncurses mariadb postgresql python3-numpy mysql-libs
|
2
share/deps/rhel/8/install-fdsnws.sh
Normal file
2
share/deps/rhel/8/install-fdsnws.sh
Normal file
@ -0,0 +1,2 @@
|
||||
dnf install epel-release
|
||||
dnf install python3-twisted python3-dateutil
|
1
share/deps/rhel/8/install-gui.sh
Normal file
1
share/deps/rhel/8/install-gui.sh
Normal file
@ -0,0 +1 @@
|
||||
yum install qt5-qtbase qt5-qtbase-gui qt5-qtsvg
|
1
share/deps/rhel/8/install-iloc.sh
Symbolic link
1
share/deps/rhel/8/install-iloc.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../iloc/install-iloc.sh
|
1
share/deps/rhel/8/install-mariadb-server.sh
Normal file
1
share/deps/rhel/8/install-mariadb-server.sh
Normal file
@ -0,0 +1 @@
|
||||
yum install mariadb mariadb-server
|
1
share/deps/rhel/8/install-mysql-server.sh
Normal file
1
share/deps/rhel/8/install-mysql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
dnf install mysql mysql-server
|
1
share/deps/rhel/8/install-postgresql-server.sh
Normal file
1
share/deps/rhel/8/install-postgresql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
yum install postgresql postgresql-server
|
1
share/deps/rhel/9/install-base.sh
Normal file
1
share/deps/rhel/9/install-base.sh
Normal file
@ -0,0 +1 @@
|
||||
dnf install libxml2 boost-filesystem boost-iostreams boost-thread boost-program-options boost-regex boost-system openssl ncurses mariadb postgresql python3-numpy
|
2
share/deps/rhel/9/install-fdsnws.sh
Normal file
2
share/deps/rhel/9/install-fdsnws.sh
Normal file
@ -0,0 +1,2 @@
|
||||
dnf install epel-release
|
||||
dnf install python3-twisted python3-dateutil
|
1
share/deps/rhel/9/install-gui.sh
Normal file
1
share/deps/rhel/9/install-gui.sh
Normal file
@ -0,0 +1 @@
|
||||
dnf install qt5-qtbase qt5-qtbase-gui qt5-qtsvg
|
1
share/deps/rhel/9/install-iloc.sh
Symbolic link
1
share/deps/rhel/9/install-iloc.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../iloc/install-iloc.sh
|
1
share/deps/rhel/9/install-mariadb-server.sh
Normal file
1
share/deps/rhel/9/install-mariadb-server.sh
Normal file
@ -0,0 +1 @@
|
||||
dnf install mariadb mariadb-server
|
1
share/deps/rhel/9/install-mysql-server.sh
Normal file
1
share/deps/rhel/9/install-mysql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
dnf install mysql mysql-server
|
1
share/deps/rhel/9/install-postgresql-server.sh
Normal file
1
share/deps/rhel/9/install-postgresql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
dnf install postgresql postgresql-server
|
1
share/deps/ubuntu/20.04/install-base.sh
Normal file
1
share/deps/ubuntu/20.04/install-base.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install libxml2 libboost-filesystem1.71.0 libboost-iostreams1.71.0 libboost-thread1.71.0 libboost-program-options1.71.0 libboost-regex1.71.0 libboost-system1.71.0 libssl1.1 libncurses5 libmysqlclient21 libmariadb3 libpq5 libpython3.8 python3-numpy
|
1
share/deps/ubuntu/20.04/install-fdsnws.sh
Normal file
1
share/deps/ubuntu/20.04/install-fdsnws.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install python3-twisted python3-dateutil
|
1
share/deps/ubuntu/20.04/install-gui.sh
Normal file
1
share/deps/ubuntu/20.04/install-gui.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install libqt5gui5 libqt5xml5 libqt5opengl5 libqt5sql5-sqlite libqt5svg5 libqt5printsupport5
|
1
share/deps/ubuntu/20.04/install-iloc.sh
Symbolic link
1
share/deps/ubuntu/20.04/install-iloc.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../iloc/install-iloc.sh
|
1
share/deps/ubuntu/20.04/install-mariadb-server.sh
Normal file
1
share/deps/ubuntu/20.04/install-mariadb-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install mariadb-server mariadb-client
|
1
share/deps/ubuntu/20.04/install-mysql-server.sh
Normal file
1
share/deps/ubuntu/20.04/install-mysql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install mysql-server mysql-client
|
1
share/deps/ubuntu/20.04/install-postgresql-server.sh
Normal file
1
share/deps/ubuntu/20.04/install-postgresql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install postgresql postgresql-client
|
1
share/deps/ubuntu/22.04/install-base.sh
Normal file
1
share/deps/ubuntu/22.04/install-base.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install libxml2 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-thread1.74.0 libboost-program-options1.74.0 libboost-regex1.74.0 libboost-system1.74.0 libssl3 libncurses6 libmysqlclient21 libmariadb3 libpq5 libpython3.10 python3-numpy
|
1
share/deps/ubuntu/22.04/install-fdsnws.sh
Normal file
1
share/deps/ubuntu/22.04/install-fdsnws.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install python3-twisted python3-dateutil
|
1
share/deps/ubuntu/22.04/install-gui.sh
Normal file
1
share/deps/ubuntu/22.04/install-gui.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install libqt5gui5 libqt5xml5 libqt5opengl5 libqt5sql5-sqlite libqt5svg5 libqt5printsupport5
|
1
share/deps/ubuntu/22.04/install-iloc.sh
Symbolic link
1
share/deps/ubuntu/22.04/install-iloc.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../iloc/install-iloc.sh
|
1
share/deps/ubuntu/22.04/install-mariadb-server.sh
Normal file
1
share/deps/ubuntu/22.04/install-mariadb-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install mariadb-server mariadb-client
|
1
share/deps/ubuntu/22.04/install-mysql-server.sh
Normal file
1
share/deps/ubuntu/22.04/install-mysql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install mysql-server mysql-client
|
1
share/deps/ubuntu/22.04/install-postgresql-server.sh
Normal file
1
share/deps/ubuntu/22.04/install-postgresql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install postgresql postgresql-client
|
1
share/deps/ubuntu/24.04/install-base.sh
Normal file
1
share/deps/ubuntu/24.04/install-base.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install libxml2 libboost-filesystem1.83.0 libboost-iostreams1.83.0 libboost-thread1.83.0 libboost-program-options1.83.0 libboost-regex1.83.0 libboost-system1.83.0 libssl3 libncurses6 libmysqlclient21 libmariadb3 libpq5 libpython3.12 python3-numpy
|
1
share/deps/ubuntu/24.04/install-fdsnws.sh
Normal file
1
share/deps/ubuntu/24.04/install-fdsnws.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install python3-twisted python3-dateutil
|
1
share/deps/ubuntu/24.04/install-gui.sh
Normal file
1
share/deps/ubuntu/24.04/install-gui.sh
Normal file
@ -0,0 +1 @@
|
||||
apt install libqt5gui5 libqt5xml5 libqt5opengl5 libqt5sql5-sqlite libqt5svg5 libqt5printsupport5
|
1
share/deps/ubuntu/24.04/install-iloc.sh
Symbolic link
1
share/deps/ubuntu/24.04/install-iloc.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../iloc/install-iloc.sh
|
1
share/deps/ubuntu/24.04/install-mariadb-server.sh
Normal file
1
share/deps/ubuntu/24.04/install-mariadb-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install mariadb-server mariadb-client
|
1
share/deps/ubuntu/24.04/install-mysql-server.sh
Normal file
1
share/deps/ubuntu/24.04/install-mysql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install mysql-server mysql-client
|
1
share/deps/ubuntu/24.04/install-postgresql-server.sh
Normal file
1
share/deps/ubuntu/24.04/install-postgresql-server.sh
Normal file
@ -0,0 +1 @@
|
||||
apt-get install postgresql postgresql-client
|
Reference in New Issue
Block a user