From debbugs-submit-bounces@debbugs.gnu.org Sun Mar 10 14:39:33 2024 Received: (at submit) by debbugs.gnu.org; 10 Mar 2024 18:39:34 +0000 Received: from localhost ([127.0.0.1]:37876 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rjO57-0001Mg-HV for submit@debbugs.gnu.org; Sun, 10 Mar 2024 14:39:33 -0400 Received: from lists.gnu.org ([209.51.188.17]:48212) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rjO55-0001MY-1r for submit@debbugs.gnu.org; Sun, 10 Mar 2024 14:39:31 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rjO4X-0005tT-8T for guix-patches@gnu.org; Sun, 10 Mar 2024 14:38:57 -0400 Received: from mout-p-102.mailbox.org ([80.241.56.152]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1rjO4U-0003b5-7o for guix-patches@gnu.org; Sun, 10 Mar 2024 14:38:56 -0400 Received: from smtp202.mailbox.org (smtp202.mailbox.org [IPv6:2001:67c:2050:b231:465::202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-102.mailbox.org (Postfix) with ESMTPS id 4Tt7w814GSz9sQ6 for ; Sun, 10 Mar 2024 19:38:48 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=troyfigiel.com; s=MBO0001; t=1710095928; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=SEF+gnHXsZ3YzWfU+giQj10LoA7un4ooFE89CvtcZpE=; b=BksxuJUr6QBNEyv/9j6RBM68OIFDkyHwZPrS+f7+9UNvxgstLH4AAG/YoM/bybY6w+MHzO vdwzq4TkgKIdprff8ggEHsi3Pgz16BUZIoydS91EiUTmaZnKvz0EBvWwY1Nkmft0Sp5IE8 qeN9M4/XMuAEd/qy6VqJMsSe1O/p/Mf7UqtwRNs6v4w7dmywBMQwCnBX+8ZMZobyWX52fa kVL+xOIAzrf+MT/5xE52dIeRVIpjFveUV5o/Um97T3JLy75BybuBA0Hsspyaa9kczDfihW onhY8wCVzCtHd90YZ2iRn9dY0+1Nw7dtok8hpQBRkDeMdP0Is/XIa9RRNVi0lg== From: Troy Figiel To: guix-patches@gnu.org Subject: [PATCH] gnu: Add go-github-com-hashicorp-go-hclog. Date: Sun, 10 Mar 2024 19:35:14 +0100 Message-ID: <87edci2aq4.fsf@troyfigiel.com> MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 4Tt7w814GSz9sQ6 Received-SPF: pass client-ip=80.241.56.152; envelope-from=troy@troyfigiel.com; helo=mout-p-102.mailbox.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit 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: -2.3 (--) * gnu/packages/golang-xyz.scm (go-github-com-hashicorp-go-hclog): New variable. --- gnu/packages/golang-xyz.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 0b3db6e379..b7572c0cc7 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -853,6 +853,38 @@ (define-public go-github-com-hashicorp-hcl-v2 (home-page "https://github.com/hashicorp/hcl") (license license:mpl2.0))) +(define-public go-github-com-hashicorp-go-hclog + (package + (name "go-github-com-hashicorp-go-hclog") + (version "1.6.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-hclog") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lvr4ga95a0xb62vgq1hy558x3r65hn2d0h7bf0a88lsfsrcik0n")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/hashicorp/go-hclog")) + (propagated-inputs (list go-github-com-fatih-color + go-github-com-mattn-go-isatty + go-golang-org-x-tools)) + (native-inputs (list go-github-com-stretchr-testify)) + (home-page "https://github.com/hashicorp/go-hclog") + (synopsis "Key/value logging interface for Go") + (description + "This package provides a simple key/value logging interface for Golang +for use in development and production environments. Unlike the standard +library @code{log} package, this package provides logging levels that provide +decreased output based upon the desired amount of output. It also comes with +a command-line program @code{hclogvet} that can be used to check that the logging level +methods on @code{hclog.Logger} are used correctly.") + (license license:expat))) + (define-public go-github-com-hashicorp-go-multierror (package (name "go-github-com-hashicorp-go-multierror") base-commit: c7836393be4d134861d652b2fcf09cf4e68275ca -- 2.42.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 21 19:56:29 2024 Received: (at 69713-done) by debbugs.gnu.org; 21 Mar 2024 23:56:29 +0000 Received: from localhost ([127.0.0.1]:47673 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rnSGr-0005mB-5x for submit@debbugs.gnu.org; Thu, 21 Mar 2024 19:56:29 -0400 Received: from mail-wr1-f51.google.com ([209.85.221.51]:60897) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rnSGp-0005lp-IY for 69713-done@debbugs.gnu.org; Thu, 21 Mar 2024 19:56:27 -0400 Received: by mail-wr1-f51.google.com with SMTP id ffacd0b85a97d-33e162b1b71so1064787f8f.1 for <69713-done@debbugs.gnu.org>; Thu, 21 Mar 2024 16:55:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1711065281; x=1711670081; darn=debbugs.gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=UgJWpjVhEku1NyYCcwKLL3QPfM242JccsJBvMnZcuns=; b=Y59RUwgmkQJ2tmaEuIg/AWTaY8EaKO7kberwWk1eWHQ+FGtNaAiUxREArN/ttWTbZH ynXc7AEbqvnSUVqd17Wf60KflKwibDL0GvpQg1+E/6Y4AnVsULqqF5auW5qXNy3Udkks L1bShZ6oLGyA6/oTZMbXS/ayGSkTqt8k6gGZJPzJHYghGupr1I/JvGc46rO1NpHOHEOy dsISmwN521Fkiaf+I8FV7mryyU68MuoxzGEAEzvsajntd3HbWIvmN5E2hZPwKs7ckFFF miClzMT47zwEY92/6RhwZxIIQMLCc3inoWCP1t4zBcLtNaASAF4mqE0XLHr0ojjCGYuL wZXA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1711065281; x=1711670081; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=UgJWpjVhEku1NyYCcwKLL3QPfM242JccsJBvMnZcuns=; b=YRbEcqa+cLJq6Ldhs2aZKIzS2XAD1H/HAGdrtpphtolGThfhhK4LJ//PAtxplcStQJ M9jrGfWSXrlyviDjqPYOsfjkXH9bjUMuJi50ZRMHWoRPX1OLg4RneM0vXkDMZa0LlKfx cq93JP7ZrnR5KCkR2RLXkloW03XlufpTFRNEUcuxcSjvQe16vok0VxPTPq2YWi28QVNR BvQh0QlKSNC78mE8AHc+hVZJxoVrb6TsgOLdP6exSOe5Nit9Miz3sDKgoMvk6VN95873 httPdhmln4XKy/qQ60WELvUfW7M0Yc13wJcEEJytsml7smbGffAiUFHVWal6SeU87KYR Fvxw== X-Gm-Message-State: AOJu0YwkWmvju8Gk6G0IvxpHje99MfKJIyb7FO1Zl8RANzlW2N6s0lrQ 7bSx2wwIAN1sOhUHWjBn3dnT0YdvuQ2kOJB4gN4N/WDPpFmbCEyKJj7V1vHjys4= X-Google-Smtp-Source: AGHT+IEv7mWysezQE22qKn6VSJ96lWlRindTEFfStG2gHZ/Ocvxcrsw/nX0ns3DHLtzUNDwKbLom4A== X-Received: by 2002:a05:6000:36e:b0:33e:c8a9:e0e2 with SMTP id f14-20020a056000036e00b0033ec8a9e0e2mr311864wrf.58.1711065281487; Thu, 21 Mar 2024 16:54:41 -0700 (PDT) Received: from guxtil (cpc100856-bagu15-2-0-cust368.1-3.cable.virginm.net. [82.25.93.113]) by smtp.gmail.com with ESMTPSA id bg38-20020a05600c3ca600b004146e631a81sm6080054wmb.5.2024.03.21.16.54.40 for <69713-done@debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 21 Mar 2024 16:54:41 -0700 (PDT) From: Sharlatan Hellseher To: 69713-done@debbugs.gnu.org Subject: [PATCH] gnu: Add go-github-com-hashicorp-go-hclog. Date: Thu, 21 Mar 2024 23:54:40 +0000 Message-ID: <874jczxhrz.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 69713-done 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.0 (-) --=-=-= Content-Type: text/plain Pushed as 27b339702f601d2635416111930843a32dd625ed to master. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEmEeB3micIcJkGAhndtcnv/Ys0rUFAmX8yMAACgkQdtcnv/Ys 0rUxEA/+N40INWSClJvJIWhXXrrQnjzAHzEwqFp5fPCJwqGvyfnD+9ClAnZIjfYz XN5LqArJHZ5JVCLXIbmsBrtqNIM/jjUrFozLD3bEGIPBap5CFGZtZ3cuqt9Oc+Po j0cBs4GhW1jHxD4ujEIPB9S9jvtg235xAQbLLBU5iHBgYbcppmwCtH60HucmddAP a/sPPISmawih4I2zi3v3L8RVYBgfifYD3zyHwlj/ms3kZar6RO6PM0ryDZUP5VxI mnvY9B7Uggl6HB0U9ceJymN8glb0M/4mUV0wpo/m37Kp5tJRBbjmiCaTNT1KmizS YS7o4gt0Xquqn0gLiXDzSM8LfZYJ02jkEDKnZ2RNBFUkLXZEHzQYTfDuSM+wiT50 wxIpWbqenhktKgVPV3Lih8zyewvxcRmdfEu/wnaCkY3seRo6kPHPCgx+O7WCIzA8 1EQts43eEfkV/29ed1pOtdXnXgpLK0N6L1W9ZqTAtxR2we33kzxNlcXuPRdOR2NA XIlE6OQ13npf7C+nv+V6knTHU1mBM4SAHNuigeUKJbQm2mGzK5QhmNlhQVWjK1iH tOmo8Xb9DIPxdpa4v5xfvzR3wFmiZPP4BxKERVI47nTU/a3TZFaFQ40X3tX0n7WT ZKJ/HG2KbbzYWOowWb21CBSlHmx3H12goAL32L+/KKSqn7Xv5c0= =mbkJ -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Jun 20 18:24:34 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 19 Apr 2024 11:24:13 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator