From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 10 13:04:16 2022 Received: (at 56961) by debbugs.gnu.org; 10 Oct 2022 17:04:17 +0000 Received: from localhost ([127.0.0.1]:49728 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ohwCM-0002IN-5W for submit@debbugs.gnu.org; Mon, 10 Oct 2022 13:04:16 -0400 Received: from knopi.disroot.org ([178.21.23.139]:45398) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ohwCH-0002Hx-6P for 56961@debbugs.gnu.org; Mon, 10 Oct 2022 13:04:11 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 6FB7E4CAAD; Mon, 10 Oct 2022 19:04:08 +0200 (CEST) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id s4vcDMe64I72; Mon, 10 Oct 2022 19:04:06 +0200 (CEST) From: "(" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1665421035; bh=iZH4Pae5dEFju6MXbew47E6AWgXdpRrSfJ/J1v4EVEI=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Sz26io/cTXSwwm9gwWKrL439D7WutxKcHBrTGCYASP9H9LQonfs6aJYCReUz9DvDO EMsO2wEXhTByIU4diHggqEssv/OpWcgMWe2Vt8GMe+kQLL+UQTk3gaYkTb4L2+oFtC xtyxTPPZ+Trhs77jsaHXVtauMoyfeP9WayRWC486HQhGmuRNF6RxiMqwJnPnLnQpum BIR0uw5lRpJ3XJyn6BudTWMVQhBcJdlW8GZVJAHM5V9u7hIll2dq4QN+kTx4kC4q7e k0MVWk6VNDbIaMgVA07j0kJmyUC1TfvcnK1sN9GJGhPqdw+zHMQmHC5lf4mNDByoyV OHIzF8CB3IAAg== To: 56961@debbugs.gnu.org Subject: [PATCH v2 2/4] gnu: packages: Add go-mvdan-cc-xurls. Date: Mon, 10 Oct 2022 17:57:07 +0100 Message-Id: <20221010165709.22638-2-paren@disroot.org> In-Reply-To: <20221010165709.22638-1-paren@disroot.org> References: <20221010165709.22638-1-paren@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 1.3 (+) 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-mvdan-cc-xurls): New variable. --- gnu/packages/golang.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index cce9c09ca8..3455861d33 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -11206,6 +11206,31 @@ (define-public g [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 1.3 FROM_ONE_CHAR Bogus FROM name -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record X-Debbugs-Envelope-To: 56961 Cc: "\(" 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: 0.3 (/) * gnu/packages/golang.scm (go-mvdan-cc-xurls): New variable. --- gnu/packages/golang.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index cce9c09ca8..3455861d33 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -11206,6 +11206,31 @@ (define-public go-github-com-onsi-ginkgo Gomega matcher library.") (license license:expat))) +(define-public go-mvdan-cc-xurls + (package + (name "go-mvdan-cc-xurls") + (version "2.4.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mvdan/xurls") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0b040nbk1vwlk1qljavh8w8fn2r243q700n6gr8j2asmnz0xq84p")))) + (build-system go-build-system) + (arguments (list #:import-path "mvdan.cc/xurls/v2")) + (propagated-inputs + (list go-golang-org-x-sync + go-github-com-rogpeppe-go-internal)) + (home-page "https://mvdan.cc/xurls/v2") + (synopsis "Extract URLs from text in Go") + (description + "This package provides a library for extracting URLs from plain text +using regular expressions in Go.") + (license license:bsd-3))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar -- 2.38.0