Accepting request 263441 from home:mathletic:branches:Base:System

update to libtool release 2.4.4

OBS-URL: https://build.opensuse.org/request/show/263441
OBS-URL: https://build.opensuse.org/package/show/Base:System/libtool?expand=0&rev=62
This commit is contained in:
Marcus Meissner 2014-12-03 12:35:49 +00:00 committed by Git OBS Bridge
parent 3675298a88
commit ffac2111b8
7 changed files with 114 additions and 27 deletions

View File

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

3
libtool-2.4.4.tar.gz Normal file
View File

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

View File

@ -1,18 +0,0 @@
* libtoolize.in (func_require_seen_libtool): Do not remove snippet/* files
which are from Gnulib.
Signed-off-by: Gary V. Vaughan <gary@gnu.org>
--- libtool-2.4.3/libtoolize.in 2014-10-27 18:20:51.000000000 +0100
+++ libtool/libtoolize.in 2014-11-02 11:53:20.000000000 +0100
@@ -1896,8 +1896,8 @@
# ensure a clean upgrade.
# Do not remove config.guess, config.sub or install-sh, we don't
# install them without --install, and the project may not be using
- # Automake.
- all_pkgaux_files="compile depcomp missing ltmain.sh snippet/_Noreturn.h snippet/arg-nonnull.h snippet/c++defs.h snippet/warn-on-use.h"
+ # Automake. Similarly, do not remove Gnulib files.
+ all_pkgaux_files="compile depcomp missing ltmain.sh"
all_pkgmacro_files="argz.m4 libtool.m4 ltdl.m4 ltoptions.m4 ltsugar.m4 ltversion.in ltversion.m4 lt~obsolete.m4"
all_pkgltdl_files="COPYING.LIB Makefile Makefile.in Makefile.inc Makefile.am README acinclude.m4 aclocal.m4 argz_.h argz.c config.h.in config-h.in configure configure.ac configure.in libltdl/lt__alloc.h libltdl/lt__dirent.h libltdl/lt__glibc.h libltdl/lt__private.h libltdl/lt__strl.h libltdl/lt_dlloader.h libltdl/lt_error.h libltdl/lt_system.h libltdl/slist.h loaders/dld_link.c loaders/dlopen.c loaders/dyld.c loaders/load_add_on.c loaders/loadlibrary.c loaders/preopen.c loaders/shl_load.c lt__alloc.c lt__dirent.c lt__strl.c lt_dlloader.c lt_error.c ltdl.c ltdl.h ltdl.mk slist.c"

View File

@ -1,3 +1,55 @@
-------------------------------------------------------------------
Sat Nov 29 19:55:26 UTC 2014 - foss@grueninger.de
- Drop patch libtool-dont_delete_gnulib_files.patch which is
included in 2.4.4
- Update to libtool 2.4.4
** New features:
- Libltdl maintains its own fork of argz, with macros and files in
the LT_ and lt__ namespaces (resp.) where they cannot clash with
client projects' use of gnulib argz.
** Bug fixes:
- Installation of 'libtoolize' once again obeys '--program-prefix',
'--program-suffix' and '--program-transform-name' configure options.
- `libtoolize` doesn't remove any files that it can't reinstall,
including old versions of the snippet directory, and gnulib's
version of the argz module and supporting files.
- LT_FUNC_DLYSM_USCORE now works correctly on systems that don't
support self dlopen()ing.
** Important incompatible changes:
- LT_LIB_DLLOAD no longer prepends -ldl or -ldld to LIBS, causing
duplicate occurrences in libltdl link lines. If you need to
add a library for dlopen() or shl_load() in your Makefile, then
use $(LIBADD_DLOPEN) or $(LIBADD_SHL_LOAD) respectively. If you
are using libltdl, this all happens automatically, and the only
difference you'll see is no more duplicated library names in the
verbose link line.
** Changes in supported systems or compilers:
- Preliminary support for tcc on linux*. Although it already worked
sometimes in previous releases, making sure to set LD correctly now
avoids mis-matching GNU ld with tcc:
./configure CC=tcc LD=tcc
- Added -os2dllname option to work around 8 character base name
limit on OS/2. The option has no effect on other systems.
- Support for DLL versioning, -export-symbols and -export-symbols-regex
on OS/2.
- Support filename-based shared library versioning on AIX. See manual
for details.
-------------------------------------------------------------------
Fri Nov 21 11:00:57 CET 2014 - pth@suse.de

View File

@ -34,7 +34,7 @@ Requires: tar
Summary: A Tool to Build Shared Libraries
License: GPL-2.0+ and LGPL-2.1+ and GFDL-1.2+
Group: Development/Tools/Building
Version: 2.4.3
Version: 2.4.4
Release: 0
# bug437293
%ifarch ppc64
@ -47,7 +47,6 @@ Url: http://www.gnu.org/software/libtool/
Source: http://ftp.gnu.org/gnu/libtool/libtool-%{version}.tar.gz
Source2: baselibs.conf
Source3: libtool-rpmlintrc
Patch0: libtool-dont_delete_gnulib_files.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Provides: libltdl-devel
# fedora name
@ -67,7 +66,6 @@ Library needed by programs that use the ltdl interface of GNU libtool.
%prep
%setup -q -n libtool-%{version}
%patch0 -p1
%build
./configure CFLAGS="%{optflags}" \

View File

@ -1,3 +1,60 @@
-------------------------------------------------------------------
Sat Nov 29 19:48:44 UTC 2014 - foss@grueninger.de
- Drop patch libtool-dont_delete_gnulib_files.patch which is
included in 2.4.4
- Update to libtool 2.4.4
** New features:
- Libltdl maintains its own fork of argz, with macros and files in
the LT_ and lt__ namespaces (resp.) where they cannot clash with
client projects' use of gnulib argz.
** Bug fixes:
- Installation of 'libtoolize' once again obeys '--program-prefix',
'--program-suffix' and '--program-transform-name' configure options.
- `libtoolize` doesn't remove any files that it can't reinstall,
including old versions of the snippet directory, and gnulib's
version of the argz module and supporting files.
- LT_FUNC_DLYSM_USCORE now works correctly on systems that don't
support self dlopen()ing.
** Important incompatible changes:
- LT_LIB_DLLOAD no longer prepends -ldl or -ldld to LIBS, causing
duplicate occurrences in libltdl link lines. If you need to
add a library for dlopen() or shl_load() in your Makefile, then
use $(LIBADD_DLOPEN) or $(LIBADD_SHL_LOAD) respectively. If you
are using libltdl, this all happens automatically, and the only
difference you'll see is no more duplicated library names in the
verbose link line.
** Changes in supported systems or compilers:
- Preliminary support for tcc on linux*. Although it already worked
sometimes in previous releases, making sure to set LD correctly now
avoids mis-matching GNU ld with tcc:
./configure CC=tcc LD=tcc
- Added -os2dllname option to work around 8 character base name
limit on OS/2. The option has no effect on other systems.
- Support for DLL versioning, -export-symbols and -export-symbols-regex
on OS/2.
- Support filename-based shared library versioning on AIX. See manual
for details.
-------------------------------------------------------------------
Sat Nov 29 19:48:09 UTC 2014 - foss@grueninger.de
-
-------------------------------------------------------------------
Fri Nov 21 11:00:57 CET 2014 - pth@suse.de

View File

@ -34,7 +34,7 @@ Requires: tar
Summary: A Tool to Build Shared Libraries
License: GPL-2.0+ and LGPL-2.1+ and GFDL-1.2+
Group: Development/Tools/Building
Version: 2.4.3
Version: 2.4.4
Release: 0
# bug437293
%ifarch ppc64
@ -47,7 +47,6 @@ Url: http://www.gnu.org/software/libtool/
Source: http://ftp.gnu.org/gnu/libtool/libtool-%{version}.tar.gz
Source2: baselibs.conf
Source3: libtool-rpmlintrc
Patch0: libtool-dont_delete_gnulib_files.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Provides: libltdl-devel
# fedora name
@ -67,7 +66,6 @@ Library needed by programs that use the ltdl interface of GNU libtool.
%prep
%setup -q -n libtool-%{version}
%patch0 -p1
%build
./configure CFLAGS="%{optflags}" \