[arvados] updated: 2.7.0-5089-gf75a35d375
git repository hosting
git at public.arvados.org
Tue Oct 24 19:07:08 UTC 2023
Summary of changes:
lib/install/deps.go | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
via f75a35d375ec8e9ae0160d2a847d96e96c2974e7 (commit)
from cfcbcdb42176ee277d7ad9251de963cd753f3f7d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit f75a35d375ec8e9ae0160d2a847d96e96c2974e7
Author: Tom Clegg <tom at curii.com>
Date: Tue Oct 24 15:06:01 2023 -0400
20846: Fix dependencies for ubuntu 22.04.
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at curii.com>
diff --git a/lib/install/deps.go b/lib/install/deps.go
index 5fecc5794e..fc0062cd75 100644
--- a/lib/install/deps.go
+++ b/lib/install/deps.go
@@ -208,9 +208,8 @@ func (inst *installCommand) RunCommand(prog string, args []string, stdin io.Read
"gnupg") // docker install recipe
}
switch {
- case osv.Debian && osv.Major >= 11:
- pkgs = append(pkgs, "g++", "libcurl4", "libcurl4-openssl-dev")
- case osv.Debian && osv.Major >= 10:
+ case osv.Debian && osv.Major >= 10,
+ osv.Ubuntu && osv.Major >= 22:
pkgs = append(pkgs, "g++", "libcurl4", "libcurl4-openssl-dev")
case osv.Debian || osv.Ubuntu:
pkgs = append(pkgs, "g++", "libcurl3", "libcurl3-openssl-dev")
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list