Accepting request 133450 from devel:languages:misc

Fix having dangling symlinks.. we do require the libs in a decent enough version (forwarded request 133449 from dimstar)

OBS-URL: https://build.opensuse.org/request/show/133450
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/guile1?expand=0&rev=6
This commit is contained in:
Stephan Kulow
2012-09-11 07:07:07 +00:00
committed by Git OBS Bridge
2 changed files with 16 additions and 0 deletions

View File

@@ -1,3 +1,12 @@
-------------------------------------------------------------------
Mon Sep 10 09:58:35 UTC 2012 - dimstar@opensuse.org
- Reauire the library packages from the main package: having the
*.so symlinks in the main package forces us to install the libs
as well, or we end up with dangling symlinks (thus, failing to
actually dlopen the .so file, which was the main reason to move
them to the main package. Fixes issues like bnc#779458).
-------------------------------------------------------------------
Tue Jul 31 09:47:20 UTC 2012 - pgajdos@suse.com

View File

@@ -43,6 +43,13 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: fileutils sh-utils
PreReq: %install_info_prereq
Conflicts: slib < 3a5
# Require the library packages, at least current version. The *.so symlinks are in the main package (due to dlopen(), so without the requires, it would be dangling symlinks.
Requires: libguile-srfi-srfi-1-v-3-3 >= %{version}
Requires: libguile-srfi-srfi-13-14-v-3-3 >= %{version}
Requires: libguile-srfi-srfi-4-v-3-3 >= %{version}
Requires: libguile-srfi-srfi-60-v-2-2 >= %{version}
Requires: libguile17 >= %{version}
Requires: libguilereadline-v-17-17 >= %{version}
%description
This is Guile, a portable, embeddable Scheme implementation written in