3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: PostgreSQL: Remove replacement package.

* gnu/packages/databases.scm (postgresql-13): Update to 13.2.
[replacement]: Remove.
(postgresql-13.2): Remove variable.
This commit is contained in:
Marius Bakke 2021-05-09 22:50:36 +02:00
parent 8314335e24
commit a9517c4f59
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -1026,15 +1026,14 @@ and high-availability (HA).")
(define-public postgresql-13
(package
(name "postgresql")
(replacement postgresql-13.2)
(version "13.1")
(version "13.2")
(source (origin
(method url-fetch)
(uri (string-append "https://ftp.postgresql.org/pub/source/v"
version "/postgresql-" version ".tar.bz2"))
(sha256
(base32
"07z6zwr58dckaa97yl9ml240z83d1lhgaxw9aq49i8lsp21mqd0j"))
"1z5d847jnajcfr3wa6jn52a8xjhamvwzmz18xlm5nvxqip8grmsz"))
(patches (search-patches "postgresql-disable-resolve_symlinks.patch"))))
(build-system gnu-build-system)
(arguments
@ -1081,20 +1080,6 @@ TIMESTAMP. It also supports storage of binary large objects, including
pictures, sounds, or video.")
(license (license:x11-style "file://COPYRIGHT"))))
(define-public postgresql-13.2
(package
(inherit postgresql-13)
(name "postgresql")
(version "13.2")
(source (origin
(method url-fetch)
(uri (string-append "https://ftp.postgresql.org/pub/source/v"
version "/postgresql-" version ".tar.bz2"))
(sha256
(base32
"1z5d847jnajcfr3wa6jn52a8xjhamvwzmz18xlm5nvxqip8grmsz"))
(patches (search-patches "postgresql-disable-resolve_symlinks.patch"))))))
(define-public postgresql-11
(package
(inherit postgresql-13)