From patchwork Tue Aug 4 10:33:00 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Claudio Bantaloukas via Sourceware Forge X-Patchwork-Id: 140585 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from vm01.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 64D544B9DB6E for ; Tue, 4 Aug 2026 10:34:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 64D544B9DB6E X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from forge-stage.sourceware.org (vm08.sourceware.org [IPv6:2620:52:6:3111::39]) by sourceware.org (Postfix) with ESMTPS id 6AB074BA79A4 for ; Tue, 4 Aug 2026 10:33:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 6AB074BA79A4 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=forge-stage.sourceware.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=forge-stage.sourceware.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 6AB074BA79A4 Authentication-Results: sourceware.org; arc=none smtp.remote-ip=2620:52:6:3111::39 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1785839636; cv=none; b=GztBT2UPYZP31Fv64NwlQ2zMHBBQ1rod7e9Ctmy2L0rNxKmifXfwDxsSAcgZFPFo2WeFOvZTPChiMRlgGkArZGhn7+NdzTgPjtdISgSSLXOhrvU0q1AIB1MZeTV5sz/IG2qX3SAc+fqWcyFQ/naaJrugvhd/BtOVC0Wof8AL3+U= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1785839636; c=relaxed/simple; bh=uAPEgGsqnuURLB060nm938s5GzP86opOBljpufXUBMw=; h=From:Date:Subject:To:Message-ID; b=Mpeff1FmdQZ43Pi+jylFgWwQHTVxgJQVr1EJy03fGM3XcOJ06a06cCSormlHaR3QfIT0d9veMCBGXhV9oRn7v0uwfh+j6X6hyGnyxM6ml6Z9mAgV8MzSUawupbCF1qOdOZVBSdaxUXhW+WDVItwDBdpPCJiioYvcWja4ahKfjVw= ARC-Authentication-Results: i=1; sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6AB074BA79A4 Received: from forge-stage.sourceware.org (localhost [IPv6:::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by forge-stage.sourceware.org (Postfix) with ESMTPS id 41383425DE for ; Tue, 04 Aug 2026 10:33:56 +0000 (UTC) From: Claudio Bantaloukas via Sourceware Forge Date: Tue, 04 Aug 2026 10:33:00 +0000 Subject: [PATCH v1 1/1] MAINTAINERS: Record old email addresses To: gcc-patches mailing list Message-ID: X-Mailer: batrachomyomachia X-Pull-Request-Organization: gcc X-Pull-Request-Repository: gcc X-Pull-Request: https://forge.sourceware.org/gcc/gcc/pulls/210 References: In-Reply-To: X-Patch-URL: https://forge.sourceware.org/gcc/gcc/commit/2127f043a0f1eaf348d08bf4ed964eb8ea69ff41 X-Spam-Status: No, score=-10.2 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: gcc-patches mailing list , rdfm@sourceware.org Errors-To: gcc-patches-bounces~patchwork=sourceware.org@gcc.gnu.org From: Claudio Bantaloukas Record likely inactive email addresses for existing contributors. These addresses were collected from the author and committer fields in the Git history, as well as from entries removed from earlier versions of the MAINTAINERS file. Addresses already listed as active are excluded. These addresses are not printed on the MAINTAINERS file, they serve as an archive to help match past contributions, specifically for users that have an account on sourceware forge. This is an initial version of the patch to gather input. Data used with explicit permission. ChangeLog: * MAINTAINERS.yml: Add inactive_email entries. * contrib/maintainer_utils.py: Add inactive_email property. --- MAINTAINERS.yml | 3 +++ contrib/maintainer_utils.py | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/MAINTAINERS.yml b/MAINTAINERS.yml index fc38ecafd1acd..a3bf674668d71 100644 --- a/MAINTAINERS.yml +++ b/MAINTAINERS.yml @@ -1224,6 +1224,9 @@ users: - Maintainer: arm port - WriteAfter account: rearnsha + inactive_email: + - erich@gnu.org + - rwe11@cl.cam.ac.uk - sn: Eckhardt cn: Jason Eckhardt email: diff --git a/contrib/maintainer_utils.py b/contrib/maintainer_utils.py index 9fc636d8b5623..878439eb365fd 100755 --- a/contrib/maintainer_utils.py +++ b/contrib/maintainer_utils.py @@ -60,6 +60,13 @@ maintainer_schema = { 'format': 'email', }, }, + 'inactive_email': { + 'type': 'array', + 'items': { + 'type': 'string', + 'format': 'email', + }, + }, 'roles': { 'type': 'array', 'items': {