From debbugs-submit-bounces@debbugs.gnu.org Mon May 03 11:54:36 2021 Received: (at submit) by debbugs.gnu.org; 3 May 2021 15:54:36 +0000 Received: from localhost ([127.0.0.1]:47136 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldatz-0008LT-PR for submit@debbugs.gnu.org; Mon, 03 May 2021 11:54:36 -0400 Received: from lists.gnu.org ([209.51.188.17]:49016) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldatx-0008LL-KZ for submit@debbugs.gnu.org; Mon, 03 May 2021 11:54:30 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55758) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ldatw-0005r9-4r for guix-patches@gnu.org; Mon, 03 May 2021 11:54:29 -0400 Received: from wp224.webpack.hosteurope.de ([2a01:488:42:1000:50ed:84e7::]:52982) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ldatu-00016C-2U for guix-patches@gnu.org; Mon, 03 May 2021 11:54:27 -0400 Received: from www.rohleder.de ([37.61.204.227]); authenticated by wp224.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) id 1ldatq-0002LV-4o; Mon, 03 May 2021 17:54:22 +0200 Received: from [192.168.1.3] (helo=micha.rohleder.de) by www.rohleder.de with esmtp (Exim 4.94) (envelope-from ) id 1ldatp-0003C5-Iq; Mon, 03 May 2021 17:54:21 +0200 From: Michael Rohleder To: guix-patches@gnu.org Subject: [PATCH] gnu: vcsh: Update to 1.20190621. Date: Mon, 3 May 2021 17:54:17 +0200 Message-Id: <20210503155417.2523-1-mike@rohleder.de> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-bounce-key: webpack.hosteurope.de;mike@rohleder.de;1620057266;e8cd735e; X-HE-SMSGID: 1ldatq-0002LV-4o Received-SPF: permerror client-ip=2a01:488:42:1000:50ed:84e7::; envelope-from=mike@rohleder.de; helo=wp224.webpack.hosteurope.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, T_SPF_PERMERROR=0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Michael Rohleder 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 (---) * gnu/packages/version-control.scm (vcsh): Update to 1.20190621. [arguments]: Add phase install-bash-completion. --- gnu/packages/version-control.scm | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 8df7cc8d14..859083aa07 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -31,7 +31,7 @@ ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen ;;; Copyright © 2020 Vinicius Monego ;;; Copyright © 2020 Tanguy Le Carrour -;;; Copyright © 2020 Michael Rohleder +;;; Copyright © 2020, 2021 Michael Rohleder ;;; Copyright © 2021 Greg Hogan ;;; Copyright © 2021 Maxim Cournoyer ;;; Copyright © 2021 Chris Marusich @@ -1316,7 +1316,7 @@ manipulate them in various ways.") (define-public vcsh (package (name "vcsh") - (version "1.20151229") + (version "1.20190621") (source (origin (method git-fetch) @@ -1325,7 +1325,7 @@ manipulate them in various ways.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1grpj45nbpv4j60vd2kg4rj53zrm0bc0h9l4pfd3c2mwbvywm6ab")))) + (base32 "1s9l47wm9r7sndcgc778mq60wkzkhvfv7rkrwci5kjvw8vsddvcc")))) (build-system gnu-build-system) (native-inputs `(("which" ,which))) @@ -1338,7 +1338,14 @@ manipulate them in various ways.") (arguments '(#:phases (modify-phases %standard-phases (delete 'configure) - (delete 'build)) + (delete 'build) + (add-after 'install 'install-bash-completion + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (completions (string-append out "/etc/bash_completion.d"))) + (mkdir-p completions) + (copy-file "_vcsh_bash" (string-append completions "/vcsh")) + #t)))) #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) #:test-target "test")) -- 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Mon May 03 12:45:24 2021 Received: (at submit) by debbugs.gnu.org; 3 May 2021 16:45:24 +0000 Received: from localhost ([127.0.0.1]:47441 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldbhE-0000Xl-LZ for submit@debbugs.gnu.org; Mon, 03 May 2021 12:45:24 -0400 Received: from lists.gnu.org ([209.51.188.17]:44686) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldbhD-0000Xf-EW for submit@debbugs.gnu.org; Mon, 03 May 2021 12:45:23 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:41742) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ldbhD-0000Zz-5u for guix-patches@gnu.org; Mon, 03 May 2021 12:45:23 -0400 Received: from tobias.gr ([2a02:c205:2020:6054::1]:36958) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ldbh2-0007Ir-V7 for guix-patches@gnu.org; Mon, 03 May 2021 12:45:22 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tobias.gr; s=2018; bh=APfiviiiuNcEs2gjlFfy39D3dTOCaGd9NLegYILl4yc=; h=date:in-reply-to: subject:cc:to:from:references; b=oACMZ9uLUfivKbGZ4N8HGxm7IdeAhJyQt+N7B +G9uaR19hNei4v3Hb+3Pvy0bq3BWYPUaxe1e3/KjUbzWsnDsqnfZ5ByojZdzaqX4r8rdS4 jx9udo45vr65MHQXDdBPLGKGgug/Mup2/iMtEIMzR8VrnQE2tuixkxSaOKs4JkaA19R64j /OzsQQpcNDuRzbHSKS7G61yKqCRDH0fnVzS1F11U6yV5W/KLpEJVcz5MJs21WF+g41UT3F ntYbJJfK/R9tAPCMEtWbtQ6ahE/GFj1/g8cQCSfbAquIpHdqnrLIDXcbzzZz0lwR81fInu XLiGH3LfsxnIRwFdaJIea04BA== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 347dea2e (TLSv1.2:ECDHE-ECDSA-AES256-GCM-SHA384:256:NO); Mon, 3 May 2021 16:45:18 +0000 (UTC) References: <20210503155417.2523-1-mike@rohleder.de> From: Tobias Geerinckx-Rice To: Michael Rohleder Subject: Re: [bug#48198] [PATCH] gnu: vcsh: Update to 1.20190621. In-reply-to: <20210503155417.2523-1-mike@rohleder.de> BIMI-Selector: v=BIMI1; s=default; Date: Mon, 03 May 2021 18:45:19 +0200 Message-ID: <87a6pb4vhc.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Received-SPF: pass client-ip=2a02:c205:2020:6054::1; envelope-from=me@tobias.gr; helo=tobias.gr X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: 48198@debbugs.gnu.org, guix-patches@gnu.org 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.4 (--) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Michael, Michael Rohleder =E5=86=99=E9=81=93=EF=BC=9A > * gnu/packages/version-control.scm (vcsh): Update to 1.20190621. Thanks! > [arguments]: Add phase install-bash-completion. Since this isn't new in this release, I think it should be a=20 separate commit. Do you agree? > + #t)))) You can (finally!) omit this now. Ignore the lint warning, which is still there only because its=20 removal needs to pass through core-updates. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCYJAonw0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15RdIBAKBfK8dbdPuzBNR53CbcYaSu7LP0lW0p0lfLa3sd 6K5OAP9UacVwh8ORb9MyoZVlUuORN7BPzV4AkW3dwTXd+WFbAg== =VF5D -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon May 03 12:54:03 2021 Received: (at 48198) by debbugs.gnu.org; 3 May 2021 16:54:03 +0000 Received: from localhost ([127.0.0.1]:47500 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldbpb-0000eU-BE for submit@debbugs.gnu.org; Mon, 03 May 2021 12:54:03 -0400 Received: from wp224.webpack.hosteurope.de ([80.237.132.231]:44690) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldbpZ-0000e7-7s for 48198@debbugs.gnu.org; Mon, 03 May 2021 12:54:01 -0400 Received: from www.rohleder.de ([37.61.204.227]); authenticated by wp224.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) id 1ldbpX-0006HC-0I; Mon, 03 May 2021 18:53:59 +0200 Received: from [192.168.1.3] (helo=micha) by www.rohleder.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1ldbpW-0003jT-BX; Mon, 03 May 2021 18:53:58 +0200 From: Michael Rohleder To: Tobias Geerinckx-Rice Subject: Re: [bug#48198] [PATCH] gnu: vcsh: Update to 1.20190621. References: <20210503155417.2523-1-mike@rohleder.de> <87a6pb4vhc.fsf@nckx> Date: Mon, 03 May 2021 18:53:55 +0200 In-Reply-To: <87a6pb4vhc.fsf@nckx> (Tobias Geerinckx-Rice's message of "Mon, 03 May 2021 18:45:19 +0200") Message-ID: <87y2cvvjvg.fsf@rohleder.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-bounce-key: webpack.hosteurope.de;mike@rohleder.de;1620060841;959b02c6; X-HE-SMSGID: 1ldbpX-0006HC-0I X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 48198 Cc: 48198@debbugs.gnu.org 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 (-) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hey Tobias, Thanks for reviewing! Tobias Geerinckx-Rice writes: >> [arguments]: Add phase install-bash-completion. > > Since this isn't new in this release, I think it should be a separate > commit. Do you agree? No, I don't agree. I think it is new (at least, compared to the version we had/I made before) > >> + #t)))) > > You can (finally!) omit this now. > > Ignore the lint warning, which is still there only because its removal > needs to pass through core-updates. Ah, ok. I was wondering about the warning. Thank you! =2D-=20 Der menschliche Geist waechst mit dem Raum in dem er sich bewegt. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQFFBAEBCAAvFiEEdV4t5dDVhcUueCgwfHr/vv7yyyUFAmCQKqMRHG1pa2VAcm9o bGVkZXIuZGUACgkQfHr/vv7yyyU6vgf/cJxryOlKmI8LEwoosDzcMAfmGgPhOV3+ yeaxDFfjylVMyXIL3Vsna7CD3XbrNza7bEv1WixxFkuXQ7dgUzEQZC7b5ZZdm/J8 V1me6et4XKWV8PpnVt0x3HBvLVLGiaCDj9m0AJNCDSkI7hK70AO+lR29jsIWeVr7 vW2t4S2h6fLWgjadKqvlYbYqpYSOJvPDvAPu9ySTZcdPBgE83UFFLPJYRW+oZelj PkPhZdxV0C7e/Uu+bxJyKP3pcBLzHj2hFibJALDZxvH4crQjkPhJnvYAX2Y8Nx9B Yf0WsMIJSC60pxbi1pcbY1204x2CfhMGp3Jjye8JKw9s8ARvAB1jEA== =hvJv -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon May 03 16:44:05 2021 Received: (at 48198-done) by debbugs.gnu.org; 3 May 2021 20:44:05 +0000 Received: from localhost ([127.0.0.1]:48610 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldfPy-00057T-3y for submit@debbugs.gnu.org; Mon, 03 May 2021 16:44:05 -0400 Received: from tobias.gr ([80.241.217.52]:35186) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldfPv-00057N-QQ for 48198-done@debbugs.gnu.org; Mon, 03 May 2021 16:43:48 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tobias.gr; s=2018; bh=zz0Qo6gWCwNfLMzENTZ07wIHotSbjTB7qKLD5/udWEE=; h=date:in-reply-to: subject:cc:to:from:references; b=Z+2gQO7JwC0FWxyG/FXWJKsJPc4NqYUTkythe C3NTVK+IpqDmmhtq+XaKSvKwwabA2bm7HoQf+63cZzogdEgpkqhZyQuuALiNLn4LDLOvKg zTp7dIFGhab8BwoBQA+niEeaMpeBQ8CaICxPIN62MBK/2dmm2n3HFebvHt46xDtT7r6WUl gdI9wgZCIs1KoLIcW5bcXJ5d3NenTJwyAqXr+Y0hLoPdgSgJ5Cqy9iE2dE5Tu2M/Fc/yV4 C6xWZ4TvlUmT/ylKmNUsaf6j00w+z+DYvtxopzolPnxDU98j5USe1G/HSWvZl6iS0Srf75 Xp3xPLK8o2FOLEElHeuS/vivg== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 9233a6fd (TLSv1.2:ECDHE-ECDSA-AES256-GCM-SHA384:256:NO); Mon, 3 May 2021 20:43:56 +0000 (UTC) References: <20210503155417.2523-1-mike@rohleder.de> <87a6pb4vhc.fsf@nckx> <87y2cvvjvg.fsf@rohleder.de> From: Tobias Geerinckx-Rice To: Michael Rohleder Subject: Re: [bug#48198] [PATCH] gnu: vcsh: Update to 1.20190621. In-reply-to: <87y2cvvjvg.fsf@rohleder.de> BIMI-Selector: v=BIMI1; s=default; Date: Mon, 03 May 2021 22:44:26 +0200 Message-ID: <877dkfo8d1.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: 48198-done Cc: 48198-done@debbugs.gnu.org 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.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Michael, Michael Rohleder =E5=86=99=E9=81=93=EF=BC=9A > No, I don't agree. > I think it is new (at least, compared to the version we had/I=20 > made > before) You're right--and what an ancient version it was! I was looking at zsh completion, not bash. I wonder why that's=20 installed by default whilst bash is not. Shrug. I de-indented #:phases as it made your new lines exceed 80=20 characters for no good reason. Pushed as 2c09755a7a07a971d7c2ad6dbe991689837fd29c. Thanks! T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCYJBgqg0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15wmgBAKpsoEw2g/ddwEuOzJcfatr79RV/0L21ju5/qzIV 5uWSAQDfiShlcFoFi4UJQPmypFYLpFvi1weC/69LMd3IXLh2Aw== =8p0n -----END PGP SIGNATURE----- --=-=-=-- From unknown Mon Jun 23 11:27:06 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 01 Jun 2021 11:24:15 +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