From 91f7192cd3cd94dd0387b196a7fd723a90f170b1 Mon Sep 17 00:00:00 2001 From: Sinny Kumari Date: Apr 03 2018 18:00:33 +0000 Subject: Add help message to write own .abignore file Ticket - https://pagure.io/task-abicheck/issue/13 Signed-off-by: Sinny Kumari --- diff --git a/run_abipkgdiff.py b/run_abipkgdiff.py index 3bd65f4..9b738d0 100755 --- a/run_abipkgdiff.py +++ b/run_abipkgdiff.py @@ -41,6 +41,13 @@ def run_abipkgdiff(koji_build, stable_rpmsdir, update_rpmsdir, padding = str('=' * 103) detail.output.append("%s\n\n" % padding) + detail.output.append("This file contains possible ABI changes which have occurred" + " due to this package update against latest stable build available" + " in koji for the given Fedora release.\n\n" + "If you want to filter out these kind of ABI changes in the future," + " you can add a proper .abignore file to this package. To know more" + " about how to write one, please look at the wiki page" + " https://fedoraproject.org/wiki/Taskotron/Tasks/dist.abicheck#filtering .\n\n") for arch in arches: test_arch(arch, stable_rpmsdir, update_rpmsdir, detail)