# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{8,9} ) PYTHON_REQ_USE="sqlite" inherit desktop python-single-r1 qmake-utils xdg DESCRIPTION="GUI administration and development platform for PostgreSQL" HOMEPAGE="https://www.pgadmin.org/" SRC_URI="https://ftp.postgresql.org/pub/pgadmin/${PN}/v${PV}/source/${P}.tar.gz" LICENSE="POSTGRESQL" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RESTRICT="test" # libsodium dep added because of 689678 COMMON_DEPEND="${PYTHON_DEPS} dev-libs/libsodium[-minimal] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtwidgets:5 " DEPEND="${COMMON_DEPEND} doc? ( $(python_gen_cond_dep ' dev-python/sphinx[${PYTHON_USEDEP}] ') ) virtual/imagemagick-tools[png] " BDEPEND="sys-apps/yarn" # below reordered to match order in requirements.txt RDEPEND="${COMMON_DEPEND} $(python_gen_cond_dep ' =dev-python/flask-2*[${PYTHON_USEDEP}] =dev-python/flask-gravatar-0*[${PYTHON_USEDEP}] =dev-python/flask-login-0*[${PYTHON_USEDEP}] =dev-python/flask-mail-0*[${PYTHON_USEDEP}] =dev-python/flask-migrate-3*[${PYTHON_USEDEP}] =dev-python/flask-sqlalchemy-2.5*[${PYTHON_USEDEP}] =dev-python/flask-wtf-1*[${PYTHON_USEDEP}] =dev-python/flask-compress-1*[${PYTHON_USEDEP}] =dev-python/flask-paranoid-0*[${PYTHON_USEDEP}] =dev-python/flask-babel-2*[${PYTHON_USEDEP}] =dev-python/flask-security-4*[${PYTHON_USEDEP}] >=dev-python/flask-socketio-5.0.1[${PYTHON_USEDEP}] >=dev-python/wtforms-3.0[${PYTHON_USEDEP}] =dev-python/passlib-1*[${PYTHON_USEDEP}] =dev-python/pytz-2021*[${PYTHON_USEDEP}] =dev-python/simplejson-3*[${PYTHON_USEDEP}] =dev-python/six-1*[${PYTHON_USEDEP}] =dev-python/speaklater-1*[${PYTHON_USEDEP}] =dev-python/sqlparse-0*[${PYTHON_USEDEP}] =dev-python/psutil-5*[${PYTHON_USEDEP}] >=dev-python/psycopg-2.9[${PYTHON_USEDEP}] =dev-python/python-dateutil-2*[${PYTHON_USEDEP}] =dev-python/sqlalchemy-1.4*[${PYTHON_USEDEP}] =dev-python/bcrypt-3*[${PYTHON_USEDEP}] =dev-python/cryptography-3*[${PYTHON_USEDEP}] =dev-python/sshtunnel-0*[${PYTHON_USEDEP}] =dev-python/ldap3-2*[${PYTHON_USEDEP}] =dev-python/gssapi-1.7*[${PYTHON_USEDEP}] =dev-python/eventlet-0.33.0[${PYTHON_USEDEP}] =dev-python/httpagentparser-1.9*[${PYTHON_USEDEP}] =dev-python/user-agents-2.2.0[${PYTHON_USEDEP}] =dev-python/authlib-0.15*[${PYTHON_USEDEP}] =dev-python/pillow-8.3[${PYTHON_USEDEP}] >=dev-python/python-socketio-5.1.1[${PYTHON_USEDEP}] dev-python/bidict[${PYTHON_USEDEP}] ') " S="${WORKDIR}"/${P}/runtime src_prepare() { cd "${WORKDIR}"/${P} || die default } src_configure() { export PGADMIN_PYTHON_DIR="${EPREFIX}/usr" # eqmake5project # do we need default? } src_compile() { default use doc && emake -C "${WORKDIR}"/${P} docs cd ${WORKDIR}/${P}/runtime yarn install } src_install() { # dobin pgAdmin4 cd "${WORKDIR}"/${P} || die local APP_DIR=/usr/share/${PN}/runtime insinto "${APP_DIR}" doins -r runtime/. newins - dev_config.json <<-EOF { "pythonPath": "/usr/bin/python", "pgadminFile": "/usr/share/pgadmin4/web/pgAdmin4.py" } EOF python_optimize "${D}${APP_DIR}" # wildcards can fail below if the folders don't exist on the actual system fperms 0755 /usr/share/pgadmin4/runtime/node_modules/nw/nwjs/chrome_crashpad_handler fperms 0755 /usr/share/pgadmin4/runtime/node_modules/nw/nwjs/nw fperms 0755 /usr/share/pgadmin4/runtime/node_modules/nw/nwjs/lib/libEGL.so fperms 0755 /usr/share/pgadmin4/runtime/node_modules/nw/nwjs/lib/libffmpeg.so fperms 0755 /usr/share/pgadmin4/runtime/node_modules/nw/nwjs/lib/libGLESv2.so fperms 0755 /usr/share/pgadmin4/runtime/node_modules/nw/nwjs/lib/libnode.so fperms 0755 /usr/share/pgadmin4/runtime/node_modules/nw/nwjs/lib/libnw.so fperms 0755 /usr/share/pgadmin4/runtime/node_modules/nw/nwjs/swiftshader/libEGL.so fperms 0755 /usr/share/pgadmin4/runtime/node_modules/nw/nwjs/swiftshader/libGLESv2.so # probably also want to strip all of these (some are but not most?) local APP_DIR=/usr/share/${PN}/web insinto "${APP_DIR}" doins -r web/. newins - config_local.py <<-EOF SERVER_MODE = False UPGRADE_CHECK_ENABLED = False EOF python_optimize "${D}${APP_DIR}" insinto /etc/xdg/pgadmin newins - pgadmin4.conf <<-EOF [General] ApplicationPath=${APP_DIR} PythonPath=$(python_get_sitedir) EOF insinto /usr/bin newins - pgAdmin4 <<-EOF #/bin/bash cd /usr/share/pgadmin4/runtime node_modules/nw/nwjs/nw . EOF fperms 0755 /usr/bin/pgAdmin4 if use doc; then rm -r docs/en_US/_build/html/_sources || die insinto /usr/share/${PN}/docs/en_US/_build doins -r docs/en_US/_build/html fi local s for s in 16 32 48 64 72 96 128 192 256; do convert runtime/assets/pgAdmin4.png -resize ${s}x${s} ${PN}_${s}.png || die newicon -s ${s} ${PN}_${s}.png ${PN}.png done domenu "${FILESDIR}"/${PN}.desktop }