diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:00:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:00:48 +0000 |
commit | 851b6a097165af4d51c0db01b5e05256e5006896 (patch) | |
tree | 5f7c388ec894a7806c49a99f3bdb605d0b299a7c /abicheck | |
parent | Initial commit. (diff) | |
download | apt-cb4dc5b0476fd7de536c4f9d803d7409c871dd5a.tar.xz apt-cb4dc5b0476fd7de536c4f9d803d7409c871dd5a.zip |
Adding upstream version 2.6.1.upstream/2.6.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | abicheck/apt_build.xml.in | 11 | ||||
-rw-r--r-- | abicheck/apt_installed.xml.in | 11 | ||||
-rwxr-xr-x | abicheck/run_abi_test | 22 |
3 files changed, 44 insertions, 0 deletions
diff --git a/abicheck/apt_build.xml.in b/abicheck/apt_build.xml.in new file mode 100644 index 0000000..ec39466 --- /dev/null +++ b/abicheck/apt_build.xml.in @@ -0,0 +1,11 @@ +<version> + build-branch +</version> + + <headers> + @build_path@/include/apt-pkg + </headers> + + <libs> + @build_path@/apt-pkg/ + </libs> diff --git a/abicheck/apt_installed.xml.in b/abicheck/apt_installed.xml.in new file mode 100644 index 0000000..c3ddd08 --- /dev/null +++ b/abicheck/apt_installed.xml.in @@ -0,0 +1,11 @@ +<version> + installed +</version> + +<headers> + /usr/include/apt-pkg/ +</headers> + +<libs> + @installed_libapt@ +</libs> diff --git a/abicheck/run_abi_test b/abicheck/run_abi_test new file mode 100755 index 0000000..491616b --- /dev/null +++ b/abicheck/run_abi_test @@ -0,0 +1,22 @@ +#!/bin/sh + +# ensure we are in the abibreak subdirectory +cd "$(readlink -f $(dirname $0))" + +if [ ! -d ../build ]; then + echo "../build missing, did you run make?" + exit 1 +fi + +if ! command -v abi-compliance-checker 2>/dev/null >&2; then + echo "Please install the 'abi-compliance-checker' package" + exit 1 +fi + +LIBPATH=$(find /usr/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH) -type f -regex '.*/libapt-\(pkg\|inst\)\.so\..*' -printf %p\\\\n) +sed s#@installed_libapt@#$LIBPATH# apt_installed.xml.in > apt_installed.xml + +BUILDPATH=$(readlink -f ../build) +sed s#@build_path@#$BUILDPATH# apt_build.xml.in > apt_build.xml + +abi-compliance-checker -l apt -d1 apt_installed.xml -d2 apt_build.xml $@ |