From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 19 11:24:16 2021 Received: (at 47539) by debbugs.gnu.org; 19 Apr 2021 15:24:16 +0000 Received: from localhost ([127.0.0.1]:51726 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lYVl2-00014P-9H for submit@debbugs.gnu.org; Mon, 19 Apr 2021 11:24:16 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:57550 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lYVkw-00013C-92 for 47539@debbugs.gnu.org; Mon, 19 Apr 2021 11:24:10 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1618845844; bh=0s75x8d60XoJYShBwVZj9D44ZKakiYak3QziK31W95A=; h=From:To:Subject:In-Reply-To:References:Date; b=jyyhtGMGQ+oIEhD/R6KI9ddGEXWwnHpGyzLaPvceGR0LtuCra+9xARyx+jVUjvzg8 CDezaXMyap4RBnA0BUy3Lcxf/gV+ulrtx1FHfGuTbW3vgWHRzMNe2eCwZpR2PIST/Q +P3s8j6Tm5M0qgB8rX7yQEzHJNEhxFNTKiWCEaiQ= To: 47539@debbugs.gnu.org Subject: [PATCH v3 23/25] gnu: Add go-github-com-shurcool-graphql. In-Reply-To: References: Message-Id: <7dcb29b0f60d2a14a6a2f9cf358f113736b10aa1.1618845646.git.public@yoctocell.xyz> Date: Mon, 19 Apr 2021 17:24:04 +0200 MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 2.4 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/packages/golang.scm (go-github-com-shurcool-graphql): New variable. --- gnu/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 9182fb183f..b4195d1c6f 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7662,3 +7662,27 @@ library to parse a [...] Content analysis details: (2.4 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 FROM_SUSPICIOUS_NTLD From abused NTLD 0.4 RDNS_DYNAMIC Delivered to internal network by host with dynamic-looking rDNS X-Debbugs-Envelope-To: 47539 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.4 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/packages/golang.scm (go-github-com-shurcool-graphql): New variable. --- gnu/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 9182fb183f..b4195d1c6f 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7662,3 +7662,27 @@ library to parse a [...] Content analysis details: (1.4 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 FROM_SUSPICIOUS_NTLD From abused NTLD 0.4 RDNS_DYNAMIC Delivered to internal network by host with dynamic-looking rDNS -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager * gnu/packages/golang.scm (go-github-com-shurcool-graphql): New variable. --- gnu/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 9182fb183f..b4195d1c6f 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7662,3 +7662,27 @@ library to parse and generate YAML data quickly and reliably.") (license (list license:expat license:asl2.0)))) +(define-public go-github-com-shurcool-graphql + (package + (name "go-github-com-shurcool-graphql") + (version "0.0.0-20200928012149-18c5c3165e3a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/graphql.git") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0psxc2q3qsh1lfag11m2gz54fzzvlss5znyf34aars94igsjywzx")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/shurcooL/graphql")) + (native-inputs + `(("go-golang-org-x-net" ,go-golang-org-x-net))) + (home-page "https://github.com/shurcooL/graphql") + (synopsis "GraphQL client implementation") + (description "This package provides a GraphQL client implementation.") + (license license:expat))) + -- 2.31.1