zimoun <zimon.toutoune@HIDDEN>
to control <at> debbugs.gnu.org
.
Full text available.Received: (at submit) by debbugs.gnu.org; 10 Feb 2021 21:54:29 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Wed Feb 10 16:54:29 2021 Received: from localhost ([127.0.0.1]:57327 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1l9xRM-0003yr-Tl for submit <at> debbugs.gnu.org; Wed, 10 Feb 2021 16:54:29 -0500 Received: from lists.gnu.org ([209.51.188.17]:60444) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <stefan@HIDDEN>) id 1l9xRJ-0003yc-PC for submit <at> debbugs.gnu.org; Wed, 10 Feb 2021 16:54:27 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:52352) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <stefan@HIDDEN>) id 1l9xRI-0005vS-Kp for guix-patches@HIDDEN; Wed, 10 Feb 2021 16:54:25 -0500 Received: from dd3624.kasserver.com ([85.13.130.11]:45814) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <stefan@HIDDEN>) id 1l9xR9-00057q-VN for guix-patches@HIDDEN; Wed, 10 Feb 2021 16:54:24 -0500 Received: from localhost (217-149-162-201.nat.highway.telekom.at [217.149.162.201]) by dd3624.kasserver.com (Postfix) with ESMTPA id A45785D4018B; Wed, 10 Feb 2021 22:54:12 +0100 (CET) From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= <stefan@HIDDEN> To: guix-patches@HIDDEN Subject: [PATCH 1/3] gnu: Add go-github-com-alexcesaro-log. Date: Wed, 10 Feb 2021 22:54:02 +0100 Message-Id: <20210210215404.209053-1-stefan@HIDDEN> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@HIDDEN; helo=dd3624.kasserver.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?Stefan=20Reich=C3=B6r?= <stefan@HIDDEN> X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) * gnu/packages/golang.scm (go-github-com-alexcesaro-log): 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 d34bb1acb7..7c0d373a8b 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -23,6 +23,7 @@ ;;; Copyright © 2020 Marius Bakke <marius@HIDDEN> ;;; Copyright © 2020 raingloom <raingloom@HIDDEN> ;;; Copyright © 2020 Martin Becze <mjbecze@HIDDEN> +;;; Copyright © 2021 Stefan Reichör <stefan@HIDDEN> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1901,6 +1902,30 @@ applications as well as a program to generate applications and command files.") (description "Go logging library") (license license:expat))) +(define-public go-github-com-alexcesaro-log + (let ((commit "61e686294e58a8698a9e1091268bb4ac1116bd5e") + (revision "0")) + (package + (name "go-github-com-alexcesaro-log") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alexcesaro/log") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1ckd5crq9rd12wpclahg2q0wprfg0whd6k9zbfzzkr6l1qpmmfam")))) + (build-system go-build-system) + (arguments + `(#:import-path "github.com/alexcesaro/log")) + (home-page "https://github.com/alexcesaro/log") + (synopsis "Several logging packages for Go") + (description "Several logging packages for Go") + (license license:expat)))) + (define-public go-github-com-spf13-pflag (package (name "go-github-com-spf13-pflag") -- 2.25.1
Stefan Reichör <stefan@HIDDEN>
:guix-patches@HIDDEN
.
Full text available.guix-patches@HIDDEN
:bug#46430
; Package guix-patches
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.