Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kZhWB-0006tc-Ii for pgsql-pkg-debian@arkaria.postgresql.org; Mon, 02 Nov 2020 21:37:35 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1kZhW9-0002fz-Sb for pgsql-pkg-debian@arkaria.postgresql.org; Mon, 02 Nov 2020 21:37:33 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kZhW9-0002fs-Nj for pgsql-pkg-debian@lists.postgresql.org; Mon, 02 Nov 2020 21:37:33 +0000 Received: from feynman.df7cb.de ([195.49.152.168]) by makus.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kZhW7-0001KD-9I for pgsql-pkg-debian@postgresql.org; Mon, 02 Nov 2020 21:37:32 +0000 Received: from msg.df7cb.de (unknown [IPv6:2a02:908:1471:c340:37ef:f16d:f24e:cdd2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by feynman.df7cb.de (Postfix) with ESMTPSA id 4CQ5qD5Czyz3Dyq; Mon, 2 Nov 2020 22:37:28 +0100 (CET) Date: Mon, 2 Nov 2020 22:37:28 +0100 From: Christoph Berg To: Hu Bert Cc: pgsql-pkg-debian@postgresql.org Subject: Re: postgis-update introduced dependency for postgresql-13 Message-ID: <20201102213728.GB124060@msg.df7cb.de> Mail-Followup-To: Christoph Berg , Hu Bert , pgsql-pkg-debian@postgresql.org References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Precedence: bulk Re: Hu Bert > It seems like that the last postgis update has introduced a dependency > to postgresql-13. More details here: > > https://www.postgresql.org/message-id/CAAV-989nKHSVeqVaCvt5eikU8sSNNX_wkf7k8J8dyGxqxYc40A%40mail.gmail.com Hi Hubert, the issue is likely this: Package: postgis Version: 3.0.2+dfsg-4.pgdg100+1 Recommends: postgresql-13-postgis-3, postgis-doc If you have "install recommends" activated in the apt config (the default), then installing "postgis" will also install the recommended packages. Compare: $ sudo apt install postgis Die folgenden NEUEN Pakete werden installiert: postgis postgis-doc postgresql-13 postgresql-13-postgis-3 postgresql-13-postgis-3-scripts postgresql-client-13 $ sudo apt install --no-install-recommends postgis Die folgenden NEUEN Pakete werden installiert: postgis I think we can change that to "Recommends: postgresql-postgis", will do so for the next version. Christoph