From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: Re: Re-approaching package tagging Date: Fri, 21 Dec 2018 22:00:54 +0100 Message-ID: <874lb6mw6x.fsf@gnu.org> References: <875zvsq8ov.fsf@dustycloud.org> <87imzrgjit.fsf@gnu.org> <87h8fa7ums.fsf@dustycloud.org> <871s6dwob2.fsf@gnu.org> <87pntwskgn.fsf@gnu.org> <877eg44jnm.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51640) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gaSEA-0000vz-Hj for guix-devel@gnu.org; Fri, 21 Dec 2018 16:21:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gaSE9-0007XD-MH for guix-devel@gnu.org; Fri, 21 Dec 2018 16:21:02 -0500 Received: from hera.aquilenet.fr ([2a0c:e300::1]:46172) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gaSE9-00069X-Di for guix-devel@gnu.org; Fri, 21 Dec 2018 16:21:01 -0500 In-Reply-To: <877eg44jnm.fsf@gmail.com> (Chris Marusich's message of "Thu, 20 Dec 2018 01:44:29 -0800") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Chris Marusich Cc: Guix Devel Hi Chris, Chris Marusich skribis: > Is "guix package --search" case-insensitive? The manual ((guix) > Invoking guix package) does not seem to mention it. Per guix/scripts/package.scm, it is case-insensitive: --8<---------------cut here---------------start------------->8--- (('search _) (let* ((patterns (filter-map (match-lambda (('query 'search rx) rx) (_ #f)) opts)) (regexps (map (cut make-regexp* <> regexp/icase) patterns))) --8<---------------cut here---------------end--------------->8--- I=E2=80=99ll add a note in the manual. Ludo=E2=80=99.