From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1E860A0C51; Fri, 6 Aug 2021 19:56:34 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0B025412C0; Fri, 6 Aug 2021 19:56:28 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 960D44014D for ; Fri, 6 Aug 2021 19:56:25 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10068"; a="194688202" X-IronPort-AV: E=Sophos;i="5.84,301,1620716400"; d="scan'208";a="194688202" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Aug 2021 10:56:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.84,301,1620716400"; d="scan'208";a="672368346" Received: from silpixa00396680.ir.intel.com (HELO silpixa00396680.ger.corp.intel.com) ([10.237.223.54]) by fmsmga005.fm.intel.com with ESMTP; 06 Aug 2021 10:56:13 -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 Date: Fri, 6 Aug 2021 18:54:10 +0100 Message-Id: <20210806175412.872237-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 v8 0/2] 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 Ray Kinsella (2): devtools: script to track map symbols devtools: script to send notifications of expired symbols devtools/notify-symbol-maintainers.py | 224 ++++++++++++++ devtools/symbol-tool.py | 402 ++++++++++++++++++++++++++ 2 files changed, 626 insertions(+) create mode 100755 devtools/notify-symbol-maintainers.py create mode 100755 devtools/symbol-tool.py -- 2.26.2