public inbox for [email protected]  
help / color / mirror / Atom feed
Bullseye 10 and 11 servers packages
3+ messages / 2 participants
[nested] [flat]

* Bullseye 10 and 11 servers packages
@ 2022-08-05 14:34 Laurent Arnoud <[email protected]>
  2022-08-05 18:56 ` Re: Bullseye 10 and 11 servers packages Aaron Pavely <[email protected]>
  0 siblings, 1 reply; 3+ messages in thread

From: Laurent Arnoud @ 2022-08-05 14:34 UTC (permalink / raw)
  To: pgsql-pkg-debian

Hi,

I'm working at platform.sh and we are using your Debian packages for
all versions. We are trying to update to bullseye, but currently the
10 and 11 servers are missing from this repository. I can see that
there are builds successfully on your jenkins
[10](https://pgdgbuild.dus.dg-i.net/job/postgresql-10-binaries/architecture=amd64,distribution=bullseye/l...)
[11](https://pgdgbuild.dus.dg-i.net/job/postgresql-11-binaries/architecture=amd64,distribution=bullseye/l...)

Are these debs not intended to be included in the public repos, or can
we find them published elsewhere?

Thanks,
Laurent


^ permalink  raw  reply  [nested|flat] 3+ messages in thread

* Re: Bullseye 10 and 11 servers packages
  2022-08-05 14:34 Bullseye 10 and 11 servers packages Laurent Arnoud <[email protected]>
@ 2022-08-05 18:56 ` Aaron Pavely <[email protected]>
  2022-08-08 08:06   ` Re: Bullseye 10 and 11 servers packages Laurent Arnoud <[email protected]>
  0 siblings, 1 reply; 3+ messages in thread

From: Aaron Pavely @ 2022-08-05 18:56 UTC (permalink / raw)
  To: Laurent Arnoud <[email protected]>; +Cc: pgsql-pkg-debian

On Fri, Aug 5, 2022 at 1:29 PM Laurent Arnoud <[email protected]>
wrote:

> Hi,
>
> I'm working at platform.sh and we are using your Debian packages for all versions. We are trying to update to bullseye, but currently the 10 and 11 servers are missing from this repository. I can see that there are builds successfully on your jenkins [10](https://pgdgbuild.dus.dg-i.net/job/postgresql-10-binaries/architecture=amd64,distribution=bullseye/l...) [11](https://pgdgbuild.dus.dg-i.net/job/postgresql-11-binaries/architecture=amd64,distribution=bullseye/l...)
>
> Are these debs not intended to be included in the public repos, or can we find them published elsewhere?
>
> Thanks,
> Laurent
>
>
Are you using the 'main' component in your 'sources.list', or are you
selecting specifically '10' and/or '11'?

Correct:
deb http://apt.postgresql.org/pub/repos/apt *bullseye*-pgdg main

Incorrect:
deb http://apt.postgresql.org/pub/repos/apt *bullseye*-pgdg 10
deb http://apt.postgresql.org/pub/repos/apt *bullseye*-pgdg 11

The incorrect form is valid if you wish to use the libpq from a prior major
release, as detailed here:
https://wiki.postgresql.org/wiki/Apt/FAQ#I_want_libpq5_for_version_X.2C_but_there_is_only_version_Y_...

While I don't use bullseye, it's easy to check if the package is referenced
in the repository (note the 'main' in the path):
$ curl -s
https://apt.postgresql.org/pub/repos/apt/dists/bullseye-pgdg/main/binary-amd64/Packages
| sed -n '/^Package: postgresql-10$/,/^$/p' | head -n 5
Package: postgresql-10
Version: 10.21-1.pgdg110+1
Architecture: amd64
Maintainer: Debian PostgreSQL Maintainers <
[email protected]>
Installed-Size: 23691
$ curl -s
https://apt.postgresql.org/pub/repos/apt/dists/bullseye-pgdg/main/binary-amd64/Packages
| sed -n '/^Package: postgresql-11$/,/^$/p' | head -n 5
Package: postgresql-11
Version: 11.16-1.pgdg110+1
Architecture: amd64
Maintainer: Debian PostgreSQL Maintainers <
[email protected]>
Installed-Size: 45958

Regards,
Aaron


^ permalink  raw  reply  [nested|flat] 3+ messages in thread

* Re: Bullseye 10 and 11 servers packages
  2022-08-05 14:34 Bullseye 10 and 11 servers packages Laurent Arnoud <[email protected]>
  2022-08-05 18:56 ` Re: Bullseye 10 and 11 servers packages Aaron Pavely <[email protected]>
@ 2022-08-08 08:06   ` Laurent Arnoud <[email protected]>
  0 siblings, 0 replies; 3+ messages in thread

From: Laurent Arnoud @ 2022-08-08 08:06 UTC (permalink / raw)
  To: Aaron Pavely <[email protected]>; +Cc: pgsql-pkg-debian

Hi Aaron,

Yes we are using main as source, but I think it failed because we are using
postgis-2.5 for pg10 and 11 and I was wrongly checking on the browser 14
Packages list instead of main. Thanks for the quick reply.

Cheers,
Laurent

On Fri, Aug 5, 2022 at 8:56 PM Aaron Pavely <[email protected]> wrote:

> On Fri, Aug 5, 2022 at 1:29 PM Laurent Arnoud <[email protected]>
> wrote:
>
>> Hi,
>>
>> I'm working at platform.sh and we are using your Debian packages for all versions. We are trying to update to bullseye, but currently the 10 and 11 servers are missing from this repository. I can see that there are builds successfully on your jenkins [10](https://pgdgbuild.dus.dg-i.net/job/postgresql-10-binaries/architecture=amd64,distribution=bullseye/l...) [11](https://pgdgbuild.dus.dg-i.net/job/postgresql-11-binaries/architecture=amd64,distribution=bullseye/l...)
>>
>> Are these debs not intended to be included in the public repos, or can we find them published elsewhere?
>>
>> Thanks,
>> Laurent
>>
>>
> Are you using the 'main' component in your 'sources.list', or are you
> selecting specifically '10' and/or '11'?
>
> Correct:
> deb http://apt.postgresql.org/pub/repos/apt *bullseye*-pgdg main
>
> Incorrect:
> deb http://apt.postgresql.org/pub/repos/apt *bullseye*-pgdg 10
> deb http://apt.postgresql.org/pub/repos/apt *bullseye*-pgdg 11
>
> The incorrect form is valid if you wish to use the libpq from a prior
> major release, as detailed here:
>
> https://wiki.postgresql.org/wiki/Apt/FAQ#I_want_libpq5_for_version_X.2C_but_there_is_only_version_Y_...
>
> While I don't use bullseye, it's easy to check if the package is
> referenced in the repository (note the 'main' in the path):
> $ curl -s
> https://apt.postgresql.org/pub/repos/apt/dists/bullseye-pgdg/main/binary-amd64/Packages
> | sed -n '/^Package: postgresql-10$/,/^$/p' | head -n 5
> Package: postgresql-10
> Version: 10.21-1.pgdg110+1
> Architecture: amd64
> Maintainer: Debian PostgreSQL Maintainers <
> [email protected]>
> Installed-Size: 23691
> $ curl -s
> https://apt.postgresql.org/pub/repos/apt/dists/bullseye-pgdg/main/binary-amd64/Packages
> | sed -n '/^Package: postgresql-11$/,/^$/p' | head -n 5
> Package: postgresql-11
> Version: 11.16-1.pgdg110+1
> Architecture: amd64
> Maintainer: Debian PostgreSQL Maintainers <
> [email protected]>
> Installed-Size: 45958
>
> Regards,
> Aaron
>


^ permalink  raw  reply  [nested|flat] 3+ messages in thread


end of thread, other threads:[~2022-08-08 08:06 UTC | newest]

Thread overview: 3+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2022-08-05 14:34 Bullseye 10 and 11 servers packages Laurent Arnoud <[email protected]>
2022-08-05 18:56 ` Aaron Pavely <[email protected]>
2022-08-08 08:06   ` Laurent Arnoud <[email protected]>

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox