From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 01 14:31:39 2021 Received: (at 47539) by debbugs.gnu.org; 1 Apr 2021 18:31:39 +0000 Received: from localhost ([127.0.0.1]:58592 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lS26V-0008AG-G7 for submit@debbugs.gnu.org; Thu, 01 Apr 2021 14:31:39 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:39182 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lS26P-00088G-Em for 47539@debbugs.gnu.org; Thu, 01 Apr 2021 14:31:33 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1617301887; bh=zV5tBXnmL/e5A9v502hpUq0/JCnrwyKpNaNz+ZZHoO0=; h=From:To:Subject:In-Reply-To:References:Date; b=JRLTVqkjJ7MiBQtP3uq38wA9JI/U3Cv7j3YyzR4cGGrX51ZxUDah65DOpstqqhk95 wfEXomOfA9SZPu+QA2sErzoep7HgH2JnJFeep4OAKysjVnMDPCgtlIYAqqp3IZV52N 40hzXsoV/mZEySB+skErM6GtwghmPbi3lOL972LY= To: 47539@debbugs.gnu.org Subject: [PATCH v2 02/26] gnu: Add go-github-com-creack-pty. In-Reply-To: References: Message-Id: Date: Thu, 01 Apr 2021 20:31:27 +0200 MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 2.9 (++) 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-creack-pty): New variable. --- gnu/packages/golang.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 5e0526184f..e6f834e7af 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7059,3 +7059,25 @@ Go.") larged been [...] Content analysis details: (2.9 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.4 RDNS_DYNAMIC Delivered to internal network by host with dynamic-looking rDNS 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 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.9 (+) 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-creack-pty): New variable. --- gnu/packages/golang.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 5e0526184f..e6f834e7af 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7059,3 +7059,25 @@ Go.") larged been [...] Content analysis details: (1.9 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 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 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD * gnu/packages/golang.scm (go-github-com-creack-pty): New variable. --- gnu/packages/golang.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 5e0526184f..e6f834e7af 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7059,3 +7059,25 @@ Go.") larged been influenced by st, rxvt, xterm, and iTerm as reference.") (license license:expat))) +(define-public go-github-com-creack-pty + (package + (name "go-github-com-creack-pty") + (version "1.1.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0dwhch53vqxpnbiqvfa27cliabx9ma2m4dax4adlrz8rami4sakw")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "PTY interface for Go") + (description "Pty is a Go package for using Unix pseudo-terminals.") + (license license:expat))) + -- 2.31.1