[Bug 235372] New: evms development .so symlink is duplicated
https://bugzilla.novell.com/show_bug.cgi?id=235372 Summary: evms development .so symlink is duplicated Product: openSUSE 10.3 Version: unspecified Platform: All OS/Version: All Status: NEW Severity: Minor Priority: P5 - None Component: Basesystem AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: andreas.hanke@gmx-topmail.de QAContact: qa@suse.de libevms.so is packaged twice: /lib/libevms.so /usr/lib/libevms.so The spec file contains code to explicitly provide the symlink in /usr/lib in addition to the one in /lib. This is slightly incorrect, the one in /usr/lib should be provided *instead* of the one in /lib. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=235372 chrubis@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|bnc-team- |cgao@novell.com |screening@forge.provo.novell| |.com | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=235372 ------- Comment #1 from andreas.hanke@gmx-topmail.de 2007-01-16 06:56 MST ------- Created an attachment (id=113121) --> (https://bugzilla.novell.com/attachment.cgi?id=113121&action=view) Proposed solution Also fixes the bug that the package doesn't update the linker cache in the installed system. (Doing this during the build is not sufficient) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=235372 cgao@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Comment #2 from cgao@novell.com 2007-01-16 09:40 MST ------- Checked in. Hello , This is just FYI. Your package was checked in in distribution "stable" by autobuild-member: ro. Here comes the log... ---------------------------%<------------------------------ Hi, here is the log from ci_new_pac /mounts/work_src_done/STABLE/evms -> stable Packages directly triggered for rebuild: - evms (cgao@novell.com) - installation-images (snwint@suse.de) - skelcd-driverupdate (jsrain@suse.cz) - yast2-build-test (jsrain@suse.cz) - yast2-schema (mvidner@suse.cz) - yast2-storage (fehr@suse.de) - yast2-trans-stats (ke@suse.de) maintainers: fehr@suse.de, jsrain@suse.cz, ke@suse.de, mvidner@suse.cz, snwint@suse.de ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/all/evms (Old) and /mounts/work_src_done/STABLE/evms (New) !! Attention !! stable is NOT ($LAST_RELEASED) !!! even SLES/SLED10 have been branched, so there needs to be an extra check-in for SLE-10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "evms", Maintainer is "cgao@novell.com" Changes: -------- --- /work/SRC/all/evms/evms.changes 2006-12-13 00:46:25.000000000 +0100 +++ /mounts/work_src_done/STABLE/evms/evms.changes 2007-01-16 17:18:43.000000000 +0100 @@ -1,0 +2,6 @@ +Tue Jan 16 09:16:34 MST 2007 - cgao@novell.com + +- sorted out the shared libraries and linker cache +- #235372 + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ evms.spec ++++++ --- /var/tmp/diff_new_pack.k20077/_old 2007-01-16 17:23:50.000000000 +0100 +++ /var/tmp/diff_new_pack.k20077/_new 2007-01-16 17:23:50.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package evms (Version 2.5.5) # -# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # @@ -21,7 +21,7 @@ %endif Autoreqprov: on Version: 2.5.5 -Release: 70 +Release: 85 Summary: EVMS--Enterprise Volume Management System BuildRoot: %{_tmppath}/%{name}-%{version}-build Source: http://prdownloads.sourceforge.net/evms/evms-%{version}.tar.bz2 @@ -161,16 +161,19 @@ rm -f $RPM_BUILD_ROOT/usr/share/locale/en@*quot/LC_MESSAGES/evms.mo mkdir $RPM_BUILD_ROOT/%_libdir mv $RPM_BUILD_ROOT/%_lib/lib*.a $RPM_BUILD_ROOT/%_libdir -ln -sf ../../%_lib/libevms.so $RPM_BUILD_ROOT/%_libdir/libevms.so +rm -f $RPM_BUILD_ROOT/%_lib/lib*.so +(cd $RPM_BUILD_ROOT/%_libdir && ln -sf ../../%{_lib}/libevms-*.so.? libevms.so) %clean rm -rf $RPM_BUILD_ROOT %post +/sbin/ldconfig rm -f /etc/sysconf/evms %{fillup_and_insserv -f evms} %postun +/sbin/ldconfig %{insserv_cleanup} %files @@ -179,7 +182,7 @@ %config /etc/evms.conf %config /etc/init.d/boot.evms %config /etc/init.d/evms -/%_lib/lib*.so* +/%_lib/lib*.so.* /%_libdir/lib*.so /%_libdir/lib*.a %dir /%_lib/evms @@ -208,6 +211,9 @@ /etc/ha.d/resource.d/evms_failover %changelog -n evms +* Tue Jan 16 2007 - cgao@novell.com +- sorted out the shared libraries and linker cache +- #235372 * Tue Dec 12 2006 - cgao@novell.com - Fixed all instance of strncat, which broke the build * Thu Dec 07 2006 - cgao@novell.com ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Description: ------------ ----------------evms------------------------------ Maintainer: cgao@novell.com Tutor: Authornameemail: Kevin Corry <corryk@us.ibm.com> Joy Yokley Goodreau <joyg@us.ibm.com> :Liameemanrohtua RPMGroup: System/Base English: Label: EVMS--Enterprise Volume Management System Notify: :Yfiton Delnotify: :Yfitonled Description: This package contains the userspace tools needed to manage EVMS (Enterprise Volume Management System) volumes. See the EVMS-HOWTO in /usr/share/doc/packages/EVMS for detailed instructions on patching your kernel with EVMS and using the tools after installation. :Noitpircsed :Hsilgne ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ continue with "q"... Checked in at Tue Jan 16 17:24:28 CET 2007 by ro Remember to have fun... -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=235372 cgao@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
participants (1)
-
bugzilla_noreply@novell.com