From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 28 19:29:43 2022 Received: (at submit) by debbugs.gnu.org; 1 Mar 2022 00:29:43 +0000 Received: from localhost ([127.0.0.1]:34995 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nOqOd-00029k-Dr for submit@debbugs.gnu.org; Mon, 28 Feb 2022 19:29:43 -0500 Received: from lists.gnu.org ([209.51.188.17]:45260) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nOqOb-00029b-Qx for submit@debbugs.gnu.org; Mon, 28 Feb 2022 19:29:42 -0500 Received: from eggs.gnu.org ([209.51.188.92]:43656) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nOqOb-0003Ul-Ja for guix-patches@gnu.org; Mon, 28 Feb 2022 19:29:41 -0500 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:54843) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nOqOZ-00026n-9v for guix-patches@gnu.org; Mon, 28 Feb 2022 19:29:41 -0500 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 6614720003 for ; Tue, 1 Mar 2022 00:29:36 +0000 (UTC) From: Nicolas Goaziou To: guix-patches@gnu.org Subject: [PATCH] Add wego Date: Tue, 01 Mar 2022 01:29:35 +0100 Message-ID: <871qzmwm4w.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: pass client-ip=217.70.183.200; envelope-from=mail@nicolasgoaziou.fr; helo=relay7-d.mail.gandi.net 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_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.7 (-) 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.7 (--) --=-=-= Content-Type: text/plain Hello, The following two patches add wego. I create a new "weather.scm" file since I didn't know where to put it. Regards, -- Nicolas Goaziou --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-Add-go-github-com-schachmat-ingo.patch Content-Description: Add go-github-com-schachmat-ingo >From b8ff68982388247600aa8f4771e6ccd5794acf0e Mon Sep 17 00:00:00 2001 Message-Id: From: Nicolas Goaziou Date: Tue, 1 Mar 2022 00:58:14 +0100 Subject: [[PATCH] 1/2] gnu: Add go-github-com-schachmat-ingo. * gnu/packages/golang.scm (go-github-com-schachmat-ingo): 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 a093728805..0914b3cf23 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1158,6 +1158,28 @@ (define-public go-github-com-shadowsocks-go-shadowsocks2 proxy protocol.") (license license:asl2.0))) +(define-public go-github-com-schachmat-ingo + (package + (name "go-github-com-schachmat-ingo") + (version "0.0.0-20170403011506-a4bdc0729a3f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/schachmat/ingo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gw0kddy7jh3467imsqni86cf9yq7k6vpfc0ywkbwj0zsjsdgd49")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/schachmat/ingo")) + (home-page "https://github.com/schachmat/ingo") + (synopsis "Go library to persist flags in a INI-like configuration file") + (description + "Ingo is a Go library helping you to persist flags in a INI-like +configuration file.") + (license license:isc))) + (define-public go-github-com-riobard-go-bloom (let ((commit "cdc8013cb5b3eb0efebec85f0e904efccac42df9") (revision "0")) base-commit: 508960f95a3af0750a59005e2beb8ec5edf7fd5c -- 2.34.0 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-gnu-Add-wego.patch Content-Description: Add wego >From 84b5ea4501014800ec43b6335af6b554716f8ce0 Mon Sep 17 00:00:00 2001 Message-Id: <84b5ea4501014800ec43b6335af6b554716f8ce0.1646094084.git.mail@nicolasgoaziou.fr> In-Reply-To: References: From: Nicolas Goaziou Date: Tue, 1 Mar 2022 01:14:04 +0100 Subject: [[PATCH] 2/2] gnu: Add wego. * gnu/packages/weather.scm: New file. * gnu/local.mk: Register new file. --- gnu/local.mk | 1 + gnu/packages/weather.scm | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 gnu/packages/weather.scm diff --git a/gnu/local.mk b/gnu/local.mk index bc214b3443..4915ccbe2b 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -603,6 +603,7 @@ GNU_SYSTEM_MODULES = \ %D%/packages/vulkan.scm \ %D%/packages/w3m.scm \ %D%/packages/wdiff.scm \ + %D%/packages/weather.scm \ %D%/packages/web.scm \ %D%/packages/web-browsers.scm \ %D%/packages/webkit.scm \ diff --git a/gnu/packages/weather.scm b/gnu/packages/weather.scm new file mode 100644 index 0000000000..bd83c1b660 --- /dev/null +++ b/gnu/packages/weather.scm @@ -0,0 +1,34 @@ +(define-module (gnu packages weather) + #:use-module (guix build-system go) + #:use-module (guix git-download) + #:use-module (guix licenses) + #:use-module (guix packages) + #:use-module (gnu packages) + #:use-module (gnu packages golang)) + +(define-public wego + (package + (name "wego") + (version "2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/schachmat/wego") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bji9fywa0kg29zj1vrwq7l5f18hh0lcz6rl6sppi5id0qbjpiwl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/schachmat/wego")) + (propagated-inputs + (list go-golang-org-x-sys + go-github-com-rivo-uniseg + go-github-com-mattn-go-isatty + go-github-com-schachmat-ingo + go-github-com-mattn-go-runewidth + go-github-com-mattn-go-colorable)) + (home-page "https://github.com/schachmat/wego") + (synopsis "Weather client for the terminal") + (description "@strong{wego} is a weather client for the terminal.") + (license isc))) -- 2.34.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 18 09:59:12 2022 Received: (at 54201) by debbugs.gnu.org; 18 Mar 2022 13:59:12 +0000 Received: from localhost ([127.0.0.1]:58004 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nVD8K-0003qQ-76 for submit@debbugs.gnu.org; Fri, 18 Mar 2022 09:59:12 -0400 Received: from eggs.gnu.org ([209.51.188.92]:47886) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nVD8G-0003q9-38 for 54201@debbugs.gnu.org; Fri, 18 Mar 2022 09:59:11 -0400 Received: from [2001:470:142:3::e] (port=48904 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nVD8A-0008Ij-86; Fri, 18 Mar 2022 09:59:02 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=31VLBKWxSi0xR628laadFHmktQyuY/GWMEGX00+U10A=; b=GmwgwZuMMBg7/rLi39jP ldeJ9EiJKAzjW+jfI3285nm4+VCjvziS40514WY1UhCerG3yPqoJkieyNnbaJvsSngvgs+K53wfoF QYCyq4R+a5cRSDWSawwgVsQlJzu+dKcvh34HmzTn86nDopmxlubngYEkxgoLqwhSc4bStraN6cwxZ wkALahLDr+l19fXM3oHxp9DF5cnRQWRO1diNsO+7B45KMhG518IwGaiIEAq5atg7mFS5SvIQUsXTk jUHGN20mBHHPDBVdnW9oUS5w55BcBzNoMGIohiE0rs0MmFsoMDdVVs15gQryY12txD11snWi5K4sp MwZkjfbqeatviw==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:49506 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nVD89-0004k9-O6; Fri, 18 Mar 2022 09:59:01 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Nicolas Goaziou Subject: Re: bug#54201: [PATCH] Add wego References: <871qzmwm4w.fsf@nicolasgoaziou.fr> Date: Fri, 18 Mar 2022 14:59:00 +0100 In-Reply-To: <871qzmwm4w.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Tue, 01 Mar 2022 01:29:35 +0100") Message-ID: <87ee2zqs4b.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 54201 Cc: 54201@debbugs.gnu.org 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: -3.3 (---) Hi, Nicolas Goaziou skribis: >>>From 84b5ea4501014800ec43b6335af6b554716f8ce0 Mon Sep 17 00:00:00 2001 > Message-Id: <84b5ea4501014800ec43b6335af6b554716f8ce0.1646094084.git.mail= @nicolasgoaziou.fr> > In-Reply-To: > References: > From: Nicolas Goaziou > Date: Tue, 1 Mar 2022 01:14:04 +0100 > Subject: [[PATCH] 2/2] gnu: Add wego. > > * gnu/packages/weather.scm: New file. > * gnu/local.mk: Register new file. [...] > +++ b/gnu/packages/weather.scm > @@ -0,0 +1,34 @@ > +(define-module (gnu packages weather) Please add a license header. [...] > + (home-page "https://github.com/schachmat/wego") > + (synopsis "Weather client for the terminal") > + (description "@strong{wego} is a weather client for the terminal.") Could you expound a little bit, mentioning key features, etc.? You can prolly remove @strong. > + (license isc))) Perhaps #:prefix license: ? Otherwise LGTM, thanks! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 18 19:59:19 2022 Received: (at 54201-done) by debbugs.gnu.org; 18 Mar 2022 23:59:19 +0000 Received: from localhost ([127.0.0.1]:58683 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nVMV5-0001lk-Mo for submit@debbugs.gnu.org; Fri, 18 Mar 2022 19:59:19 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:40483) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nVMV3-0001lT-9t for 54201-done@debbugs.gnu.org; Fri, 18 Mar 2022 19:59:18 -0400 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 51E28100003; Fri, 18 Mar 2022 23:59:10 +0000 (UTC) From: Nicolas Goaziou To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: bug#54201: [PATCH] Add wego References: <871qzmwm4w.fsf@nicolasgoaziou.fr> <87ee2zqs4b.fsf@gnu.org> Date: Sat, 19 Mar 2022 00:59:09 +0100 In-Reply-To: <87ee2zqs4b.fsf@gnu.org> ("Ludovic =?utf-8?Q?Court=C3=A8s=22'?= =?utf-8?Q?s?= message of "Fri, 18 Mar 2022 14:59:00 +0100") Message-ID: <87ilsau81e.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.5 (/) X-Debbugs-Envelope-To: 54201-done Cc: 54201-done@debbugs.gnu.org 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.5 (/) Hello, Ludovic Court=C3=A8s writes: > Nicolas Goaziou skribis: >> +++ b/gnu/packages/weather.scm >> @@ -0,0 +1,34 @@ >> +(define-module (gnu packages weather) > > Please add a license header. Done. >> + (description "@strong{wego} is a weather client for the terminal.") > > Could you expound a little bit, mentioning key features, etc.? > > You can prolly remove @strong. Done. >> + (license isc))) > > Perhaps #:prefix license: ? I thought we needed to use the prefix only when there was a conflict in the module. Anyhow, done. > Otherwise LGTM, thanks! Applied. Thank you. Regards, --=20 Nicolas Goaziou From unknown Fri Sep 05 08:44:07 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 16 Apr 2022 11:24:04 +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