From unknown Fri Jun 20 07:14:48 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#31625 <31625@debbugs.gnu.org> To: bug#31625 <31625@debbugs.gnu.org> Subject: Status: [PATCH 1/6] gnu: Add go-github-com-urfave-cli. Reply-To: bug#31625 <31625@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:14:48 +0000 retitle 31625 [PATCH 1/6] gnu: Add go-github-com-urfave-cli. reassign 31625 guix-patches submitter 31625 Rouby Pierre-Antoine severity 31625 normal tag 31625 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon May 28 11:00:14 2018 Received: (at submit) by debbugs.gnu.org; 28 May 2018 15:00:14 +0000 Received: from localhost ([127.0.0.1]:52504 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNJd7-0001KM-RU for submit@debbugs.gnu.org; Mon, 28 May 2018 11:00:14 -0400 Received: from eggs.gnu.org ([208.118.235.92]:34392) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNJd5-0001JS-3D for submit@debbugs.gnu.org; Mon, 28 May 2018 11:00:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fNJcy-0006XO-VC for submit@debbugs.gnu.org; Mon, 28 May 2018 11:00:05 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:53118) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fNJcy-0006XF-SL for submit@debbugs.gnu.org; Mon, 28 May 2018 11:00:04 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53585) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fNJcx-0004ZG-In for guix-patches@gnu.org; Mon, 28 May 2018 11:00:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fNJct-0006RE-JB for guix-patches@gnu.org; Mon, 28 May 2018 11:00:03 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:27059) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fNJct-0006Pq-6u for guix-patches@gnu.org; Mon, 28 May 2018 10:59:59 -0400 X-IronPort-AV: E=Sophos;i="5.49,452,1520895600"; d="scan'208";a="329087008" Received: from unknown (HELO Bordeciel.bordeaux.inria.fr) ([193.50.110.173]) by mail2-relais-roc.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 28 May 2018 16:59:46 +0200 From: Rouby Pierre-Antoine To: guix-patches@gnu.org Subject: [PATCH 1/6] gnu: Add go-github-com-urfave-cli. Date: Mon, 28 May 2018 16:59:39 +0200 Message-Id: <20180528145939.24256-1-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit Cc: Rouby Pierre-Antoine 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: -6.0 (------) * gnu/packages/golang.scm (go-github-com-urfave-cli): New variable. --- gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index ba180d1b3..e7fcfa379 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1472,3 +1472,30 @@ Features include: (description "This package is atomic boolean library for Go code, optimized for performance yet simple to use.") (license license:expat)))) + +(define-public go-github-com-urfave-cli + (let ((commit "cfb38830724cc34fedffe9a2a29fb54fa9169cd1") + (revision "0")) + (package + (name "go-github-com-urfave-cli") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/urfave/cli")) + (home-page "https://github.com/urfave/cli") + (synopsis "This package is library for building command line apps in +Go") + (description "A simple, fast, and fun package for building command line +apps in GO. The goal is to enable developers to write fast and distributable +command line applications in an expressive way.") + (license license:expat)))) -- 2.17.0 From debbugs-submit-bounces@debbugs.gnu.org Mon May 28 11:02:11 2018 Received: (at 31625) by debbugs.gnu.org; 28 May 2018 15:02:11 +0000 Received: from localhost ([127.0.0.1]:52509 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNJf1-0001Nf-9D for submit@debbugs.gnu.org; Mon, 28 May 2018 11:02:11 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:55209) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNJez-0001NR-L4 for 31625@debbugs.gnu.org; Mon, 28 May 2018 11:02:10 -0400 X-IronPort-AV: E=Sophos;i="5.49,452,1520895600"; d="scan'208";a="329088296" Received: from unknown (HELO Bordeciel.bordeaux.inria.fr) ([193.50.110.173]) by mail2-relais-roc.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 28 May 2018 17:02:03 +0200 From: Rouby Pierre-Antoine To: 31625@debbugs.gnu.org Subject: [PATCH 2/6] gnu: Add go-github-com-blang-semver. Date: Mon, 28 May 2018 17:01:57 +0200 Message-Id: <20180528150157.24310-1-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 31625 Cc: Rouby Pierre-Antoine 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: -6.0 (------) * gnu/packages/golang.scm (go-github-com-blang-semver): New variable. --- gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index e7fcfa379..d232e3040 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1499,3 +1499,30 @@ Go") apps in GO. The goal is to enable developers to write fast and distributable command line applications in an expressive way.") (license license:expat)))) + +(define-public go-github-com-blang-semver + (let ((commit "60ec3488bfea7cca02b021d106d9911120d25fe9") + (revision "0")) + (package + (name "go-github-com-blang-semver") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "19pli07y5592g4dyjyj0jq5rn548vc3fz0qg3624vm1j5828p1c2")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/blang/semver")) + (home-page "https://github.com/blang/semver") + (synopsis "This package is a Semantic Versioning library written in +golang") + (description "Semver is library form Semantic Versioning in written +golang.") + (license license:expat)))) + -- 2.17.0 From debbugs-submit-bounces@debbugs.gnu.org Mon May 28 11:02:54 2018 Received: (at 31625) by debbugs.gnu.org; 28 May 2018 15:02:55 +0000 Received: from localhost ([127.0.0.1]:52512 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNJfi-0001Ob-LW for submit@debbugs.gnu.org; Mon, 28 May 2018 11:02:54 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:6180) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNJfg-0001OO-TQ for 31625@debbugs.gnu.org; Mon, 28 May 2018 11:02:53 -0400 X-IronPort-AV: E=Sophos;i="5.49,452,1520895600"; d="scan'208";a="329088588" Received: from unknown (HELO Bordeciel.bordeaux.inria.fr) ([193.50.110.173]) by mail2-relais-roc.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 28 May 2018 17:02:46 +0200 From: Rouby Pierre-Antoine To: 31625@debbugs.gnu.org Subject: [PATCH 3/6] gnu: Add go-github-com-emicklei-go-restful. Date: Mon, 28 May 2018 17:02:40 +0200 Message-Id: <20180528150240.24400-1-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 31625 Cc: Rouby Pierre-Antoine 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: -6.0 (------) * gnu/packages/golang.scm (go-github-com-emicklei-go-restful): New variable. --- gnu/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index d232e3040..ee460c030 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1526,3 +1526,27 @@ golang") golang.") (license license:expat)))) +(define-public go-github-com-emicklei-go-restful + (let ((commit "89ef8af493ab468a45a42bb0d89a06fccdd2fb22") + (revision "0")) + (package + (name "go-github-com-emicklei-go-restful") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emicklei/go-restful.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0rrlfcfq80fkxifpih6bq31vavb5mf4530xz51pp9pq1mn2fzjfh")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/emicklei/go-restful")) + (home-page "https://github.com/emicklei/go-restful") + (synopsis "Package for building rest-style web services using Golang") + (description "Rest asks developpers to use @code{http} methods +explicitly and in a way that's consistent with the protocol definition.") + (license license:expat)))) -- 2.17.0 From debbugs-submit-bounces@debbugs.gnu.org Mon May 28 11:03:25 2018 Received: (at 31625) by debbugs.gnu.org; 28 May 2018 15:03:25 +0000 Received: from localhost ([127.0.0.1]:52517 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNJgC-0001Pq-VW for submit@debbugs.gnu.org; Mon, 28 May 2018 11:03:25 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:31451) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNJg9-0001Pb-U1 for 31625@debbugs.gnu.org; Mon, 28 May 2018 11:03:23 -0400 X-IronPort-AV: E=Sophos;i="5.49,452,1520895600"; d="scan'208";a="329088779" Received: from unknown (HELO Bordeciel.bordeaux.inria.fr) ([193.50.110.173]) by mail2-relais-roc.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 28 May 2018 17:03:15 +0200 From: Rouby Pierre-Antoine To: 31625@debbugs.gnu.org Subject: [PATCH 4/6] gnu: Add go-github-com-google-cadvisor. Date: Mon, 28 May 2018 17:03:09 +0200 Message-Id: <20180528150309.24444-1-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 31625 Cc: Rouby Pierre-Antoine 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: -6.0 (------) * gnu/packages/golang.scm (go-github-com-google-cadvisor): New varaible. --- gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index ee460c030..81a494584 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1550,3 +1550,29 @@ golang.") (description "Rest asks developpers to use @code{http} methods explicitly and in a way that's consistent with the protocol definition.") (license license:expat)))) + +(define-public go-github-com-google-cadvisor + (let ((commit "2ed7198f77395ee9a172878a0a7ab92ab59a2cfd") + (revision "0")) + (package + (name "go-github-com-google-cadvisor") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/cadvisor.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1w8p345z5j0gk3yiq5ah0znd5lfh348p2s624k5r10drz04p3f55")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/google/cadvisor")) + (home-page "https://github.com/google/cadvisor") + (synopsis "This package is resource usage analyzes for running +containers") + (description "Cadvisor provides information about the resource usage and +preformance characteristics of running contrainers.") + (license license:asl2.0)))) -- 2.17.0 From debbugs-submit-bounces@debbugs.gnu.org Mon May 28 11:03:52 2018 Received: (at 31625) by debbugs.gnu.org; 28 May 2018 15:03:52 +0000 Received: from localhost ([127.0.0.1]:52520 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNJge-0001QT-9s for submit@debbugs.gnu.org; Mon, 28 May 2018 11:03:52 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:61489) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNJgc-0001QF-3r for 31625@debbugs.gnu.org; Mon, 28 May 2018 11:03:50 -0400 X-IronPort-AV: E=Sophos;i="5.49,452,1520895600"; d="scan'208";a="329088980" Received: from unknown (HELO Bordeciel.bordeaux.inria.fr) ([193.50.110.173]) by mail2-relais-roc.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 28 May 2018 17:03:44 +0200 From: Rouby Pierre-Antoine To: 31625@debbugs.gnu.org Subject: [PATCH 5/6] gnu: Add go-github-com-google-gofuzz. Date: Mon, 28 May 2018 17:03:39 +0200 Message-Id: <20180528150339.24487-1-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 31625 Cc: Rouby Pierre-Antoine 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: -6.0 (------) * gnu/packages/golang.scm (go-github-com-google-gofuzz): 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 81a494584..6ace45890 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1576,3 +1576,28 @@ containers") (description "Cadvisor provides information about the resource usage and preformance characteristics of running contrainers.") (license license:asl2.0)))) + +(define-public go-github-com-google-gofuzz + (let ((commit "fd52762d25a41827db7ef64c43756fd4b9f7e382") + (revision "0")) + (package + (name "go-github-com-google-gofuzz") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/gofuzz.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1yxmmr73h0lq7ryf3q9a7pcm2x5xrg4d5bxkq8n5pxwxwyq26kw8")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/google/gofuzz")) + (home-page "https://github.com/google/gofuzz") + (synopsis "This package is fuzz testing library for go") + (description "Gofuzz is a library for populationg go objects with random +values.") + (license license:asl2.0)))) -- 2.17.0 From debbugs-submit-bounces@debbugs.gnu.org Mon May 28 11:04:12 2018 Received: (at 31625) by debbugs.gnu.org; 28 May 2018 15:04:12 +0000 Received: from localhost ([127.0.0.1]:52525 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNJgw-0001RZ-KX for submit@debbugs.gnu.org; Mon, 28 May 2018 11:04:12 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:29255) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNJgu-0001RM-5R for 31625@debbugs.gnu.org; Mon, 28 May 2018 11:04:08 -0400 X-IronPort-AV: E=Sophos;i="5.49,452,1520895600"; d="scan'208";a="329089081" Received: from unknown (HELO Bordeciel.bordeaux.inria.fr) ([193.50.110.173]) by mail2-relais-roc.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 28 May 2018 17:04:02 +0200 From: Rouby Pierre-Antoine To: 31625@debbugs.gnu.org Subject: [PATCH 6/6] gnu: Add go-github-com-gorilla-context. Date: Mon, 28 May 2018 17:03:56 +0200 Message-Id: <20180528150356.24530-1-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 31625 Cc: Rouby Pierre-Antoine 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: -6.0 (------) * gnu/packages/golang.scm (go-github-com-gorilla-context): 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 6ace45890..cad6e5a60 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1601,3 +1601,28 @@ preformance characteristics of running contrainers.") (description "Gofuzz is a library for populationg go objects with random values.") (license license:asl2.0)))) + +(define-public go-github-com-gorilla-context + (let ((commit "08b5f424b9271eedf6f9f0ce86cb9396ed337a42") + (revision "0")) + (package + (name "go-github-com-gorilla-context") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/context.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/gorilla/context")) + (home-page "https://github.com/gorilla/context") + (synopsis "This packages is registry for request variables") + (description "Gorilla/context is a general purpose registry for global +request variables.") + (license license:bsd-3)))) -- 2.17.0 From debbugs-submit-bounces@debbugs.gnu.org Tue May 29 18:40:26 2018 Received: (at 31625-done) by debbugs.gnu.org; 29 May 2018 22:40:26 +0000 Received: from localhost ([127.0.0.1]:54405 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNnI2-0005FK-Di for submit@debbugs.gnu.org; Tue, 29 May 2018 18:40:26 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:41055) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNnI0-0005FC-PL for 31625-done@debbugs.gnu.org; Tue, 29 May 2018 18:40:25 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 580D32191E; Tue, 29 May 2018 18:40:24 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Tue, 29 May 2018 18:40:24 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= mesmtp; bh=Off9xqVvHgkzgTWWDtEQOLlCBPqRuj0NlTo7Srriaic=; b=onwam UC9/2lTEjmAtycQjoizUOhxFA9kYjlXTX/uFsiD/1hiQIlKQKI2jAxttCCiobbYp NkUYqcJIRwGdHg9p/+EsJ0VLzCU29OLfuV7BfQ/wXkGaKKcbn+FirEpod2R10Vr0 L/amwi86RlqHwJHRr50goE1Dc1OTJYoO0G3lMM= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=fm2; bh=Off9xqVvHgkzgTWWDtEQOLlCBPqRu j0NlTo7Srriaic=; b=dSEleR/+BPF0yAIWQxDuFFIIiQb9WtoqWR5RjujBSVv+j 7ZVXljNKoyryMlQJ2QHHeBU0CXPzuO9oleyhfFZKxgZHQE8/pL24eo6aBQOygCoc sGedvIjloPashpK4fObrc15ZiEO0fLK3YtiGiki3Ic6iGKQQqRhd3GxFT5FH/jwX KEbxKLXn622vrD3BBwwUDMPWzIUt74uumFeh4A3GzAjpigDn4dyyn4ua66ofz1/6 E9jyMxKFJcInvOJtTRg3NBnYwzwgLsoIQ+D2SyBFw5ZX8cHEbgu6PRzqpydCRlqI ecfT41XKh95JCXQxsVCYykRa0aKXHlVa59t8GtAkg== X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Sender: Received: from localhost (c-76-124-202-137.hsd1.pa.comcast.net [76.124.202.137]) by mail.messagingengine.com (Postfix) with ESMTPA id 0A0BCE4314; Tue, 29 May 2018 18:40:24 -0400 (EDT) Date: Tue, 29 May 2018 18:40:22 -0400 From: Leo Famulari To: Rouby Pierre-Antoine Subject: Re: [bug#31625] [PATCH 1/6] gnu: Add go-github-com-urfave-cli. Message-ID: <20180529224022.GA13258@jasmine.lan> References: <20180528145939.24256-1-pierre-antoine.rouby@inria.fr> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="fUYQa+Pmc3FrFX/N" Content-Disposition: inline In-Reply-To: <20180528145939.24256-1-pierre-antoine.rouby@inria.fr> User-Agent: Mutt/1.10.0 (2018-05-17) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 31625-done Cc: 31625-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: -1.7 (-) --fUYQa+Pmc3FrFX/N Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, May 28, 2018 at 04:59:39PM +0200, Rouby Pierre-Antoine wrote: > * gnu/packages/golang.scm (go-github-com-urfave-cli): New variable. Thanks! I edited the synopses and descriptions and pushed the whole series as 9cf879a5739eec505119e2dfca59490d81f5ac99. --fUYQa+Pmc3FrFX/N Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlsN1tYACgkQJkb6MLrK fwieGBAAyLN7wRkx2l9unw9usHK7iqkYTBEOl9gWt4OYXXdt3DGx/9oXWmggxkAk j2K7vu8aGpIOCY3yVJx77grA4wkU/43SvWbPBbYnqCXSU8cWhQOtStDEnl9XJlHf xinr2Yz+hG3yX56/6ifRwyKVHBaYwLOPaD3hv1jAS4Nsb/XP+Ij0GwFWjJ6fPwPb /I9sSyOgMZIlf9KveZrp3shxpE8jrkJIypB4hz8JTMcCgUPnX6eycnBP1p5rW4+1 P8no6NuDZq1hTgSRlZKGPmDrn2YsrADeOzmYbHt4/9vxs+H3TpvKSKhl0IWii8Hi pzciaQmiGj1ZoMg2EbtpCH4ffSDIyuEXhETKw9/8HYenu3vvRZc5eggjxqJrL9kC h5vDHEmRfDOC6EIlWGDY8jmsqBFPTxKEOad4+vCTdFE9mY3N0d/j4m1OREY1BkoF WgGSSnH0oobwrBcdsImMX7JVO+i4vNOxgOJVFl+PGJkX8/D+SRn2FLRDn0v98rva hHbtQE0SnafbMvvCl3gj43G/4Pkd8KY3nEUCJiMMmLuR4aYTZ7spfnPZJz5C5TCY l19L+Rmh6JLKZkUyF5lawHdg4y5FsDF95WENe4Hr1bx75g4dH2y+h7grDF4TuBW2 cadMk9gt1YdQrn3N1t3NJHM/TD2ueUepyGQosju9iiHuzTk8Qzs= =leOc -----END PGP SIGNATURE----- --fUYQa+Pmc3FrFX/N-- From unknown Fri Jun 20 07:14:48 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 27 Jun 2018 11:24:05 +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