From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 52E91C433FE for ; Thu, 9 Sep 2021 13:50:30 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 919E860041 for ; Thu, 9 Sep 2021 13:50:29 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 919E860041 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=ashroe.eu Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 91FD541145; Thu, 9 Sep 2021 15:50:27 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 86DCF40041 for ; Thu, 9 Sep 2021 15:50:25 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10101"; a="200318408" X-IronPort-AV: E=Sophos;i="5.85,280,1624345200"; d="scan'208";a="200318408" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Sep 2021 06:50:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.85,280,1624345200"; d="scan'208";a="580894499" Received: from silpixa00396680.ir.intel.com (HELO silpixa00396680.ger.corp.intel.com) ([10.237.223.54]) by orsmga004.jf.intel.com with ESMTP; 09 Sep 2021 06:50:22 -0700 From: Ray Kinsella To: dev@dpdk.org Cc: bruce.richardson@intel.com, stephen@networkplumber.org, ferruh.yigit@intel.com, thomas@monjalon.net, ktraynor@redhat.com, mdr@ashroe.eu, aconole@redhat.com, roy.fan.zhang@intel.com, arkadiuszx.kusztal@intel.com, gakhil@marvell.com Date: Thu, 9 Sep 2021 14:48:04 +0100 Message-Id: <20210909134808.1585777-1-mdr@ashroe.eu> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20210618163659.85933-1-mdr@ashroe.eu> References: <20210618163659.85933-1-mdr@ashroe.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v13 0/4] devtools: scripts to count and track symbols X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Scripts to count and track the lifecycle of DPDK symbols. The symbol-tool script reports on the growth of symbols over releases and list expired symbols. The notify-symbol-maintainers script consumes the input from symbol-tool and generates email notifications of expired symbols. v2: reworked to fix pylint errors v3: sent with the correct in-reply-to v4: fix typos picked up by the CI v5: fix terminal_size & directory args v6: added list-expired, to list expired experimental symbols v7: fix typo in comments v8: added tool to notify maintainers of expired symbols v9: removed hardcoded emails addressed and script names v10: added ability to identify and notify the original contributors v11: addressed feedback from Aaron Conole, including PEP8 errors. v12: added symbol-tool ignore functionality, to ignore specific symbols v13: renamed symboltool.abignore, typos, added ack from Akhil Goyal Ray Kinsella (4): devtools: script to track symbols over releases devtools: script to send notifications of expired symbols maintainers: add new abi scripts devtools: add asym crypto to symbol-tool ignore MAINTAINERS | 3 + devtools/notify-symbol-maintainers.py | 302 ++++++++++++++ devtools/symbol-tool.py | 566 ++++++++++++++++++++++++++ devtools/symboltool.abignore | 3 + 4 files changed, 874 insertions(+) create mode 100755 devtools/notify-symbol-maintainers.py create mode 100755 devtools/symbol-tool.py create mode 100644 devtools/symboltool.abignore -- 2.26.2