From patchwork Thu Apr 1 08:02:33 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Xinglu Chen X-Patchwork-Id: 28269 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id 2B1A627BC66; Thu, 1 Apr 2021 09:07:32 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,SPF_HELO_PASS, T_DKIM_INVALID,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id C29F827BC65 for ; Thu, 1 Apr 2021 09:07:31 +0100 (BST) Received: from localhost ([::1]:49798 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lRsMU-0000Tm-VK for patchwork@mira.cbaines.net; Thu, 01 Apr 2021 04:07:30 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:60568) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lRsIM-0004Bt-VV for guix-patches@gnu.org; Thu, 01 Apr 2021 04:03:16 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:44652) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1lRsIL-0000xO-1l for guix-patches@gnu.org; Thu, 01 Apr 2021 04:03:13 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1lRsIK-0007sP-Ud for guix-patches@gnu.org; Thu, 01 Apr 2021 04:03:12 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#47539] [PATCH 17/28] gnu: Add go-github-com-google-shlex. Resent-From: Xinglu Chen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 01 Apr 2021 08:03:12 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 47539 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 47539@debbugs.gnu.org Received: via spool by 47539-submit@debbugs.gnu.org id=B47539.161726416330052 (code B ref 47539); Thu, 01 Apr 2021 08:03:12 +0000 Received: (at 47539) by debbugs.gnu.org; 1 Apr 2021 08:02:43 +0000 Received: from localhost ([127.0.0.1]:56171 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lRsHr-0007oZ-1t for submit@debbugs.gnu.org; Thu, 01 Apr 2021 04:02:43 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:54370 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lRsHn-0007mD-Lw for 47539@debbugs.gnu.org; Thu, 01 Apr 2021 04:02:40 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1617264154; bh=nR9c+ebV/s7gc0kNkbypnJCUSmzzAWFkYOMUJNCDKas=; h=From:To:Subject:In-Reply-To:References:Date; b=dgNW+FbmWOZqEp/RB2CXUPiQ/A/S60RvGD3lxe4UY2WKOJJrxGtfhTInVGKrTiz2+ JauCsDnjXXNfst1zH6LHM5bMPsSVr1+A4LM2tL6hjQdVyJqUzbpbuHK2k7XzQP1+y5 mb7Kfvp5egh/H837ik+rIH/PhhF1TmjZfqI3OhCI= In-Reply-To: References: Message-Id: <8042622f663d83e5b6b282d4c4eb19d2044b32e6.1617262223.git.public@yoctocell.xyz> Date: Thu, 01 Apr 2021 10:02:33 +0200 MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches * gnu/packages/golang.scm (go-github-com-google-shlex): New variable. --- gnu/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 8e942fa955..fafe3fc226 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7467,3 +7467,26 @@ based on magic numbers. Features include @end itemize") (license license:expat))) +(define-public go-github-com-google-shlex + (package + (name "go-github-com-google-shlex") + (version "0.0.0-20191202100458-e7afc7fbc510") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/shlex.git") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "14z8hqyik910wk2qwnzgz8mjsmiamxa0pj55ahbv0jx6j3dgvzfm")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/google/shlex")) + (home-page "https://github.com/google/shlex") + (synopsis "Simple lexer for Go") + (description "This library provides is a simple lexer for Go that supports +shell-style quoting, commenting, and escaping.") + (license license:asl2.0))) +