From c1ba645dceed5c9551a5f408e37a14d1041ee598 Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Fri, 2 Apr 2021 14:01:17 +0530 Subject: [PATCH] 'xdg-util' has been added to the server mode instead of desktop mode in the previous patch, corrected it. refs #6338 --- pkg/debian/build.sh | 4 ++-- pkg/redhat/build.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/debian/build.sh b/pkg/debian/build.sh index 395ac83c7..2e84150e2 100755 --- a/pkg/debian/build.sh +++ b/pkg/debian/build.sh @@ -35,7 +35,7 @@ cat << EOF > "${SERVERROOT}/DEBIAN/control" Package: ${APP_NAME}-server Version: ${APP_LONG_VERSION} Architecture: ${OS_ARCH} -Depends: python3, libpq5 (>= 11.0), libgssapi-krb5-2, xdg-utils +Depends: python3, libpq5 (>= 11.0), libgssapi-krb5-2 Recommends: postgresql-client | postgresql-client-13 | postgresql-client-12 | postgresql-client-11 | postgresql-client-10 Maintainer: pgAdmin Development Team 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. @@ -56,7 +56,7 @@ cat << EOF > "${DESKTOPROOT}/DEBIAN/control" Package: ${APP_NAME}-desktop Version: ${APP_LONG_VERSION} Architecture: ${OS_ARCH} -Depends: ${APP_NAME}-server (= ${APP_LONG_VERSION}), libatomic1 +Depends: ${APP_NAME}-server (= ${APP_LONG_VERSION}), libatomic1, xdg-utils Maintainer: pgAdmin Development Team 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 diff --git a/pkg/redhat/build.sh b/pkg/redhat/build.sh index 388f41983..0b1e31cc8 100755 --- a/pkg/redhat/build.sh +++ b/pkg/redhat/build.sh @@ -58,7 +58,7 @@ Summary: The core server package for pgAdmin. License: PostgreSQL URL: https://www.pgadmin.org/ -Requires: python3, postgresql-libs >= 11, krb5-libs, xdg-utils +Requires: python3, postgresql-libs >= 11, krb5-libs %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. @@ -95,7 +95,7 @@ Release: 1%{?dist} Summary: The desktop user interface for pgAdmin. License: PostgreSQL URL: https://www.pgadmin.org/ -Requires: ${APP_NAME}-server = ${RPM_VERSION}, libatomic +Requires: ${APP_NAME}-server = ${RPM_VERSION}, libatomic, xdg-utils %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.