mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: postgresql: Deprecate unsupported versions.
Versions 10 and 11 are unsupported according to https://www.postgresql.org/support/versioning/ postgresql-10 also has a CVE. * doc/guix.texi: Change default value of postgresql-service-type's postgresql field. * gnu/packages/databases.scm (postresql-10, postgresql-11): Use define-deprecated/public to warn users. * gnu/services/databases.scm (postgresql-configuration): Change the default value of postgresql-configuration-postgresql. * gnu/tests/guix.scm (%guix-data-service-os): Change the default value of postgresql. Signed-off-by: Andreas Enge <andreas@enge.fr> Change-Id: Ie8744c8e1f246e9b45ff5e29d4e98214de3ca66a
This commit is contained in:
parent
5034f2d45c
commit
351fdf69f7
4 changed files with 8 additions and 7 deletions
|
@ -170,6 +170,7 @@
|
|||
#:use-module (gnu packages web)
|
||||
#:use-module (gnu packages xdisorg)
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module (guix deprecation)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
|
@ -1375,7 +1376,7 @@ pictures, sounds, or video.")
|
|||
(base32
|
||||
"09f99rp5q1xp769r71if9ckb4cbm0nnx2xmy8b1bhcvd8hax9va2"))))))
|
||||
|
||||
(define-public postgresql-11
|
||||
(define-deprecated/public postgresql-11 #f
|
||||
(package
|
||||
(inherit postgresql-13)
|
||||
(name "postgresql")
|
||||
|
@ -1391,7 +1392,7 @@ pictures, sounds, or video.")
|
|||
(modify-inputs (package-native-inputs postgresql-13)
|
||||
(replace "docbook-xml" docbook-xml-4.2)))))
|
||||
|
||||
(define-public postgresql-10
|
||||
(define-deprecated/public postgresql-10 #f
|
||||
(package
|
||||
(inherit postgresql-11)
|
||||
(version "10.23")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue