From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:37147) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jAN1b-0000Z7-HR for guix-patches@gnu.org; Fri, 06 Mar 2020 19:09:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jAN1a-0004YF-Il for guix-patches@gnu.org; Fri, 06 Mar 2020 19:09:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:40047) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jAN1a-0004XV-FC for guix-patches@gnu.org; Fri, 06 Mar 2020 19:09:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jAN1a-0007BF-9q for guix-patches@gnu.org; Fri, 06 Mar 2020 19:09:02 -0500 Subject: [bug#39963] [PATCH] fd bash_completion typo Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:55375) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jAMw5-0006QZ-S1 for guix-patches@gnu.org; Fri, 06 Mar 2020 19:03:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jAMw4-0003e8-PJ for guix-patches@gnu.org; Fri, 06 Mar 2020 19:03:21 -0500 Received: from wp224.webpack.hosteurope.de ([2a01:488:42:1000:50ed:84e7::]:43606) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jAMw4-0003X9-Hg for guix-patches@gnu.org; Fri, 06 Mar 2020 19:03:20 -0500 Received: from [192.168.1.3] (helo=micha) by www.rohleder.de with smtp (Exim 4.93) (envelope-from ) id 1jAMvz-0004OF-8R for guix-patches@gnu.org; Sat, 07 Mar 2020 01:03:16 +0100 From: mike@rohleder.de Date: Sat, 07 Mar 2020 01:03:02 +0100 Message-ID: <87v9nh116x.fsf@rohleder.de> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39963@debbugs.gnu.org --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain Hey guix! * The "fd" package installs its bash_completion file in the wrong directory. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 72c982f23c..ce50562228 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -184,11 +184,11 @@ also knows about symlinks, extended attributes, and Git.") ;; Manpages (install-file "doc/fd.1" (string-append out "/share/man/man1")) ;; Completions - (install-completion "^fd.bash$" "/etc/bash-completion.d") + (install-completion "^fd.bash$" "/etc/bash_completion.d") (install-completion "^fd.fish$" "/share/fish/vendor_completions.d") (install-completion "^_fd$" "/share/zsh/site-functions") - (rename-file (string-append out "/etc/bash-completion.d/fd.bash") - (string-append out "/etc/bash-completion.d/fd")) + (rename-file (string-append out "/etc/bash_completion.d/fd.bash") + (string-append out "/etc/bash_completion.d/fd")) #t)))))) (inputs `(("jemalloc" ,jemalloc))) (home-page "https://github.com/sharkdp/fd") --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable =2D-=20 APL is a write-only language. I can write programs in APL, but I can't read any of them. -- Roy Keir --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEdV4t5dDVhcUueCgwfHr/vv7yyyUFAl5i5LYACgkQfHr/vv7y yyX+Lgf/VtKXvrd5JCwcoBMkR18inh6mO5/syJ/nBDe/b/dcUAOE2b9RkpWXyVhg 3GtTqskQ2IX3zt+t/5VBCvowRm/95zW9mjuKCrKohsxLvijdFeFEQ/3Vs4tHmrDc +hvHhUSJQbZLXrlupaT28si94awWoHlB5PEt5xjIACnbol27nwjyezC8pKVLm2PQ JoYki4JQo3g23K1JBKBn01ohfBl+5qZR7dxvCi9+OD6AMPLcVVHRSZFbtjr3PNqo BvaKbDoyuI5Vvy4/biP40ko11Wj/mvGU0UOtXS0HjNiiprw7e2CXTrDKpFn5UxZv /+0KsIuL+oNAcYC9AIJFWyrnw2jbNQ== =I1vU -----END PGP SIGNATURE----- --==-=-=--