From debbugs-submit-bounces@debbugs.gnu.org Sat May 02 08:52:02 2020 Received: (at submit) by debbugs.gnu.org; 2 May 2020 12:52:02 +0000 Received: from localhost ([127.0.0.1]:51492 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUrcc-0001eN-Qx for submit@debbugs.gnu.org; Sat, 02 May 2020 08:52:02 -0400 Received: from lists.gnu.org ([209.51.188.17]:59618) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUrcZ-0001eD-Bm for submit@debbugs.gnu.org; Sat, 02 May 2020 08:51:57 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:36412) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jUrcY-0002Jr-NH for guix-patches@gnu.org; Sat, 02 May 2020 08:51:55 -0400 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jUrcX-0001T7-3s for guix-patches@gnu.org; Sat, 02 May 2020 08:51:54 -0400 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:48811) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jUrcW-0001LF-HN for guix-patches@gnu.org; Sat, 02 May 2020 08:51:52 -0400 X-Originating-IP: 78.237.113.178 Received: from localhost (luy13-1-78-237-113-178.fbx.proxad.net [78.237.113.178]) (Authenticated sender: brice@waegenei.re) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id E6E5B40002 for ; Sat, 2 May 2020 12:51:48 +0000 (UTC) From: Brice Waegeneire To: guix-patches@gnu.org Subject: [PATCH] gnu: tmux: Update to 3.1.b. Date: Sat, 2 May 2020 14:51:43 +0200 Message-Id: <20200502125143.3594-1-brice@waegenei.re> X-Mailer: git-send-email 2.26.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=217.70.183.194; envelope-from=brice@waegenei.re; helo=relay2-d.mail.gandi.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/05/02 08:51:49 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Received-From: 217.70.183.194 X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.6 (--) * gnu/packages/tmux.scm (tmux)[version]: Update to 3.1.b. [source]: Fetch from git instead of a tarball. [native-inputs]: Add 'autoconf', 'automake', 'bison' and 'pkg-config'. --- gnu/packages/tmux.scm | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm index 6d536131a7..6ac2fc53f0 100644 --- a/gnu/packages/tmux.scm +++ b/gnu/packages/tmux.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2017 Stefan Reichör ;;; Copyright © 2019 Tobias Geerinckx-Rice ;;; Copyright © 2019 Oleg Pykhalov +;;; Copyright © 2020 Brice Waegeneire ;;; ;;; This file is part of GNU Guix. ;;; @@ -30,27 +31,35 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system trivial) #:use-module (gnu packages) + #:use-module (gnu packages autotools) #:use-module (gnu packages bash) + #:use-module (gnu packages bison) #:use-module (gnu packages libevent) - #:use-module (gnu packages ncurses)) + #:use-module (gnu packages ncurses) + #:use-module (gnu packages pkg-config)) (define-public tmux (package (name "tmux") - (version "3.0a") + (version "3.1b") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/tmux/tmux/releases/download/" - version "/tmux-" version ".tar.gz")) - (sha256 - (base32 - "1fcdbw77nz918f7gqc1ga7zlkp1g112in1h8kkjnkadgnhldzlaa")))) + (method git-fetch) + (uri (git-reference + (url "https://github.com/tmux/tmux.git") + (commit version))) + (sha256 + (base32 + "0d8c7f1v75khgq06hlmhsxlxl7jf0mf767aw0makhqg8mxana8by")))) (build-system gnu-build-system) (inputs `(("libevent" ,libevent) ("ncurses" ,ncurses))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("bison" ,bison) + ("pkg-config" ,pkg-config))) (home-page "https://tmux.github.io/") (synopsis "Terminal multiplexer") (description -- 2.26.0 From debbugs-submit-bounces@debbugs.gnu.org Sat May 02 09:32:44 2020 Received: (at 41024) by debbugs.gnu.org; 2 May 2020 13:32:44 +0000 Received: from localhost ([127.0.0.1]:51576 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUsG4-0004qU-BT for submit@debbugs.gnu.org; Sat, 02 May 2020 09:32:44 -0400 Received: from tobias.gr ([80.241.217.52]:58566) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jUsG2-0004qL-3g for 41024@debbugs.gnu.org; Sat, 02 May 2020 09:32:43 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id 73f53e7e for <41024@debbugs.gnu.org>; Sat, 2 May 2020 13:32:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=h0luVfau2LRrniJgmOKRcK eMIAz3EW+d8/kQowlURfE=; b=Dg+jvZDif4/ZbHEhkfblrERvxQo4ZTG/vuOEAq 8VSRMq+1f2HkdS46cDTgNgFvB6Jzg6YB8BuMpnkNg8ye4OAwpyb26wdRaFZEfbs6 DecuvPJPM5qW+KnFXYdSCywCPeVsZXET4h6qpuE68up0AZKzUvdGLnNnHYbv8Hgy knKu2J3whx+eZUe41mc8j/1mJ8QN8bvvJZkEwKenpX2FlfiH90py0LYcD6xVxP6w ZdDWJWC3doKimp1RnElHYsqsR06M/viTDdRR8LWuGD7vaznOJLg650LHrXtZxinf 4StzGmnM5zAoBqPetBqK8hw5jYl/EUQNjwQxiTccBU/68sJA== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id eb219582 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <41024@debbugs.gnu.org>; Sat, 2 May 2020 13:32:39 +0000 (UTC) From: Tobias Geerinckx-Rice To: 41024@debbugs.gnu.org Subject: Re: [bug#41024] [PATCH] gnu: tmux: Update to 3.1.b. References: <20200502125143.3594-1-brice@waegenei.re> In-reply-to: <20200502125143.3594-1-brice@waegenei.re> Date: Sat, 02 May 2020 15:32:51 +0200 Message-ID: <87tv0ypim4.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 41024 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Brice, Brice Waegeneire =E5=86=99=E9=81=93=EF=BC=9A > * gnu/packages/tmux.scm (tmux)[version]: Update to 3.1.b. You can drop [version] here. We treat the version + hash bump as a package-level operation to=20 avoid noise like =E2=80=98[source]: Update SHA256.=E2=80=99 every time.=20 Explicitly listing non-routine changes is correct: > [source]: Fetch from git instead of a tarball. > [native-inputs]: Add 'autoconf', 'automake', 'bison' and=20 > 'pkg-config'. > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/tmux/tmux.git") > + (commit version))) > + (sha256 > + (base32 > +=20 > "0d8c7f1v75khgq06hlmhsxlxl7jf0mf767aw0makhqg8mxana8by")))) I'd add a comment to revert to the (hopefully=E2=80=A6) bootstrapped 3.2=20 tarball when it lands so these new native-inputs and module=20 imports can be removed. When migrating to GIT-FETCH, add a (file-name (git-file-name name version)) to the end to turn $ guix build --source tmux /gnu/store/xndh3x1qj0b59bxg6za0bcllnxvk2wpl-git-checkout into $ guix build --source tmux /gnu/store/ns97s45k3qv6vjw3p5xh9bz0bqg1dhia-tmux-3.1b-checkout purely for humans' sake. OK with these changes. Thanks! Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQT12iAyS4c9C3o4dnINsP+IT1VteQUCXq12gwAKCRANsP+IT1Vt eU1vAQDN/x4hp8oQP4/21Wdv09Z4ElanoRYq2FNWHfumu5WfywD/bWuyMOtFGeCM dC9ITHrrtzQWHyh+3ee/op0LfNoI2w8= =7kqd -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Wed May 06 05:57:03 2020 Received: (at 41024-done) by debbugs.gnu.org; 6 May 2020 09:57:03 +0000 Received: from localhost ([127.0.0.1]:38581 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWGnX-0007pJ-3o for submit@debbugs.gnu.org; Wed, 06 May 2020 05:57:03 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:58113) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWGnU-0007on-LB for 41024-done@debbugs.gnu.org; Wed, 06 May 2020 05:57:01 -0400 Received: from webmail.gandi.net (webmail18.sd4.0x35.net [10.200.201.18]) (Authenticated sender: brice@waegenei.re) by relay3-d.mail.gandi.net (Postfix) with ESMTPA id 1435160042 for <41024-done@debbugs.gnu.org>; Wed, 6 May 2020 09:56:37 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 06 May 2020 09:56:37 +0000 From: Brice Waegeneire To: 41024-done@debbugs.gnu.org Subject: Done #41024 gnu: tmux: Update to 3.1.b. Message-ID: <96e66354d3d07bc4d78bb9f1d411c6a9@waegenei.re> X-Sender: brice@waegenei.re User-Agent: Roundcube Webmail/1.3.8 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41024-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Pushed as 80e0e112aca8591045d91605271a3e0a8686f18a without changing to git-fetch since a bootstrapped binary is now available. From unknown Wed Sep 10 13:55:48 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 03 Jun 2020 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator