SHA256
3
0
forked from pool/libtool
OBS User unknown 2008-09-23 22:03:14 +00:00 committed by Git OBS Bridge
parent a75ce58a64
commit fb089f6ce9
5 changed files with 83 additions and 23 deletions

View File

@ -1,4 +1,2 @@
libtool
libltdl-3
obsoletes "libltdl-<targettype> <= <version>"
provides "libltdl-<targettype> = <version>"
libltdl7

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1c35ae34fe85aa167bd7ab4bc9f477fe019138e1af62678d952fc43c0b7e2f09
size 2961939

3
libtool-2.2.6a.tar.lzma Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1d22960afeab230c9c380365ea8791b194109a5f9d5916a1e29c3d0bdaa9638a
size 733923

View File

@ -1,3 +1,29 @@
-------------------------------------------------------------------
Sun Sep 7 10:11:40 CEST 2008 - schwab@suse.de
- Update to libtool 2.2.6.
* New features:
- New lt_dloadvise_preload() call to set a hint that only preloadeded
modules can be opened.
- libtoolize no longer removes config.guess and config.sub, even when
--install is passed.
* Changes in supported systems or compilers:
- Fixes for ifort on Darwin, and newer Intel compilers (icc 10, ifort 9)
on GNU/Linux.
- Fixes for cwrapper (cygwin/mingw) under -stdc=c99.
- Support cross compile of MinGW with Wine.
- Initial support for cegcc (Windows CE/PocketPC) cross compilation.
- Initial support for lf95 (Lahey Fortran 8.1) on GNU/Linux.
* Bug fixes:
- Several testsuite issues have been fixed, thanks to user feedback.
- Fix 2.2 regression that caused argz symbols to be exported from
libltdl unrenamed on systems that do not have working argz.
- Revert "lt_dlopen(NULL) works on AIX again.". It was not the
correct fix.
- Diagnose '-L' arguments correctly.
- Libtool no longer tries to open devices as files in execute mode.
- Libtool no longer removes *.gcno profile information from GCC.
-------------------------------------------------------------------
Wed May 21 19:45:13 CEST 2008 - cthiel@suse.de

View File

@ -1,27 +1,35 @@
#
# spec file for package libtool (Version 1.5.26)
# spec file for package libtool (Version 2.2.6)
#
# Copyright (c) 2008 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.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: libtool
BuildRequires: lzma
License: GPL v2 or later
Group: Development/Tools/Building
Summary: A Tool to Build Shared Libraries
Version: 1.5.26
Release: 21
Version: 2.2.6
Release: 1
AutoReqProv: on
PreReq: %{install_info_prereq}
Requires: libltdl-3 = %{version}
Requires: libltdl7 = %{version}
Url: http://www.gnu.org/software/libtool/
Source: ftp://ftp.gnu.org/pub/gnu/libtool/libtool-%{version}.tar.gz
Source: ftp://ftp.gnu.org/pub/gnu/libtool/libtool-%{version}a.tar.lzma
#Patch: libtool-%{version}.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@ -40,15 +48,13 @@ Authors:
Robert Boehne <rboehne@ricardo-us.com>
Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
%package -n libltdl-3
%package -n libltdl7
License: GPL v2 or later
Summary: Libtool Runtime Library
Group: Development/Libraries/C and C++
AutoReqProv: on
Provides: libltdl
Obsoletes: libltdl <= 1.5.22
%description -n libltdl-3
%description -n libltdl7
Library needed by programs that use the ltdl interface of GNU libtool.
@ -65,12 +71,18 @@ Authors:
%prep
%setup -q
#%patch -p1
%build
./configure CFLAGS="$RPM_OPT_FLAGS" \
--prefix=/usr --infodir=%{_infodir} --libdir=%{_libdir}
make
make check VERBOSE=yes
make %{?jobs:-j %jobs}
%check
trap 'test $? -ne 0 && cat tests/testsuite.log' EXIT
# Avoid spurious testsuite failures due to messages from icecream
PATH=/usr/bin:$PATH
make check
%install
make install DESTDIR=$RPM_BUILD_ROOT
@ -81,9 +93,9 @@ make install DESTDIR=$RPM_BUILD_ROOT
%postun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/libtool.info.gz
%post -n libltdl-3 -p /sbin/ldconfig
%post -n libltdl7 -p /sbin/ldconfig
%postun -n libltdl-3 -p /sbin/ldconfig
%postun -n libltdl7 -p /sbin/ldconfig
%clean
rm -rf $RPM_BUILD_ROOT
@ -93,6 +105,7 @@ rm -rf $RPM_BUILD_ROOT
%doc AUTHORS NEWS README THANKS ChangeLog
/usr/bin/libtool
/usr/bin/libtoolize
/usr/include/libltdl
/usr/include/ltdl.h
%{_libdir}/libltdl.a
%attr(644, root, root) %{_libdir}/libltdl.la
@ -101,11 +114,34 @@ rm -rf $RPM_BUILD_ROOT
%doc %{_infodir}/libtool.info*
/usr/share/libtool
%files -n libltdl-3
%files -n libltdl7
%defattr(-, root, root)
%{_libdir}/libltdl.so.*
%changelog
* Sun Sep 07 2008 schwab@suse.de
- Update to libtool 2.2.6.
* New features:
- New lt_dloadvise_preload() call to set a hint that only preloadeded
modules can be opened.
- libtoolize no longer removes config.guess and config.sub, even when
--install is passed.
* Changes in supported systems or compilers:
- Fixes for ifort on Darwin, and newer Intel compilers (icc 10, ifort 9)
on GNU/Linux.
- Fixes for cwrapper (cygwin/mingw) under -stdc=c99.
- Support cross compile of MinGW with Wine.
- Initial support for cegcc (Windows CE/PocketPC) cross compilation.
- Initial support for lf95 (Lahey Fortran 8.1) on GNU/Linux.
* Bug fixes:
- Several testsuite issues have been fixed, thanks to user feedback.
- Fix 2.2 regression that caused argz symbols to be exported from
libltdl unrenamed on systems that do not have working argz.
- Revert "lt_dlopen(NULL) works on AIX again.". It was not the
correct fix.
- Diagnose '-L' arguments correctly.
- Libtool no longer tries to open devices as files in execute mode.
- Libtool no longer removes *.gcno profile information from GCC.
* Wed May 21 2008 cthiel@suse.de
- fix baselibs.conf
* Thu Apr 10 2008 ro@suse.de