BUG #18293: Rocky 8 postgres install failing as nothing provides libarmadillo.so.10()(64bit)

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: chriswvandevelde(at)gmail(dot)com
Subject: BUG #18293: Rocky 8 postgres install failing as nothing provides libarmadillo.so.10()(64bit)
Date: 2024-01-15 10:19:22
Message-ID: 18293-67ca5e22e685efc1@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 18293
Logged by: Chris Van de Velde
Email address: chriswvandevelde(at)gmail(dot)com
PostgreSQL version: 13.13
Operating system: Rocky 8
Description:

Reported by multiply folks - we noticed our automated build (which is a more
complicated than the simple cases presented in the links below) was passing
CI 11 Jan and started failing 12 Jan only on both Rocky 8 bases we target
(ARM/x86) but Centos 7 (only target x86) unaffected.

====
FROM centos7 AS build7
FROM rockylinux:8 AS build8

FROM build(at)elVersion@

RUN yum clean metadata
RUN yum clean all
RUN rm -rf /var/cache/yum
RUN rpm -Va --nofiles --nodigest
RUN yum update -y && yum upgrade -y;
RUN yum install -y bzip2 epel-release git gpg tar wget yum-utils openssl gcc
make cpio findutils
# Note: yum-plugin-versionlock can be used to pin versions but it won't help
with what we pull manually via yumdownloader

RUN yum remove -y postgresql postgresql-libs
RUN yum install -y
https://download.postgresql.org/pub/repos/yum/common/redhat/rhel-8-x86_64/pgdg-redhat-repo-42.0-38PGDG.noarch.rpm

# Enable PowerTools repo to pull in PostGIS dependencies
RUN yum-config-manager --enable powertools;

# Disable built-in postgresql module for CentOS 8
RUN [[ "@elVersion@" != 8 ]] || dnf -qy module disable postgresql;

# Download all our packages
ENV DOWNLOAD_DIR /tmp/yum/download
RUN mkdir -p $DOWNLOAD_DIR && \
cd $DOWNLOAD_DIR && \
yumdownloader -y --resolve postgresql13-contrib-13.13
postgresql13-devel-13.13 postgresql13-plperl-13.13 postgresql-plpython
postgresql13-server-13.13 postgis31_13 postgis31_13-client pgaudit15_13
===

Also reported at
https://stackoverflow.com/questions/77811708/installation-of-postgis33-15-on-rocky-linux-8-fails
(for Postgres 15), and
https://www.postgresql.org/message-id/CAGX%2Bg7r0_UxeWVpfn4mz7-SgsmqX9gm8edq7GPx4Bmy2DhVQBA%40mail.gmail.com
(but posting here) - in all cases the underlying issue is the same:

#20 81.06 Problem: package postgis31_13-3.1.10-1PGDG.rhel8.x86_64 from
pgdg13 requires gdal36-libs >= 3.6.3, but none of the providers can be
installed
#20 81.06 - package postgis31_13-3.1.10-1PGDG.rhel8.x86_64 from pgdg13
requires libgdal.so.32()(64bit), but none of the providers can be
installed
#20 81.06 - conflicting requests
#20 81.06 - nothing provides libarmadillo.so.10()(64bit) needed by
gdal36-libs-3.6.4-4PGDG.rhel8.x86_64 from pgdg-common
#20 81.06 - nothing provides libarmadillo.so.10()(64bit) needed by
gdal36-libs-3.6.4-5PGDG.rhel8.x86_64 from pgdg-common

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message PG Bug reporting form 2024-01-15 10:30:45 BUG #18294: Manual savepoints do not work with JDBC param cleanupSavepoints=true
Previous Message Michael Paquier 2024-01-15 07:54:51 Re: BUG #18240: Undefined behaviour in cash_mul_flt8() and friends