From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x429.google.com (mail-wr1-x429.google.com [IPv6:2a00:1450:4864:20::429]) by sourceware.org (Postfix) with ESMTPS id 1B46F3858C60 for ; Mon, 20 Dec 2021 05:10:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 1B46F3858C60 Received: by mail-wr1-x429.google.com with SMTP id j18so17621492wrd.2 for ; Sun, 19 Dec 2021 21:10:35 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=H3ebJsTkA1jx/zsvtGY97Ct4QmkGpEqWyO1jrX0COKQ=; b=yU3rR7PB/kSqH6Ax5ltKjQT3hF0TnbUVMDNqTp+JMLVvXkP/Wp3wpfbQ62O3X8Wvpi 8YpalbweIhBBEXF+4sKjxo9mQCk/CGHAAZ34l9cOZjr1YuKWfUqOZSoXwdS4YX7kb99J iqwl615lhRU5aWINrTWXnyHN7rIbJBxB51XHg8MeA8RvH6dKjqUymqrm+UOCUGFITqob HWKmBeRVm3hn2dunNTppISaswVBzmxI1F7VMfQp5XN/KLxW50vRy/0n2yQ1jvCnG3pKb iWlwm3il8Zkz0LITxXFBr2Mn6gdbn3otursX+NiiXc5v+cYhnbahjjt2hALfLdz7Ei5d hPtg== X-Gm-Message-State: AOAM531BlRd2Zx3DzYdinr68pr+FGNRDsKy3q9OCFiC7+pR+BU83Tov4 aizIs/t4SgMayi8SyhNIXfESVEx7g3SG X-Google-Smtp-Source: ABdhPJwXfLhxZtHi6f2VygrDQHc/InbV/FfjHXvtJBmsl8WwpSn25mfs1thTwKPuYDSd4bvvNJhxfQ== X-Received: by 2002:a5d:4207:: with SMTP id n7mr10930178wrq.708.1639977034258; Sun, 19 Dec 2021 21:10:34 -0800 (PST) Received: from takamaka.home (lfbn-reu-1-342-220.w92-130.abo.wanadoo.fr. [92.130.175.220]) by smtp.gmail.com with ESMTPSA id k19sm2887202wmo.29.2021.12.19.21.10.33 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 19 Dec 2021 21:10:33 -0800 (PST) Received: by takamaka.home (Postfix, from userid 1000) id 84E23A49FA; Mon, 20 Dec 2021 09:10:31 +0400 (+04) Date: Mon, 20 Dec 2021 09:10:31 +0400 From: Joel Brobecker To: overseers@sourceware.org Cc: Joel Brobecker , Joseph Myers , Carlos O'Donell , Corinna Vinschen , Ivo Raisr Subject: Re: transition git-hooks on sourceware.org to Python 3.x Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spam-Status: No, score=-4.1 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 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: overseers@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Overseers mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Dec 2021 05:10:36 -0000 > My plan is to transition the binutils-gdb repository to it on Monday > morning (European timezone). To do so, what I will do is: > > $ /git/binutils-gdb.git > $ mv hooks{,.legacy-python2} \ > && ln -s /home/gdbadmin/shared-scripts/git-hooks-wrapper/hooks hooks This is now done. I tested with a first simple patch push, and realized I had forgotten to update ... /git/binutils-gdb.git/hooks-bin ... first (missing Python3-ization of email_to.py). So I got an error during the emailing, while the push went through. I therefore did... | % cd /git/binutils-gdb.git/hooks-bin/ | % git pull --rebase | remote: Enumerating objects: 5, done. | remote: Counting objects: 100% (5/5), done. | remote: Compressing objects: 100% (3/3), done. | remote: Total 3 (delta 2), reused 0 (delta 0), pack-reused 0 | Unpacking objects: 100% (3/3), 329 bytes | 41.00 KiB/s, done. | From /home/gdbadmin/GDBADMIN-BARE-REPOS/hooks-bin | 0018300..0d31c4b master -> origin/master | Updating 0018300..0d31c4b | Fast-forward | email_to.py | 4 ++-- | 1 file changed, 2 insertions(+), 2 deletions(-) | Current branch master is up to date. ... found another trivial change I could make, and pushed it, this time with no error. I double-checked the email for my commit has been sent to gdb-cvs: https://sourceware.org/pipermail/gdb-cvs/2021-December/052054.html I'll warn the users on gdb-patches to let me know if they see any issue. -- Joel