Re: centos7, llvm and postgresql12-devel dependencies

Поиск
Список
Период
Сортировка
От Justin Pryzby
Тема Re: centos7, llvm and postgresql12-devel dependencies
Дата
Msg-id 20200514195726.GA19457@telsasoft.com
обсуждение исходный текст
Ответ на centos7, llvm and postgresql12-devel dependencies  (Justin Pryzby <pryzby@telsasoft.com>)
Ответы Re: centos7, llvm and postgresql12-devel dependencies  (Devrim Gündüz <devrim@gunduz.org>)
Re: centos7, llvm and postgresql12-devel dependencies  (Justin Pryzby <pryzby@telsasoft.com>)
Re: centos7, llvm and postgresql12-devel dependencies  (Justin Pryzby <pryzby@telsasoft.com>)
Список pgsql-pkg-yum
On Thu, May 14, 2020 at 09:13:26AM -0500, Justin Pryzby wrote:
> Fails like:
> 
> Error: Package: postgresql12-devel-12.3-1PGDG.rhel7.x86_64 (pgdg12)
>            Requires: llvm-toolset-7-clang >= 4.0.1

I'm not sure the reason or the details of the build process, but this kind of
thing has happened before, and I suggested that the build process should check
that the built packages are installable.  Is that possible ?

For now, I threw this together.  On C7 it shows:

$ cat yumpg-deps2
#! /bin/sh
set -e

x=`yum list |grep pgdg12`
x=`echo "$x" |awk '{print $1}'`
for a in $x
do
        y=`yum deplist "$a"`
        z=`echo "$y" |grep -FwB1 'Unsatisfied dependency'` &&
                echo "$a" && echo "$z" |sed q
done

sh yumpg-deps2
postgis30_12.x86_64
  dependency: geos38 >= 3.8.1
   Unsatisfied dependency
--
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
--
  dependency: proj70 >= 7.0.1
   Unsatisfied dependency
--
  dependency: geos38 >= 3.8.1
   Unsatisfied dependency
--
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
--
  dependency: proj70 >= 7.0.1
   Unsatisfied dependency
postgis30_12-client.x86_64
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
--
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
postgresql12-devel.x86_64
  dependency: llvm-toolset-7-clang >= 4.0.1
   Unsatisfied dependency
--
  dependency: llvm-toolset-7-clang >= 4.0.1
   Unsatisfied dependency
postgis25_12.x86_64
  dependency: geos38 >= 3.8.1
   Unsatisfied dependency
--
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
--
  dependency: proj70 >= 7.0.1
   Unsatisfied dependency
--
  dependency: geos38 >= 3.8.1
   Unsatisfied dependency
--
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
--
  dependency: proj70 >= 7.0.1
   Unsatisfied dependency
postgis25_12-client.x86_64
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
--
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
postgis30_12.x86_64
  dependency: geos38 >= 3.8.1
   Unsatisfied dependency
--
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
--
  dependency: proj70 >= 7.0.1
   Unsatisfied dependency
--
  dependency: geos38 >= 3.8.1
   Unsatisfied dependency
--
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
--
  dependency: proj70 >= 7.0.1
   Unsatisfied dependency
postgis30_12-client.x86_64
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
--
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
postgis30_12-gui.x86_64
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
--
  dependency: libproj.so.19()(64bit)
   Unsatisfied dependency
postgresql12-devel.x86_64
  dependency: llvm-toolset-7-clang >= 4.0.1
   Unsatisfied dependency
--
  dependency: llvm-toolset-7-clang >= 4.0.1
   Unsatisfied dependency
powa_12-web.x86_64
  dependency: python3-sqlalchemy
   Unsatisfied dependency
  dependency: python3-tornado >= 2.0
   Unsatisfied dependency
--
  dependency: python3-sqlalchemy
   Unsatisfied dependency
  dependency: python3-tornado >= 2.0
   Unsatisfied dependen

-- 
Justin



В списке pgsql-pkg-yum по дате отправления:

Предыдущее
От: Slava Bendersky
Дата:
Сообщение: recovery_1st_stage bug
Следующее
От: Devrim Gündüz
Дата:
Сообщение: Re: centos7, llvm and postgresql12-devel dependencies