From unknown Mon Aug 18 11:07:43 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#39963 <39963@debbugs.gnu.org> To: bug#39963 <39963@debbugs.gnu.org> Subject: Status: [PATCH] fd bash_completion typo Reply-To: bug#39963 <39963@debbugs.gnu.org> Date: Mon, 18 Aug 2025 18:07:43 +0000 retitle 39963 [PATCH] fd bash_completion typo reassign 39963 guix-patches submitter 39963 mike@rohleder.de severity 39963 normal tag 39963 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 06 19:08:10 2020 Received: (at submit) by debbugs.gnu.org; 7 Mar 2020 00:08:10 +0000 Received: from localhost ([127.0.0.1]:46020 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jAN0j-00079v-RO for submit@debbugs.gnu.org; Fri, 06 Mar 2020 19:08:10 -0500 Received: from lists.gnu.org ([209.51.188.17]:58722) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jAMw6-00072s-VX for submit@debbugs.gnu.org; Fri, 06 Mar 2020 19:03:23 -0500 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 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 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 www.rohleder.de ([37.61.204.227]); authenticated by wp224.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) id 1jAMw0-0004Xx-Pe; Sat, 07 Mar 2020 01:03:16 +0100 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 Received: by micha (sSMTP sendmail emulation); Sat, 07 Mar 2020 01:03:02 +0100 From: mike@rohleder.de To: guix-patches@gnu.org Subject: [PATCH] fd bash_completion typo Date: Sat, 07 Mar 2020 01:03:02 +0100 Message-ID: <87v9nh116x.fsf@rohleder.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (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;1583539400;a41914a5; X-HE-SMSGID: 1jAMw0-0004Xx-Pe X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2a01:488:42:1000:50ed:84e7:: X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Fri, 06 Mar 2020 19:08:09 -0500 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: 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----- --==-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Mar 07 13:05:05 2020 Received: (at 39963-done) by debbugs.gnu.org; 7 Mar 2020 18:05:05 +0000 Received: from localhost ([127.0.0.1]:47514 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jAdov-00035E-Gv for submit@debbugs.gnu.org; Sat, 07 Mar 2020 13:05:05 -0500 Received: from pat.zlotemysli.pl ([37.59.186.212]:33202) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jAdos-00034k-BY for 39963-done@debbugs.gnu.org; Sat, 07 Mar 2020 13:05:04 -0500 Received: (qmail 26820 invoked by uid 1009); 7 Mar 2020 19:05:00 +0100 Received: from 188.123.215.55 (kuba@kadziolka.net@188.123.215.55) by pat (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25743. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(188.123.215.55):. Processed in 0.021165 secs); 07 Mar 2020 18:05:00 -0000 Received: from unknown (HELO gravity) (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl with SMTP; 7 Mar 2020 19:05:00 +0100 Date: Sat, 7 Mar 2020 19:05:52 +0100 From: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= To: mike@rohleder.de Subject: Re: [PATCH] fd bash_completion typo Message-ID: <20200307180552.fhwgh23owf4m4que@gravity> References: <87v9nh116x.fsf@rohleder.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="c65lu3hkppyt3hw3" Content-Disposition: inline In-Reply-To: <87v9nh116x.fsf@rohleder.de> X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 39963-done Cc: 39963-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 (-) --c65lu3hkppyt3hw3 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Mar 07, 2020 at 01:03:02AM +0100, mike@rohleder.de wrote: > Hey guix! >=20 > * The "fd" package installs its bash_completion file in the wrong directo= ry. >=20 Thanks! I added a copyright line for you, wrote a commit message and pushed to master as commit 9eed0a74f92ed4e1b631f4658d98a5f46ad1664d Regards, Jakub K=C4=85dzio=C5=82ka --c65lu3hkppyt3hw3 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEE5Xa/ss9usT31cTO54xWnWEYTFWQFAl5j4oAACgkQ4xWnWEYT FWRutxAAvVA44/AuHZKdVJdc5ynUvcqgTi21RqcZfxFHVcFvS6Fbtd1JJJ7NZcNf d/gvJmodHWRJMBI6Fahkix2x2skniGGTmAEpO5cYWb15BvMXJlQuAs1yYnFP5xg7 vaORoF4UKF9blIkugfkGtSahY+bRwVRtVDyGOeVIaLZESaV5t+F7OWrLialAtDYx W+VrUB27WG8r8aLtqpHr4cUEF05EA9GEWi/6wbNG5MqpLXPp5u/0lFLsBKnG7eST zXxYXV1zS/5zR0zAeCQnZp264xdd7eShl2pI0NGKvfxKEPlkS7ELugCULLWLwFm8 OV6Dkd5ANqLidhyesoRc9ebfgrHK7V3hvrtpRG1bWrysO/e1UfwouvRKgtpoiLux vJllZ7gcZ1+HBNVkk+rHd/L8wq6VCPLGBs4QOh8Vfm0OwycchP14/7LT/xsQuFmi Zy1JfWmbaWEQY5mcf7Lrg/oufvl9xe2ol6X4bShN7jB9zXmtXIFDEZd7bL8ruDhJ abOlDhqiQXo7fqvQj7RDYlyemF5F/eHgY13Qa+gNTG9ziZYfKCbkrrtTSMzA51EH rf7NhGnlnwA6J+eGcOC1ZU8vckUQZHvT0aEwou6hBcoU1hOuu/LyietIuKrI5Vfr e/TxlAfVYCjbHz/Vr4VrU9Axv27zbT09/i4ASvsw03Ft0jOZqAY= =JHPq -----END PGP SIGNATURE----- --c65lu3hkppyt3hw3-- From unknown Mon Aug 18 11:07:43 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 05 Apr 2020 11:24:06 +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