7 Commits

Author SHA256 Message Date
54bfc87485 Delete empty line 2025-05-19 11:57:20 +02:00
ad7083d434 libabigail 2.7 2025-05-16 10:53:23 +02:00
495f65d966 Use explicit -j1 for Sphinx doc
Keep using %make_build, in case there are other flags of interest in the
macro, and use an explicit -j1 marker at the end instead.
2025-04-04 14:28:08 +02:00
Bernhard M. Wiedemann
9529be6860 Workaround Sphinx race 2025-04-03 19:10:49 +02:00
Dirk Müller
680284b59c update to 2.6.0 2025-03-30 13:21:25 +02:00
ef87c769ac Enable CTF frontend 2024-08-28 10:35:00 +02:00
d0388edf1d libabigail 2.5 2024-08-28 10:19:50 +02:00
5 changed files with 57 additions and 74 deletions

BIN
libabigail-2.4.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
libabigail-2.7.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,44 @@
-------------------------------------------------------------------
Fri May 16 08:36:19 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
- Update to release 2.7
* abipkgdiff: Add new --verbose-diff option
* Add support for reading XZ-compressed files
* Normalize declaration names read from DWARF
* Fix a case of pointer to void* change filtering
-------------------------------------------------------------------
Thu Apr 3 17:09:26 UTC 2025 - Bernhard Wiedemann <bwiedemann@suse.com>
- Workaround Sphinx race condition (boo#1102408)
-------------------------------------------------------------------
Sun Mar 30 08:48:35 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 2.6:
* Use type hashing during type canonicalization. This speeds up
a number of pathological test cases.
* Improve Linux Kernel & Modules comparison using CTF and BTF
debug information format.
* Better support of some LLVM-specific DWARF lingo.
-------------------------------------------------------------------
Wed Aug 28 08:08:49 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
- Update to release 2.5
* Resolve SIGABRT when setting TUs for unique types [#31045]
* Add support for pointer-to-member types [#30260]
* abidw: resolve SIGABRT involving removed member declarations
[#31236]
* Resolve SIGABRT involving opaque types [#31279]
* abidiff: stop complaining about data members moving to base
class [#31513]
* Support fn symbol aliasing a var symbol [#29160]
* Fix type suppression tactics for webkit2gtk3 [#31646]
- Drop no-tests.diff (this is from a time when the source package
was re-constructed via pre_checkin.sh/_service)
- Enable CTF frontend
-------------------------------------------------------------------
Mon Oct 30 04:38:53 UTC 2023 - Jan Engelhardt <jengelh@inai.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package libabigail
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,19 +16,17 @@
#
%define lname libabigail6
Name: libabigail
%define lname libabigail3
Version: 2.4
Version: 2.7
Release: 0
Summary: Application Binary Interface Generic Analysis and Instrumentation Library
License: GPL-3.0-or-later AND LGPL-2.0-or-later AND LGPL-3.0-or-later
License: Apache-2.0 WITH LLVM-exception
Group: Development/Libraries/C and C++
#Git-Clone: git://sourceware.org/git/libabigail.git
URL: https://sourceware.org/libabigail/
Source: http://mirrors.kernel.org/sourceware/libabigail/%name-%version.tar.xz
Patch1: no-tests.diff
BuildRequires: autoconf >= 2.63
BuildRequires: automake >= 1.11.1
BuildRequires: binutils-devel
BuildRequires: dpkg
BuildRequires: gcc-c++ >= 4.7
BuildRequires: libbpf-devel
@@ -40,6 +38,7 @@ BuildRequires: pkg-config
BuildRequires: python3-Sphinx
BuildRequires: xz
BuildRequires: pkgconfig(libxml-2.0) >= 2.6.22
BuildRequires: pkgconfig(libxxhash) >= 0.8.0
BuildRequires: pkgconfig(libzip) >= 0.10
%description
@@ -49,7 +48,6 @@ artifacts, such as types, variable, fonctions and declarations
%package -n %lname
Summary: Application Binary Interface Generic Analysis and Instrumentation Library
License: LGPL-3.0-or-later
Group: System/Libraries
%description -n %lname
@@ -62,7 +60,6 @@ interesting conclusions about these differences.
%package devel
Summary: Development files for the ABI-relevant artifact library
License: LGPL-3.0-or-later
Group: Development/Libraries/C and C++
Requires: %lname = %version
@@ -77,7 +74,6 @@ This subpackage contains the files needed to build programs with ABIGAIL.
%package tools
Summary: Utilities to inspect ABI-relevant artifacts
License: LGPL-3.0-or-later
Group: Development/Tools/Other
%description tools
@@ -92,13 +88,13 @@ interesting conclusions about these differences.
%autosetup -p1
%build
autoreconf -fiv
# includedir intentional, cf. bugzilla.opensuse.org/795968
%configure --includedir="%_includedir/%name" --docdir="%_docdir/%name" \
--disable-static --enable-cxx11 --disable-silent-rules
%make_build
pushd doc/manuals
make man info
# generate doc non-parallel to avoid triggering https://github.com/sphinx-doc/sphinx/issues/2946
%make_build man info -j1
popd
%install
@@ -109,25 +105,24 @@ pushd doc/manuals
make DESTDIR="%buildroot" install-man-and-info-doc
popd
%post -n %lname -p /sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%ldconfig_scriptlets -n %lname
%files -n %lname
%_libdir/libabigail.so.3*
%_libdir/libabigail.so.*
%files devel
%_includedir/%name/
%_libdir/libabigail.so
%_libdir/pkgconfig/*.pc
%_datadir/aclocal/
%_mandir/man7/libabigail.7.gz
%_mandir/man7/libabigail.7*
%files tools
%license LICENSE.txt
%_bindir/abi*
%_bindir/kmidiff
%_mandir/man1/abi*.1*
%_infodir/abigail.info.gz
%_infodir/abigail.info*
%_libdir/%name/
%changelog

View File

@@ -1,53 +0,0 @@
build: trim calls into test/
The tests need quite some time to run (they are also really really
large) they should be a separate package in openSUSE.
The main package remains small and has no test/ directory, so patch
the build files not to try to recurse into there.
---
Makefile.am | 2 +-
configure.ac | 16 ----------------
2 files changed, 1 insertion(+), 17 deletions(-)
Index: libabigail-2.0/Makefile.am
===================================================================
--- libabigail-2.0.orig/Makefile.am
+++ libabigail-2.0/Makefile.am
@@ -1,5 +1,5 @@
## SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-SUBDIRS = include src tools tests doc bash-completion
+SUBDIRS = include src tools doc bash-completion
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
headers = config.h
Index: libabigail-2.0/configure.ac
===================================================================
--- libabigail-2.0.orig/configure.ac
+++ libabigail-2.0/configure.ac
@@ -888,25 +888,9 @@ libabigail.pc
doc/manuals/Makefile
src/Makefile
tools/Makefile
- tests/Makefile
- tests/data/Makefile
bash-completion/Makefile])
dnl Some test scripts are generated by autofoo.
-AC_CONFIG_FILES([tests/runtestcanonicalizetypes.sh],
- [chmod +x tests/runtestcanonicalizetypes.sh])
- AC_CONFIG_FILES([tests/runtestslowselfcompare.sh],
- [chmod +x tests/runtestslowselfcompare.sh])
-AC_CONFIG_FILES([tests/mockfedabipkgdiff],
- [chmod +x tests/mockfedabipkgdiff])
-AC_CONFIG_FILES([tests/runtestfedabipkgdiff.py],
- [chmod +x tests/runtestfedabipkgdiff.py])
-AC_CONFIG_FILES([tests/runtestfedabipkgdiffpy3.sh],
- [chmod +x tests/runtestfedabipkgdiffpy3.sh])
-AC_CONFIG_FILES([tests/runtestdefaultsupprs.py],
- [chmod +x tests/runtestdefaultsupprs.py])
-AC_CONFIG_FILES([tests/runtestdefaultsupprspy3.sh],
- [chmod +x tests/runtestdefaultsupprspy3.sh])
AC_OUTPUT