mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-24 09:40:21 -06:00
165 lines
5.5 KiB
Bash
Executable File
165 lines
5.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Exit when any command fails
|
|
set -e
|
|
|
|
# Debugging shizz
|
|
trap 'ERRCODE=$? && if [ ${ERRCODE} -ne 0 ]; then echo "The command \"${BASH_COMMAND}\" failed in \"${FUNCNAME}\" with exit code ${ERRCODE}."; fi' EXIT
|
|
|
|
OS_ARCH=$(dpkg-architecture -qDEB_HOST_ARCH)
|
|
|
|
# Stop creating pyc files.
|
|
export PYTHONDONTWRITEBYTECODE=1
|
|
|
|
# Common Linux build functions
|
|
source pkg/linux/build-functions.sh
|
|
|
|
# Assemble the "standard" installation footprint
|
|
_setup_env "$0" "debian"
|
|
_cleanup "deb"
|
|
_setup_dirs
|
|
_create_python_virtualenv "debian"
|
|
_build_runtime
|
|
_build_docs "debian"
|
|
_copy_code "debian"
|
|
_generate_sbom
|
|
|
|
#
|
|
# Server package
|
|
#
|
|
|
|
# Create the Debian packaging stuffs for the server
|
|
echo "Creating the server package..."
|
|
mkdir "${SERVERROOT}/DEBIAN"
|
|
|
|
echo "Creating preinst script..."
|
|
cat << EOF > "${SERVERROOT}/DEBIAN/preinst"
|
|
#!/bin/sh
|
|
|
|
rm -rf /usr/pgadmin4/venv
|
|
if [ -d /usr/pgadmin4/web ]; then
|
|
cd /usr/pgadmin4/web && rm -rf \$(ls -A -I config_local.py)
|
|
fi
|
|
EOF
|
|
|
|
chmod 755 "${SERVERROOT}/DEBIAN/preinst"
|
|
|
|
cat << EOF > "${SERVERROOT}/DEBIAN/control"
|
|
Package: ${APP_NAME}-server
|
|
Version: ${APP_LONG_VERSION}
|
|
Architecture: ${OS_ARCH}
|
|
Section: database
|
|
Priority: optional
|
|
Depends: ${PYTHON_BINARY}, libpq5 (>= 11.0), libgssapi-krb5-2, python-dbus | python3-dbus
|
|
Recommends: postgresql-client | postgresql-client-15 | postgresql-client-14 | postgresql-client-13 | postgresql-client-12 | postgresql-client-11 | postgresql-client-10
|
|
Maintainer: pgAdmin Development Team <pgadmin-hackers@postgresql.org>
|
|
Description: The core server package for pgAdmin. pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world.
|
|
EOF
|
|
|
|
# Build the Debian package for the server
|
|
chmod -R u+rwX,go+rX,go-w "${SERVERROOT}"
|
|
fakeroot dpkg-deb --build "${SERVERROOT}" "${DISTROOT}/${APP_NAME}-server_${APP_LONG_VERSION}_${OS_ARCH}.deb"
|
|
|
|
#
|
|
# Desktop package
|
|
#
|
|
|
|
# Create the Debian packaging stuffs for the desktop
|
|
echo "Creating the desktop package..."
|
|
mkdir "${DESKTOPROOT}/DEBIAN"
|
|
|
|
# Ubuntu 24 requires apparmor profile to work.
|
|
OS_ID=$(grep "^ID=" /etc/os-release | awk -F "=" '{ print $2 }')
|
|
OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F "=" '{ print $2 }' | sed 's/"//g' | awk -F "." '{ print $1 }')
|
|
|
|
if [ "${OS_ID}" == 'ubuntu' ] && [ "${OS_VERSION}" -ge "24" ]; then
|
|
cat << EOF > "${DESKTOPROOT}/DEBIAN/conffiles"
|
|
/etc/apparmor.d/pgadmin4
|
|
EOF
|
|
|
|
mkdir -p "${DESKTOPROOT}/etc/apparmor.d"
|
|
cp "${SOURCEDIR}/pkg/debian/pgadmin4-aa-profile" "${DESKTOPROOT}/etc/apparmor.d/pgadmin4"
|
|
|
|
cat << EOF > "${DESKTOPROOT}/DEBIAN/postinst"
|
|
#!/bin/sh
|
|
|
|
echo "Load apparmor pgAdmin profile..."
|
|
apparmor_parser -r /etc/apparmor.d/pgadmin4
|
|
EOF
|
|
chmod 755 "${DESKTOPROOT}/DEBIAN/postinst"
|
|
fi
|
|
|
|
cat << EOF > "${DESKTOPROOT}/DEBIAN/control"
|
|
Package: ${APP_NAME}-desktop
|
|
Version: ${APP_LONG_VERSION}
|
|
Architecture: ${OS_ARCH}
|
|
Section: database
|
|
Priority: optional
|
|
Depends: ${APP_NAME}-server (= ${APP_LONG_VERSION}), libatomic1, xdg-utils, python-dbus | python3-dbus
|
|
Maintainer: pgAdmin Development Team <pgadmin-hackers@postgresql.org>
|
|
Description: The desktop user interface for pgAdmin. pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world.
|
|
EOF
|
|
|
|
# Build the Debian package for the desktop
|
|
chmod -R u+rwX,go+rX,go-w "${DESKTOPROOT}"
|
|
fakeroot dpkg-deb --build "${DESKTOPROOT}" "${DISTROOT}/${APP_NAME}-desktop_${APP_LONG_VERSION}_${OS_ARCH}.deb"
|
|
|
|
#
|
|
# Web package
|
|
#
|
|
|
|
# Create the Debian packaging stuffs for the web
|
|
echo "Creating the web package..."
|
|
mkdir "${WEBROOT}/DEBIAN"
|
|
|
|
cat << EOF > "${WEBROOT}/DEBIAN/conffiles"
|
|
/etc/apache2/conf-available/pgadmin4.conf
|
|
EOF
|
|
|
|
cat << EOF > "${WEBROOT}/DEBIAN/control"
|
|
Package: ${APP_NAME}-web
|
|
Version: ${APP_LONG_VERSION}
|
|
Architecture: all
|
|
Section: database
|
|
Priority: optional
|
|
Depends: ${APP_NAME}-server (= ${APP_LONG_VERSION}), apache2, libapache2-mod-wsgi-py3
|
|
Maintainer: pgAdmin Development Team <pgadmin-hackers@postgresql.org>
|
|
Description: The web interface for pgAdmin, hosted under Apache HTTPD. pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world.
|
|
EOF
|
|
|
|
mkdir -p "${WEBROOT}/etc/apache2/conf-available"
|
|
cp "${SOURCEDIR}/pkg/debian/pgadmin4.conf" "${WEBROOT}/etc/apache2/conf-available"
|
|
|
|
# Build the Debian package for the web
|
|
chmod -R u+rwX,go+rX,go-w "${WEBROOT}"
|
|
fakeroot dpkg-deb --build "${WEBROOT}" "${DISTROOT}/${APP_NAME}-web_${APP_LONG_VERSION}_all.deb"
|
|
|
|
#
|
|
# Meta package
|
|
#
|
|
|
|
# Create the Debian packaging stuffs for the meta package
|
|
echo "Creating the meta package..."
|
|
mkdir "${METAROOT}/DEBIAN"
|
|
|
|
cat << EOF > "${METAROOT}/DEBIAN/control"
|
|
Package: ${APP_NAME}
|
|
Version: ${APP_LONG_VERSION}
|
|
Architecture: all
|
|
Section: database
|
|
Priority: optional
|
|
Depends: ${APP_NAME}-server (= ${APP_LONG_VERSION}), ${APP_NAME}-desktop (= ${APP_LONG_VERSION}), ${APP_NAME}-web (= ${APP_LONG_VERSION})
|
|
Maintainer: pgAdmin Development Team <pgadmin-hackers@postgresql.org>
|
|
Description: Installs all required components to run pgAdmin in desktop and web modes. pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world.
|
|
EOF
|
|
|
|
# Build the Debian meta package
|
|
fakeroot dpkg-deb --build "${METAROOT}" "${DISTROOT}/${APP_NAME}_${APP_LONG_VERSION}_all.deb"
|
|
|
|
# Get the libpq package
|
|
pushd "${DISTROOT}" 1> /dev/null
|
|
apt-get download libpq5 libpq-dev
|
|
popd 1> /dev/null
|
|
|
|
echo "Completed. DEBs created in ${DISTROOT}."
|