[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/28: gnu: postgresql: Add 14.1.
From: |
guix-commits |
Subject: |
02/28: gnu: postgresql: Add 14.1. |
Date: |
Sat, 22 Jan 2022 04:23:41 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit ad004a2f663a1af8c9b7a3252e18525d5ee80a44
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Fri Jan 21 15:08:27 2022 +0100
gnu: postgresql: Add 14.1.
* gnu/packages/databases.scm (postgresql-14): New variable.
---
gnu/packages/databases.scm | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 2dec250a5e..6ca1f814de 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -1154,17 +1154,17 @@ and high-availability (HA).")
(license license:gpl2))) ;'COPYING' says "version 2" only
;; Don't forget to update the other postgresql packages when upgrading this
one.
-(define-public postgresql-13
+(define-public postgresql-14
(package
(name "postgresql")
- (version "13.4")
+ (version "14.1")
(source (origin
(method url-fetch)
(uri (string-append "https://ftp.postgresql.org/pub/source/v"
version "/postgresql-" version ".tar.bz2"))
(sha256
(base32
- "1kf0gcsrl5n25rjlvkh87aywmn28kbwvakm5c7j1qpr4j01y34za"))
+ "07x45iycqpps0qh3ingc09jgn9rpnmc3gixx0qprhf5flwg10g2d"))
(patches (search-patches
"postgresql-disable-resolve_symlinks.patch"))))
(build-system gnu-build-system)
(arguments
@@ -1211,6 +1211,18 @@ TIMESTAMP. It also supports storage of binary large
objects, including
pictures, sounds, or video.")
(license (license:x11-style "file://COPYRIGHT"))))
+(define-public postgresql-13
+ (package
+ (inherit postgresql-14)
+ (version "13.4")
+ (source (origin
+ (inherit (package-source postgresql-14))
+ (uri (string-append "https://ftp.postgresql.org/pub/source/v"
+ version "/postgresql-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "1kf0gcsrl5n25rjlvkh87aywmn28kbwvakm5c7j1qpr4j01y34za"))))))
+
(define-public postgresql-11
(package
(inherit postgresql-13)
- branch master updated (e22957fc15 -> 97176b4d9c), guix-commits, 2022/01/22
- 03/28: gnu: Add pproxy., guix-commits, 2022/01/22
- 01/28: gnu: python-psycopg2: Update to 2.9.3., guix-commits, 2022/01/22
- 02/28: gnu: postgresql: Add 14.1.,
guix-commits <=
- 04/28: gnu: python-cython: Add 3.0.0a10., guix-commits, 2022/01/22
- 12/28: gnu: python-pandas: Remove old version., guix-commits, 2022/01/22
- 11/28: gnu: Add python-psycopg., guix-commits, 2022/01/22
- 14/28: gnu: python-tqdm: Update to 4.62.3., guix-commits, 2022/01/22
- 06/28: gnu: Add python-typeguard., guix-commits, 2022/01/22
- 08/28: gnu: python-pytest-mock: Cope with test warnings., guix-commits, 2022/01/22
- 07/28: gnu: python-tenacity: Update to 8.0.1., guix-commits, 2022/01/22
- 05/28: gnu: python-mypy: Update to 0.931., guix-commits, 2022/01/22
- 09/28: gnu: python-pytest-asyncio: Update to 0.17.2., guix-commits, 2022/01/22
- 17/28: gnu: python-flask: Update to 2.0.2., guix-commits, 2022/01/22