Compare commits
No commits in common. "c9s" and "c8" have entirely different histories.
44
.gitignore
vendored
44
.gitignore
vendored
@ -1,43 +1 @@
|
|||||||
/libabigail-1.0.tar.gz
|
SOURCES/libabigail-1.4.tar.gz
|
||||||
/libabigail-1.0-git-616d9af.tar.gz
|
|
||||||
/libabigail-1.0-git-088f077.tar.gz
|
|
||||||
/libabigail-1.0-git-43c06a8.tar.gz
|
|
||||||
/libabigail-0.1-git-43c06a8.tar.gz
|
|
||||||
/libabigail-1.0-git-ab1316b.tar.gz
|
|
||||||
/libabigail-1.0-git-f0d319a.tar.gz
|
|
||||||
/libabigail-1.0-git-a89b0d0.tar.gz
|
|
||||||
/libabigail-1.0-git-164d17e.tar.gz
|
|
||||||
/libabigail-1.0.rc0.tar.gz
|
|
||||||
/libabigail-1.0.rc1.tar.gz
|
|
||||||
/enum-value-wide-precision-on-32-bits-machine-patch.txt
|
|
||||||
/libabigail-1.0.rc2.tar.gz
|
|
||||||
/libabigail-1.0.rc3.tar.gz
|
|
||||||
/fix-test-diff-pkg-patch.txt
|
|
||||||
/libabigail-1.0.rc4.tar.gz
|
|
||||||
/0001-Bug-19961-Distinguish-between-PI-executable-and-shar.patch
|
|
||||||
/0002-Bug-19964-Cannot-load-function-aliases-on-ppc64.patch
|
|
||||||
/libabigail-1.0.rc5.tar.gz
|
|
||||||
/libabigail-1.0.rc6.tar.gz
|
|
||||||
/0001-A-suppressed-diff-node-implies-suppressing-all-equiv.patch
|
|
||||||
/0001-Bug-20927-Segfault-when-HOME-is-not-set.patch
|
|
||||||
/0001-Fix-aborting-when-reading-.foo-symbols-from-a-ppc64-.patch
|
|
||||||
/libabigail-1.1.tar.gz
|
|
||||||
/libabigail-1.2.tar.gz
|
|
||||||
/libabigail-1.3.tar.gz
|
|
||||||
/libabigail-1.4.tar.gz
|
|
||||||
/libabigail-1.5.tar.gz
|
|
||||||
/Support-having-several-debuginfo-search-dirs-for-a-b.patch
|
|
||||||
/Add-a-fail-no-debug-info-to-abidiff.patch
|
|
||||||
/libabigail-1.6.tar.gz
|
|
||||||
/libabigail-1.7.tar.gz
|
|
||||||
/libabigail-1.8.tar.gz
|
|
||||||
/libabigail-1.8.1.tar.gz
|
|
||||||
/libabigail-1.8.2.tar.gz
|
|
||||||
/libabigail-2.1.tar.gz
|
|
||||||
/libabigail-2.2.tar.xz
|
|
||||||
/libabigail-2.3.tar.xz
|
|
||||||
/libabigail-2.4.tar.xz
|
|
||||||
/0001-Bug-31045-Don-t-try-setting-translation-unit-for-uni.patch
|
|
||||||
/0002-suppression-Add-has_strict_flexible_array_data_membe.patch
|
|
||||||
/libabigail-2.5.tar.xz
|
|
||||||
/libabigail-2.6.tar.xz
|
|
||||||
|
1
.libabigail.metadata
Normal file
1
.libabigail.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
9754cb44e7a0370d8b5fd7d0f0bb0d86a3cbd1ac SOURCES/libabigail-1.4.tar.gz
|
304
SOURCES/enable-python-when-no-fedabipkgdiff-is-defined.patch.txt
Normal file
304
SOURCES/enable-python-when-no-fedabipkgdiff-is-defined.patch.txt
Normal file
@ -0,0 +1,304 @@
|
|||||||
|
--- configure 2018-07-16 15:40:30.788374759 +0200
|
||||||
|
+++ configure.new 2018-07-16 15:40:41.395415652 +0200
|
||||||
|
@@ -668,10 +668,10 @@
|
||||||
|
ENABLE_RUNNING_TESTS_WITH_PY3_TRUE
|
||||||
|
ENABLE_FEDABIPKGDIFF_FALSE
|
||||||
|
ENABLE_FEDABIPKGDIFF_TRUE
|
||||||
|
+WGET
|
||||||
|
PYTHON3_INTERPRETER
|
||||||
|
PYTHON_VERSION
|
||||||
|
PYTHON
|
||||||
|
-WGET
|
||||||
|
ENABLE_BASH_COMPLETION_FALSE
|
||||||
|
ENABLE_BASH_COMPLETION_TRUE
|
||||||
|
HAS_BASH_COMPLETION
|
||||||
|
@@ -16891,82 +16891,11 @@
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
+# The minimal python 2 version we want to support is 2.6.6 because EL6
|
||||||
|
+# distributions have that version installed.
|
||||||
|
+MINIMAL_PYTHON2_VERSION="2.6.6"
|
||||||
|
|
||||||
|
-if test x$ENABLE_FEDABIPKGDIFF = xauto -o x$ENABLE_FEDABIPKGDIFF = xyes; then
|
||||||
|
- CHECK_DEPS_FOR_FEDABIPKGDIFF=yes
|
||||||
|
-else
|
||||||
|
- CHECK_DEPS_FOR_FEDABIPKGDIFF=no
|
||||||
|
-fi
|
||||||
|
-
|
||||||
|
-if test x$CHECK_DEPS_FOR_FEDABIPKGDIFF = xyes; then
|
||||||
|
- MISSING_FEDABIPKGDIFF_DEP=no
|
||||||
|
-
|
||||||
|
- if test x$ENABLE_FEDABIPKGDIFF = xyes; then
|
||||||
|
- MISSING_FEDABIPKGDIFF_DEP_FATAL=yes
|
||||||
|
- else
|
||||||
|
- MISSING_FEDABIPKGDIFF_DEP_FATAL=no
|
||||||
|
- fi
|
||||||
|
-
|
||||||
|
- # Extract the first word of "wget", so it can be a program name with args.
|
||||||
|
-set dummy wget; ac_word=$2
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||||
|
-$as_echo_n "checking for $ac_word... " >&6; }
|
||||||
|
-if ${ac_cv_path_WGET+:} false; then :
|
||||||
|
- $as_echo_n "(cached) " >&6
|
||||||
|
-else
|
||||||
|
- case $WGET in
|
||||||
|
- [\\/]* | ?:[\\/]*)
|
||||||
|
- ac_cv_path_WGET="$WGET" # Let the user override the test with a path.
|
||||||
|
- ;;
|
||||||
|
- *)
|
||||||
|
- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||||
|
-for as_dir in $PATH
|
||||||
|
-do
|
||||||
|
- IFS=$as_save_IFS
|
||||||
|
- test -z "$as_dir" && as_dir=.
|
||||||
|
- for ac_exec_ext in '' $ac_executable_extensions; do
|
||||||
|
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||||
|
- ac_cv_path_WGET="$as_dir/$ac_word$ac_exec_ext"
|
||||||
|
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||||
|
- break 2
|
||||||
|
- fi
|
||||||
|
-done
|
||||||
|
- done
|
||||||
|
-IFS=$as_save_IFS
|
||||||
|
-
|
||||||
|
- test -z "$ac_cv_path_WGET" && ac_cv_path_WGET="no"
|
||||||
|
- ;;
|
||||||
|
-esac
|
||||||
|
-fi
|
||||||
|
-WGET=$ac_cv_path_WGET
|
||||||
|
-if test -n "$WGET"; then
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WGET" >&5
|
||||||
|
-$as_echo "$WGET" >&6; }
|
||||||
|
-else
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
-$as_echo "no" >&6; }
|
||||||
|
-fi
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- if test x$WGET = xno; then
|
||||||
|
- ENABLE_FEDABIPKGDIFF=no
|
||||||
|
- if test x$MISSING_FEDABIPKGDIFF_DEP_FATAL = xyes; then
|
||||||
|
- as_fn_error $? "could not find the wget program" "$LINENO" 5
|
||||||
|
- else
|
||||||
|
- MISSING_FEDABIPKGDIFF_DEP=yes
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: could not find the wget program" >&5
|
||||||
|
-$as_echo "$as_me: could not find the wget program" >&6;}
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: disabling fedabipkgdiff as a result" >&5
|
||||||
|
-$as_echo "$as_me: disabling fedabipkgdiff as a result" >&6;}
|
||||||
|
- fi
|
||||||
|
- fi
|
||||||
|
-
|
||||||
|
- # The minimal python 2 version we want to support is 2.6.6 because EL6
|
||||||
|
- # distributions have that version installed.
|
||||||
|
- MINIMAL_PYTHON2_VERSION="2.6.6"
|
||||||
|
-
|
||||||
|
- # Extract the first word of "python", so it can be a program name with args.
|
||||||
|
+# Extract the first word of "python", so it can be a program name with args.
|
||||||
|
set dummy python; ac_word=$2
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||||
|
$as_echo_n "checking for $ac_word... " >&6; }
|
||||||
|
@@ -17078,10 +17007,10 @@
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
- # The minimal python 3 version we want to support is 3.5, which is
|
||||||
|
- # available in Fedora releases and in EL7.
|
||||||
|
- if test x$ENABLE_PYTHON3 != xno; then
|
||||||
|
- for ac_prog in python3 python3.5 python3.6 python3.7
|
||||||
|
+# The minimal python 3 version we want to support is 3.5, which is
|
||||||
|
+# available in Fedora releases and in EL7.
|
||||||
|
+if test x$ENABLE_PYTHON3 != xno; then
|
||||||
|
+ for ac_prog in python3 python3.5 python3.6 python3.7
|
||||||
|
do
|
||||||
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||||
|
set dummy $ac_prog; ac_word=$2
|
||||||
|
@@ -17124,66 +17053,140 @@
|
||||||
|
done
|
||||||
|
test -n "$PYTHON3_INTERPRETER" || PYTHON3_INTERPRETER="no"
|
||||||
|
|
||||||
|
- else
|
||||||
|
- PYTHON3_INTERPRETER=no
|
||||||
|
- fi
|
||||||
|
+else
|
||||||
|
+ PYTHON3_INTERPRETER=no
|
||||||
|
+fi
|
||||||
|
|
||||||
|
- if test x$ENABLE_PYTHON3 = xauto; then
|
||||||
|
- if test x$PYTHON3_INTERPRETER != xno; then
|
||||||
|
- ENABLE_PYTHON3=yes
|
||||||
|
- else
|
||||||
|
- # When enabling python3 is auto, tests only run if the
|
||||||
|
- # python3 interpreter was found on the system. Otherwise,
|
||||||
|
- # just ignore it.
|
||||||
|
+if test x$ENABLE_PYTHON3 = xauto; then
|
||||||
|
+ if test x$PYTHON3_INTERPRETER != xno; then
|
||||||
|
+ ENABLE_PYTHON3=yes
|
||||||
|
+ else
|
||||||
|
+ # When enabling python3 is auto, tests only run if the
|
||||||
|
+ # python3 interpreter was found on the system. Otherwise,
|
||||||
|
+ # just ignore it.
|
||||||
|
ENABLE_PYTHON3=no
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: Python 3 was not found. Skip running tests with Python 3." >&5
|
||||||
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: Python 3 was not found. Skip running tests with Python 3." >&5
|
||||||
|
$as_echo "$as_me: Python 3 was not found. Skip running tests with Python 3." >&6;}
|
||||||
|
- fi
|
||||||
|
- fi
|
||||||
|
+ fi
|
||||||
|
+fi
|
||||||
|
|
||||||
|
- if test x$ENABLE_PYTHON3 = xyes; then
|
||||||
|
- if test x$PYTHON3_INTERPRETER != xno; then
|
||||||
|
- # We were asked to enable python3 implicitely (auto and
|
||||||
|
- # python3 was found) or explicitly. So enable running tests
|
||||||
|
- # using python3 then.
|
||||||
|
- RUN_TESTS_WITH_PY3=yes
|
||||||
|
- else
|
||||||
|
- as_fn_error $? "Python 3 was not found" "$LINENO" 5
|
||||||
|
- fi
|
||||||
|
- fi
|
||||||
|
+if test x$ENABLE_PYTHON3 = xyes; then
|
||||||
|
+ if test x$PYTHON3_INTERPRETER != xno; then
|
||||||
|
+ # We were asked to enable python3 implicitely (auto and
|
||||||
|
+ # python3 was found) or explicitly. So enable running tests
|
||||||
|
+ # using python3 then.
|
||||||
|
+ RUN_TESTS_WITH_PY3=yes
|
||||||
|
+ else
|
||||||
|
+ as_fn_error $? "Python 3 was not found" "$LINENO" 5
|
||||||
|
+ fi
|
||||||
|
+fi
|
||||||
|
|
||||||
|
- if test x$PYTHON3_INTERPRETER = xyes; then
|
||||||
|
- MINIMAL_PYTHON_VERSION_FOUND=yes
|
||||||
|
- fi
|
||||||
|
+if test x$PYTHON3_INTERPRETER = xyes; then
|
||||||
|
+ MINIMAL_PYTHON_VERSION_FOUND=yes
|
||||||
|
+fi
|
||||||
|
|
||||||
|
- if test x$MINIMAL_PYTHON_VERSION_FOUND = xno; then
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: no minimal version of python found" >&5
|
||||||
|
+if test x$MINIMAL_PYTHON_VERSION_FOUND = xno; then
|
||||||
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: no minimal version of python found" >&5
|
||||||
|
$as_echo "$as_me: no minimal version of python found" >&6;}
|
||||||
|
- MISSING_FEDABIPKGDIFF_DEP=yes
|
||||||
|
- if test x$MISSING_FEDABIPKGDIFF_DEP_FATAL = xyes; then
|
||||||
|
- as_fn_error $? "could not find a python program of version at least $MINIMAL_PYTHON2_VERSION" "$LINENO" 5
|
||||||
|
- fi
|
||||||
|
- if test x$PYTHON = xno; then
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: python binary wasn't found" >&5
|
||||||
|
+ if test x$PYTHON = xno; then
|
||||||
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: python binary wasn't found" >&5
|
||||||
|
$as_echo "$as_me: python binary wasn't found" >&6;}
|
||||||
|
- if test x$PYTHON3_INTERPRETER != xno; then
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: using $PYTHON3_INTERPRETER instead" >&5
|
||||||
|
+ if test x$PYTHON3_INTERPRETER != xno; then
|
||||||
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: using $PYTHON3_INTERPRETER instead" >&5
|
||||||
|
$as_echo "$as_me: using $PYTHON3_INTERPRETER instead" >&6;}
|
||||||
|
- PYTHON=$PYTHON3_INTERPRETER
|
||||||
|
+ PYTHON=$PYTHON3_INTERPRETER
|
||||||
|
MINIMAL_PYTHON_VERSION_FOUND=yes
|
||||||
|
MISSING_FEDABIPKGDIFF_DEP=no
|
||||||
|
- fi
|
||||||
|
- fi
|
||||||
|
- else
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: a minimal version of python was found ..." >&5
|
||||||
|
+ fi
|
||||||
|
+ fi
|
||||||
|
+else
|
||||||
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: a minimal version of python was found ..." >&5
|
||||||
|
$as_echo "$as_me: a minimal version of python was found ..." >&6;}
|
||||||
|
- if test x$PYTHON3_INTERPRETER != xno; then
|
||||||
|
- # We were instructed to use python3 and it's present on the
|
||||||
|
- # system. Let's update the PYTHON variable that points to the
|
||||||
|
- # actual python interpreter we are going to be using
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: ... and it was $PYTHON3_INTERPRETER" >&5
|
||||||
|
+ if test x$PYTHON3_INTERPRETER != xno; then
|
||||||
|
+ # We were instructed to use python3 and it's present on the
|
||||||
|
+ # system. Let's update the PYTHON variable that points to the
|
||||||
|
+ # actual python interpreter we are going to be using
|
||||||
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: ... and it was $PYTHON3_INTERPRETER" >&5
|
||||||
|
$as_echo "$as_me: ... and it was $PYTHON3_INTERPRETER" >&6;}
|
||||||
|
- PYTHON=$PYTHON3_INTERPRETER
|
||||||
|
+ PYTHON=$PYTHON3_INTERPRETER
|
||||||
|
+ fi
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+if test x$ENABLE_FEDABIPKGDIFF = xauto -o x$ENABLE_FEDABIPKGDIFF = xyes; then
|
||||||
|
+ CHECK_DEPS_FOR_FEDABIPKGDIFF=yes
|
||||||
|
+else
|
||||||
|
+ CHECK_DEPS_FOR_FEDABIPKGDIFF=no
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+if test x$CHECK_DEPS_FOR_FEDABIPKGDIFF = xyes; then
|
||||||
|
+ MISSING_FEDABIPKGDIFF_DEP=no
|
||||||
|
+
|
||||||
|
+ if test x$ENABLE_FEDABIPKGDIFF = xyes; then
|
||||||
|
+ MISSING_FEDABIPKGDIFF_DEP_FATAL=yes
|
||||||
|
+ else
|
||||||
|
+ MISSING_FEDABIPKGDIFF_DEP_FATAL=no
|
||||||
|
+ fi
|
||||||
|
+
|
||||||
|
+ # Extract the first word of "wget", so it can be a program name with args.
|
||||||
|
+set dummy wget; ac_word=$2
|
||||||
|
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||||
|
+$as_echo_n "checking for $ac_word... " >&6; }
|
||||||
|
+if ${ac_cv_path_WGET+:} false; then :
|
||||||
|
+ $as_echo_n "(cached) " >&6
|
||||||
|
+else
|
||||||
|
+ case $WGET in
|
||||||
|
+ [\\/]* | ?:[\\/]*)
|
||||||
|
+ ac_cv_path_WGET="$WGET" # Let the user override the test with a path.
|
||||||
|
+ ;;
|
||||||
|
+ *)
|
||||||
|
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||||
|
+for as_dir in $PATH
|
||||||
|
+do
|
||||||
|
+ IFS=$as_save_IFS
|
||||||
|
+ test -z "$as_dir" && as_dir=.
|
||||||
|
+ for ac_exec_ext in '' $ac_executable_extensions; do
|
||||||
|
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||||
|
+ ac_cv_path_WGET="$as_dir/$ac_word$ac_exec_ext"
|
||||||
|
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||||
|
+ break 2
|
||||||
|
+ fi
|
||||||
|
+done
|
||||||
|
+ done
|
||||||
|
+IFS=$as_save_IFS
|
||||||
|
+
|
||||||
|
+ test -z "$ac_cv_path_WGET" && ac_cv_path_WGET="no"
|
||||||
|
+ ;;
|
||||||
|
+esac
|
||||||
|
+fi
|
||||||
|
+WGET=$ac_cv_path_WGET
|
||||||
|
+if test -n "$WGET"; then
|
||||||
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WGET" >&5
|
||||||
|
+$as_echo "$WGET" >&6; }
|
||||||
|
+else
|
||||||
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
+$as_echo "no" >&6; }
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+ if test x$WGET = xno; then
|
||||||
|
+ ENABLE_FEDABIPKGDIFF=no
|
||||||
|
+ if test x$MISSING_FEDABIPKGDIFF_DEP_FATAL = xyes; then
|
||||||
|
+ as_fn_error $? "could not find the wget program" "$LINENO" 5
|
||||||
|
+ else
|
||||||
|
+ MISSING_FEDABIPKGDIFF_DEP=yes
|
||||||
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: could not find the wget program" >&5
|
||||||
|
+$as_echo "$as_me: could not find the wget program" >&6;}
|
||||||
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: disabling fedabipkgdiff as a result" >&5
|
||||||
|
+$as_echo "$as_me: disabling fedabipkgdiff as a result" >&6;}
|
||||||
|
+ fi
|
||||||
|
+ fi
|
||||||
|
+
|
||||||
|
+ if test x$MINIMAL_PYTHON_VERSION_FOUND = xno; then
|
||||||
|
+ MISSING_FEDABIPKGDIFF_DEP=yes
|
||||||
|
+ if test x$MISSING_FEDABIPKGDIFF_DEP_FATAL = xyes; then
|
||||||
|
+ as_fn_error $? "could not find a python program of version at least $MINIMAL_PYTHON2_VERSION" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
@ -2,25 +2,24 @@
|
|||||||
%global tarball_name %{name}-%{version}
|
%global tarball_name %{name}-%{version}
|
||||||
|
|
||||||
Name: libabigail
|
Name: libabigail
|
||||||
Version: 2.6
|
Version: 1.4
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Set of ABI analysis tools
|
Summary: Set of ABI analysis tools
|
||||||
|
|
||||||
License: Apache-2.0 WITH LLVM-exception
|
License: LGPLv3+
|
||||||
URL: https://sourceware.org/libabigail/
|
URL: https://sourceware.org/libabigail/
|
||||||
Source0: http://mirrors.kernel.org/sourceware/libabigail/%{tarball_name}.tar.xz
|
Source0: http://mirrors.kernel.org/sourceware/libabigail/%{tarball_name}.tar.gz
|
||||||
|
Patch1: enable-python-when-no-fedabipkgdiff-is-defined.patch.txt
|
||||||
|
|
||||||
BuildRequires: git
|
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
BuildRequires: elfutils-devel
|
BuildRequires: elfutils-devel
|
||||||
BuildRequires: libbpf-devel
|
|
||||||
BuildRequires: libxml2-devel
|
BuildRequires: libxml2-devel
|
||||||
BuildRequires: xxhash-devel
|
|
||||||
BuildRequires: doxygen
|
BuildRequires: doxygen
|
||||||
|
BuildRequires: %{_bindir}/python3
|
||||||
BuildRequires: python3-sphinx
|
BuildRequires: python3-sphinx
|
||||||
BuildRequires: python3-devel
|
|
||||||
BuildRequires: texinfo
|
BuildRequires: texinfo
|
||||||
|
BuildRequires: dos2unix
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The libabigail package comprises six command line utilities:
|
The libabigail package comprises six command line utilities:
|
||||||
@ -61,11 +60,11 @@ form of man pages, texinfo documentation and API documentation in html
|
|||||||
format.
|
format.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -v -S git
|
%setup -n %{tarball_name}
|
||||||
autoreconf
|
%patch1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --enable-btf --disable-deb --disable-fedabipkgdiff --disable-abidb --disable-zip-archive --disable-static
|
%configure --disable-deb --disable-fedabipkgdiff --disable-silent-rules --disable-zip-archive --disable-static
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
pushd doc
|
pushd doc
|
||||||
make html-doc
|
make html-doc
|
||||||
@ -83,10 +82,10 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
|||||||
# Install man and texinfo files as they are not installed by the
|
# Install man and texinfo files as they are not installed by the
|
||||||
# default 'install' target of the makefile.
|
# default 'install' target of the makefile.
|
||||||
make -C doc/manuals install-man-and-info-doc DESTDIR=%{buildroot}
|
make -C doc/manuals install-man-and-info-doc DESTDIR=%{buildroot}
|
||||||
|
dos2unix doc/manuals/html/_static/jquery.js
|
||||||
|
|
||||||
%check
|
%check
|
||||||
time make %{?_smp_mflags} check || (cat tests/test-suite.log && exit 2)
|
time make %{?_smp_mflags} check || (cat tests/test-suite.log && exit 2)
|
||||||
time make %{?_smp_mflags} check-self-compare || (cat tests/test-suite.log && exit 2)
|
|
||||||
|
|
||||||
if test $? -ne 0; then
|
if test $? -ne 0; then
|
||||||
cat tests/tests-suite.log
|
cat tests/tests-suite.log
|
||||||
@ -110,11 +109,11 @@ fi
|
|||||||
%{_bindir}/abilint
|
%{_bindir}/abilint
|
||||||
%{_bindir}/abipkgdiff
|
%{_bindir}/abipkgdiff
|
||||||
%{_bindir}/kmidiff
|
%{_bindir}/kmidiff
|
||||||
%{_libdir}/libabigail.so.5
|
%{_libdir}/libabigail.so.0
|
||||||
%{_libdir}/libabigail.so.5.0.0
|
%{_libdir}/libabigail.so.0.0.0
|
||||||
%{_libdir}/libabigail/default.abignore
|
%{_libdir}/libabigail/default.abignore
|
||||||
%doc README AUTHORS ChangeLog
|
%doc README AUTHORS ChangeLog
|
||||||
%license LICENSE.txt license-change-2020.txt
|
%license COPYING COPYING-LGPLV3 COPYING-GPLV3
|
||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
%{_mandir}/man7/*
|
%{_mandir}/man7/*
|
||||||
%{_infodir}/abigail.info*
|
%{_infodir}/abigail.info*
|
||||||
@ -126,89 +125,10 @@ fi
|
|||||||
%{_datadir}/aclocal/abigail.m4
|
%{_datadir}/aclocal/abigail.m4
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%license LICENSE.txt license-change-2020.txt
|
%license COPYING COPYING-LGPLV3 COPYING-GPLV3
|
||||||
%doc doc/manuals/html/*
|
%doc doc/manuals/html/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Nov 8 2024 Dodji Seketeli <dodji@redhat.com> - 2.6.1
|
|
||||||
- Update to upstream 2.6 tarball
|
|
||||||
- Update to changing SONAME (libabigail.so.5.0.0)
|
|
||||||
- Add BuildRequires xxhash-devel
|
|
||||||
- Disable abidb as its dependencies are not present in RHEL 9.6
|
|
||||||
- Resolves https://issues.redhat.com/browse/RHEL-64069
|
|
||||||
|
|
||||||
* Tue Apr 23 2024 Dodji Seketeli <dodji@redhat.com> - 2.5-1
|
|
||||||
- Update to upstream 2.5 tarball
|
|
||||||
- Drop patches (as they are now upstream):
|
|
||||||
0001-Bug-31045-Don-t-try-setting-translation-unit-for-uni.patch
|
|
||||||
0002-suppression-Add-has_strict_flexible_array_data_membe.patch
|
|
||||||
- Add BuildRequires: python3-devel
|
|
||||||
- Remove BuildRequires: %%{_bindir}/python3
|
|
||||||
|
|
||||||
* Fri Nov 17 2023 Dodji Seketeli <dodji@redhat.com> - 2.4-3
|
|
||||||
- Fix SPDX Licensing string
|
|
||||||
|
|
||||||
* Thu Nov 16 2023 Dodji Seketeli <dodji@redhat.com> - 2.4-2
|
|
||||||
- Apply patch: 0001-Bug-31045-Don-t-try-setting-translation-unit-for-uni.patch
|
|
||||||
Resolves: https://issues.redhat.com/browse/RHEL-16614
|
|
||||||
- Apply patch: 0002-suppression-Add-has_strict_flexible_array_data_membe.patch
|
|
||||||
Resolves: https://issues.redhat.com/browse/RHEL-16629
|
|
||||||
- Add git as a build requirement as we need git to apply the patches
|
|
||||||
aboves that apply binaries.
|
|
||||||
- Use %%autosetup to handle applying the patches using git.
|
|
||||||
- autoreconf after the patches touched at least one Makefile.am file.
|
|
||||||
|
|
||||||
* Wed Nov 01 2023 Dodji Seketeli <dodji@redhat.com> - 2.4-1
|
|
||||||
- Update to upstream 2.4
|
|
||||||
- Use SPDX licensing naming
|
|
||||||
- Build BTF support
|
|
||||||
- Add BuildRequires: libbpf-devel
|
|
||||||
- Update for SONAME bump
|
|
||||||
- Show details about the check and check-self-targets targets
|
|
||||||
separatly.
|
|
||||||
- Resolves: RHEL-12491
|
|
||||||
|
|
||||||
* Tue May 09 2023 Dodji Seketeli <dodji@redhat.com> - 2.3-1
|
|
||||||
- Update to upstream 2.3
|
|
||||||
- Remove the dos2unix surgery as it's now useless
|
|
||||||
- Update for the soname bump
|
|
||||||
- Resolves: RHELPLAN-154803
|
|
||||||
|
|
||||||
* Tue Dec 13 2022 Dodji Seketeli <dodji@redhat.com> - 2.2-1
|
|
||||||
- Update to upstream 2.2
|
|
||||||
- Switch to .xz tarball
|
|
||||||
- Resolves: rhbz#2152553
|
|
||||||
|
|
||||||
* Wed Nov 2 2022 Martin Cermak <mcermak@redhat.com> - 2.1-2
|
|
||||||
- NVR bump and rebuild
|
|
||||||
|
|
||||||
* Fri Sep 30 2022 Dodji Seketeli <dodji@redhat.com> - 2.1-1
|
|
||||||
- Update to upstream 2.1 release.
|
|
||||||
- Remove the now useless text about getting the source from git.
|
|
||||||
- Update the license reference.
|
|
||||||
- Resolves: rhbz#1944096
|
|
||||||
|
|
||||||
* Thu Jan 28 2021 Dodji Seketeli <dodji@redhat.com> - 1.8.1-1
|
|
||||||
- Update to upsteram fixes up to libabigail-1.8.1
|
|
||||||
This encompasses this fixes, compared to the last 1.8 release:
|
|
||||||
ir: Add better comments to types_have_similar_structure
|
|
||||||
mainpage: Update web page for 1.8 release
|
|
||||||
Bug 26992 - Try harder to resolve declaration-only classes
|
|
||||||
Bug 27204 - potential loss of some aliased ELF function symbols
|
|
||||||
Ignore duplicated functions and those not associated with ELF symbols
|
|
||||||
Bug 27236 - Pointer comparison wrongly fails because of typedef change
|
|
||||||
Bug 27233 - fedabipkgdiff fails on package gnupg2 from Fedora 33
|
|
||||||
Bug 27232 - fedabipkgdiff fails on gawk from Fedora 33
|
|
||||||
dwarf-reader: Support fast DW_FORM_line_strp string comparison
|
|
||||||
gen-changelog.py: Update call to subprocess.Popen & cleanup
|
|
||||||
Bug 27255 - fedabipkgdiff fails on nfs-utils on Fedora 33
|
|
||||||
abidiff: support --dump-diff-tree with --leaf-changes-only
|
|
||||||
ir: Arrays are indirect types for type structure similarity purposes
|
|
||||||
Add qualifier / typedef / array / pointer test
|
|
||||||
abg-ir: Optimize calls to std::string::find() for a single char.
|
|
||||||
abipkgdiff: Address operator precedence warning
|
|
||||||
-Resolves: rhbz#1901016
|
|
||||||
|
|
||||||
* Tue Aug 14 2018 Petr Viktorin <pviktori@redhat.com> - 1.4-2
|
* Tue Aug 14 2018 Petr Viktorin <pviktori@redhat.com> - 1.4-2
|
||||||
- Fix BuildRequires for /usr/bin/python3
|
- Fix BuildRequires for /usr/bin/python3
|
||||||
- Resolves: #1615539
|
- Resolves: #1615539
|
||||||
@ -218,7 +138,7 @@ fi
|
|||||||
- Remove disable-runtestdefaultsupprs.py.patch
|
- Remove disable-runtestdefaultsupprs.py.patch
|
||||||
- Add enable-python-when-no-fedabipkgdiff-is-defined.patch.txt
|
- Add enable-python-when-no-fedabipkgdiff-is-defined.patch.txt
|
||||||
|
|
||||||
* Wed Jun 20 2018 Dodji Seketeli <dodji@redhat.com> - 1.3-3
|
* Wed Jun 20 2018 Dodji Seketeli <dodji@seketeli.org> - 1.3-3
|
||||||
- Add patch disable-runtestdefaultsupprs.py.patch
|
- Add patch disable-runtestdefaultsupprs.py.patch
|
||||||
This disables the runtestdefaultsupprs.py patch as it's timeouting.
|
This disables the runtestdefaultsupprs.py patch as it's timeouting.
|
||||||
It's running fine locally though.
|
It's running fine locally though.
|
||||||
@ -233,7 +153,7 @@ fi
|
|||||||
* Mon Mar 19 2018 Dodji Seketeli <dodji@redhat.com> - 1.2-2
|
* Mon Mar 19 2018 Dodji Seketeli <dodji@redhat.com> - 1.2-2
|
||||||
- Depend on Koji only on Fedora
|
- Depend on Koji only on Fedora
|
||||||
|
|
||||||
* Tue Mar 6 2018 Dodji Seketeli <dodji@redhat.com> - 1.2-1
|
* Tue Mar 6 2018 Dodji Seketeli <dodji@seketeli.org> - 1.2-1
|
||||||
- Update to upstream 1.2
|
- Update to upstream 1.2
|
||||||
|
|
||||||
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.1-4
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.1-4
|
||||||
@ -250,7 +170,7 @@ fi
|
|||||||
- Use python2-sphynx, rpm-python2, python2-rpm rather than
|
- Use python2-sphynx, rpm-python2, python2-rpm rather than
|
||||||
python-sphinx, rpm-python.
|
python-sphinx, rpm-python.
|
||||||
|
|
||||||
* Wed Nov 22 2017 Dodji Seketeli <dodji@redhat.com> - 1.0-1
|
* Wed Nov 22 2017 Dodji Seketeli <dodji@seketeli.org> - 1.0-1
|
||||||
- Add missing %%{dist} to release.
|
- Add missing %%{dist} to release.
|
||||||
|
|
||||||
* Tue Nov 7 2017 Dodji Seketeli <dodji@redhat.com> - 1.0-1
|
* Tue Nov 7 2017 Dodji Seketeli <dodji@redhat.com> - 1.0-1
|
@ -1,6 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-9
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
|
Loading…
Reference in New Issue
Block a user