From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd33.google.com (mail-io1-xd33.google.com [IPv6:2607:f8b0:4864:20::d33]) by sourceware.org (Postfix) with ESMTPS id 0D3673858432 for ; Mon, 14 Feb 2022 19:28:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 0D3673858432 Received: by mail-io1-xd33.google.com with SMTP id e79so21108479iof.13 for ; Mon, 14 Feb 2022 11:28:56 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=Ho/3tzuaN5RivAQJs/wXiSBtwDSJzC6dBCAOL708E74=; b=OaLjr09a21yPJJ2o8wQeuXnqpfwFgRY61/sjZXRiH1Q3xgqbsVg7ZbdFovr9NyIGGD aYiuM64e2oAcxx0WJF3NJ2d413+hjphwsF+3PQTBAmTuhKp8y+6iZjhIXwL6AL5wMp8l zUSRsaP3Lx3YRReY3wRc0Q8gQc/2iEw9+wJ/1db4ACvKCMX5B/HK+XhC9GQZlAwrH4yC ApY0iaXQf8J3qv9Gm3UDUuGkaD0YJKKsgFGDjYiNYyeK4lCDVpUw961hTczRUB6rpSwH EjlICMoVXG/BqKWt5efWHYL/5uzAagHnsWDi4ubG15skdYR++h2t3XLBGtKuuKK/KiTd rM0A== X-Gm-Message-State: AOAM532+HI/QgckNSSLw/j6rEI7hoO7jhyLPbDs2RHV9Eqp4lLzWCNPp WrPEBWaN7XeLhAQUAKYvKa8R4KEh8XR6Vw== X-Google-Smtp-Source: ABdhPJwnqcdhr/rb+QFvOKhgat/+fd+iSyY4pnN/bxfeVh1VTOEzoXSEqNvzLdN5JN73/y5/0tIsGQ== X-Received: by 2002:a05:6638:1501:: with SMTP id b1mr266875jat.251.1644866935357; Mon, 14 Feb 2022 11:28:55 -0800 (PST) Received: from murgatroyd.Home (75-166-128-165.hlrn.qwest.net. [75.166.128.165]) by smtp.gmail.com with ESMTPSA id g8sm19313065ilc.10.2022.02.14.11.28.53 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 14 Feb 2022 11:28:54 -0800 (PST) From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH 0/2] Rewrite make-target-delegates in Python Date: Mon, 14 Feb 2022 12:28:50 -0700 Message-Id: <20220214192852.3637933-1-tromey@adacore.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-5.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Feb 2022 19:28:57 -0000 This series rewrites make-target-delegates in Python. Perl is on the wane a bit and I feel that, as a group, gdb has a bit more Python expertise. Also, this lets us share the copyright-generation code, which is reused both in this series, and in an upcoming series I'll be sending in the future. Tested by rebuilding, and by examining the diffs of the generated files, which are minimal. Let me know what you think. Tom