From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 1/4] gnu: Add go-github-com-sirupsen-logrus. Resent-From: Rouby Pierre-Antoine Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 18 Jun 2018 15:17:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 31881@debbugs.gnu.org Cc: Rouby Pierre-Antoine X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.152933497723195 (code B ref -1); Mon, 18 Jun 2018 15:17:02 +0000 Received: (at submit) by debbugs.gnu.org; 18 Jun 2018 15:16:17 +0000 Received: from localhost ([127.0.0.1]:55153 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUvtA-000622-OC for submit@debbugs.gnu.org; Mon, 18 Jun 2018 11:16:17 -0400 Received: from eggs.gnu.org ([208.118.235.92]:33807) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUvt9-00061p-43 for submit@debbugs.gnu.org; Mon, 18 Jun 2018 11:16:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fUvt3-0004yH-23 for submit@debbugs.gnu.org; Mon, 18 Jun 2018 11:16:10 -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]:39542) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fUvt2-0004yD-Uj for submit@debbugs.gnu.org; Mon, 18 Jun 2018 11:16:08 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52991) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fUvt1-0008Hc-E4 for guix-patches@gnu.org; Mon, 18 Jun 2018 11:16:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fUvsy-0004tB-6P for guix-patches@gnu.org; Mon, 18 Jun 2018 11:16:07 -0400 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:47217) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fUvsx-0004qe-Rg for guix-patches@gnu.org; Mon, 18 Jun 2018 11:16:04 -0400 X-IronPort-AV: E=Sophos;i="5.51,239,1526335200"; d="scan'208";a="269182412" Received: from unknown (HELO Bordeciel.bordeaux.inria.fr) ([193.50.110.173]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 18 Jun 2018 17:16:00 +0200 From: Rouby Pierre-Antoine Date: Mon, 18 Jun 2018 17:15:43 +0200 Message-Id: <20180618151543.2921-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-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-sirupsen-logrus): New variable. --- gnu/packages/golang.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 6c21181da..3d1fc5b6d 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1703,3 +1703,37 @@ incoming requests to their respective handler.") "Pflag is library to replace Go's flag package, implementing POSIX/GNU-style --flags.") (license license:bsd-3)))) + +(define-public go-github-com-sirupsen-logrus + (let ((commit "4b6ea7319e214d98c938f12692336f7ca9348d6b") + (revision "0")) + (package + (name "go-github-com-sirupsen-logrus") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "06wnl1dkkib2zpm31aavk5c4290s64h2ss68nl1vgcbxzsfbxjaq")))) + (build-system go-build-system) + (native-inputs + `(("go-golang-org-x-crypto-ssh-terminal" + ,go-golang-org-x-crypto-ssh-terminal) + ("go-github-com-stretchr-testify" + ,go-github-com-stretchr-testify) + ("go-golang-org-x-sys-unix" + ,go-golang-org-x-sys-unix))) + (arguments + '(#:tests? #f ;FIXME missing dependencies + #:import-path "github.com/sirupsen/logrus")) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "This packages is structured, pluggable logging for Go") + (description + "Logrus is a structured logger for Go, completely API compatible with +the standard library logger.") + (license license:expat)))) -- 2.17.0 From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 2/4] gnu: Add go-github-com-kardianos-osext. References: <20180618151543.2921-1-pierre-antoine.rouby@inria.fr> In-Reply-To: <20180618151543.2921-1-pierre-antoine.rouby@inria.fr> Resent-From: Rouby Pierre-Antoine Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 18 Jun 2018 15:19:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 31881@debbugs.gnu.org Cc: Rouby Pierre-Antoine Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.152933514223529 (code B ref 31881); Mon, 18 Jun 2018 15:19:04 +0000 Received: (at 31881) by debbugs.gnu.org; 18 Jun 2018 15:19:02 +0000 Received: from localhost ([127.0.0.1]:55169 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUvvq-00067L-CB for submit@debbugs.gnu.org; Mon, 18 Jun 2018 11:19:02 -0400 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:3878) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUvvo-00066Z-5l for 31881@debbugs.gnu.org; Mon, 18 Jun 2018 11:19:00 -0400 X-IronPort-AV: E=Sophos;i="5.51,239,1526335200"; d="scan'208";a="269182886" Received: from unknown (HELO Bordeciel.bordeaux.inria.fr) ([193.50.110.173]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 18 Jun 2018 17:18:53 +0200 From: Rouby Pierre-Antoine Date: Mon, 18 Jun 2018 17:18:19 +0200 Message-Id: <20180618151821.2972-1-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 X-Spam-Score: -5.0 (-----) 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-kardianos-osext): New variable. --- gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 3d1fc5b6d..5bda79dc9 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1737,3 +1737,29 @@ POSIX/GNU-style --flags.") "Logrus is a structured logger for Go, completely API compatible with the standard library logger.") (license license:expat)))) + +(define-public go-github-com-kardianos-osext + (let ((commit "c2c54e542fb797ad986b31721e1baedf214ca413") + (revision "0")) + (package + (name "go-github-com-kardianos-osext") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kardianos/osext.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "02vmjhkx90601l5fym7c3r4d44b88h3cign86nz4yy6j8qqxvz3h")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/kardianos/osext")) + (home-page + "https://github.com/kardianos/osext") + (synopsis "This package is an extensions to the standard os package") + (description + "Osext is an extensions to the standard os package for Golang.") + (license license:bsd-3)))) -- 2.17.0 From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 3/4] gnu: Add go-github-com-ayufan-golang-kardianos-service. Resent-From: Rouby Pierre-Antoine Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 18 Jun 2018 15:19:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 31881@debbugs.gnu.org Cc: Rouby Pierre-Antoine Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.152933514323544 (code B ref 31881); Mon, 18 Jun 2018 15:19:04 +0000 Received: (at 31881) by debbugs.gnu.org; 18 Jun 2018 15:19:03 +0000 Received: from localhost ([127.0.0.1]:55171 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUvvq-00067R-Nb for submit@debbugs.gnu.org; Mon, 18 Jun 2018 11:19:02 -0400 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:3878) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUvvo-00066Z-Sq for 31881@debbugs.gnu.org; Mon, 18 Jun 2018 11:19:01 -0400 X-IronPort-AV: E=Sophos;i="5.51,239,1526335200"; d="scan'208";a="269182887" Received: from unknown (HELO Bordeciel.bordeaux.inria.fr) ([193.50.110.173]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 18 Jun 2018 17:18:54 +0200 From: Rouby Pierre-Antoine Date: Mon, 18 Jun 2018 17:18:20 +0200 Message-Id: <20180618151821.2972-2-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180618151821.2972-1-pierre-antoine.rouby@inria.fr> References: <20180618151821.2972-1-pierre-antoine.rouby@inria.fr> X-Spam-Score: -5.0 (-----) 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-ayufan-golang-kardianos-service): New variable. --- gnu/packages/golang.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 5bda79dc9..f12c2b07a 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1763,3 +1763,36 @@ the standard library logger.") (description "Osext is an extensions to the standard os package for Golang.") (license license:bsd-3)))) + +(define-public go-github-com-ayufan-golang-kardianos-service + (let ((commit "0c8eb6d8fff2e2fb884a7bfd23e183fb63c0eff3") + (revision "0")) + (package + (name "go-github-com-ayufan-golang-kardianos-service") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url + "https://github.com/ayufan/golang-kardianos-service.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0x0cn7l5gda2khsfypix7adxd5yqighzn04mxjw6hc4ayrh7his5")))) + (build-system go-build-system) + (native-inputs + `(("go-github-com-kardianos-osext" + ,go-github-com-kardianos-osext))) + (arguments + '(#:tests? #f ;FIXME tests fail: Service is not running. + #:import-path + "github.com/ayufan/golang-kardianos-service")) + (home-page + "https://github.com/ayufan/golang-kardianos-service") + (synopsis "This package is golang library to run program as a service") + (description + "Golang kardinos service is golang library to run go program as a +service.") + (license license:zlib)))) -- 2.17.0 From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 4/4] gnu: Add go-github-com-docker-distribution. Resent-From: Rouby Pierre-Antoine Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 18 Jun 2018 15:20:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 31881@debbugs.gnu.org Cc: Rouby Pierre-Antoine Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.152933514523597 (code B ref 31881); Mon, 18 Jun 2018 15:20:02 +0000 Received: (at 31881) by debbugs.gnu.org; 18 Jun 2018 15:19:05 +0000 Received: from localhost ([127.0.0.1]:55181 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUvvt-00068R-3X for submit@debbugs.gnu.org; Mon, 18 Jun 2018 11:19:05 -0400 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:3878) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUvvp-00066Z-GA for 31881@debbugs.gnu.org; Mon, 18 Jun 2018 11:19:01 -0400 X-IronPort-AV: E=Sophos;i="5.51,239,1526335200"; d="scan'208";a="269182889" Received: from unknown (HELO Bordeciel.bordeaux.inria.fr) ([193.50.110.173]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 18 Jun 2018 17:18:54 +0200 From: Rouby Pierre-Antoine Date: Mon, 18 Jun 2018 17:18:21 +0200 Message-Id: <20180618151821.2972-3-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180618151821.2972-1-pierre-antoine.rouby@inria.fr> References: <20180618151821.2972-1-pierre-antoine.rouby@inria.fr> X-Spam-Score: -5.0 (-----) 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-docker-distribution): New variable. --- gnu/packages/golang.scm | 45 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index f12c2b07a..41d2e5ce1 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1796,3 +1796,48 @@ the standard library logger.") "Golang kardinos service is golang library to run go program as a service.") (license license:zlib)))) + +(define-public go-github-com-docker-distribution + (let ((commit "325b0804fef3a66309d962357aac3c2ce3f4d329") + (revision "0")) + (package + (name "go-github-com-docker-distribution") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/distribution") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1yg2zrikn3vkvkx5mn51p6bfjk840qdkn7ahhhvvcsc8mpigrjc6")))) + (build-system go-build-system) + (native-inputs + `(("go-golang-org-x-sys-unix" + ,go-golang-org-x-sys-unix) + ("go-github-com-sirupsen-logrus" + ,go-github-com-sirupsen-logrus) + ("go-golang-org-x-crypto-ssh-terminal" + ,go-golang-org-x-crypto-ssh-terminal))) + (arguments + '(#:import-path "github.com/docker/distribution" + #:phases + (modify-phases %standard-phases + (add-before 'reset-gzip-timestamps 'make-gzip-archive-writable + (lambda* (#:key outputs #:allow-other-keys) + (map (lambda (file) + (make-file-writable file)) + (find-files + (assoc-ref outputs "out") + ".*\\.gz$")) + #t))))) + (home-page + "https://github.com/docker/distribution") + (synopsis "This package is Docker toolset to pack, ship, store, and +deliver content") + (description "Docker Distribution is Docker toolset to pack, ship, +store, and deliver content. It's containe Docker Registry 2.0 and libraries +to interacting with distribution components.") + (license license:asl2.0)))) -- 2.17.0 From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 1/4] gnu: Add go-github-com-sirupsen-logrus. Resent-From: Leo Famulari Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 18 Jun 2018 16:13:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Rouby Pierre-Antoine Cc: 31881@debbugs.gnu.org Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.152933837228354 (code B ref 31881); Mon, 18 Jun 2018 16:13:02 +0000 Received: (at 31881) by debbugs.gnu.org; 18 Jun 2018 16:12:52 +0000 Received: from localhost ([127.0.0.1]:55212 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUwlv-0007NG-Ul for submit@debbugs.gnu.org; Mon, 18 Jun 2018 12:12:52 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:37311) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUwlu-0007N7-5F for 31881@debbugs.gnu.org; Mon, 18 Jun 2018 12:12:50 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id B34AD21F4C; Mon, 18 Jun 2018 12:12:49 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Mon, 18 Jun 2018 12:12:49 -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=ZfWTDCpGbL3OqMX7q8oAL2oNV5LJDt3CkKi/h5Iam7Y=; b=IIW/h ZKkQHJAQCsjbiIZbrrunmgutlQcRTT8B6NDMHfMlilTPM8rySWqrev4OkqemcZ97 WDEdUMO1ZM8TKCR4FHHVZrQ1catPVcfzDjiJ14wpfGTrpLWJHV6JaWmyvmapw4qU HkRe8g91h/a9L8cF+6Lc+izkgKBEED4iiKb98s= 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=fm3; bh=ZfWTDCpGbL3OqMX7q8oAL2oNV5LJD t3CkKi/h5Iam7Y=; b=FO3Mkm17bsY+w5rloNYHKnsak8xsS8w2qvNwQ0ZYRBdpg ILLxSXz9wwFHXp5AXljwq2oiqnd9oRBv5gRFcWqPvTRAyLHzLkM5F5yKitdvxAGs FNbxDZbvU9zjlGfJSZzkKYGS2NXHD+yb2twoezjjnfz2aVVhbz4AiceW6T10wWEm EWDUKH07l4ibYBdsrj05LeKIEutHj0aOLuhNboMVXKWUv7TfSXNJBSKBL8nKY/Pe e1lWiDWOcoOPfTv5b2UNo0BsneKT+wf1aTn96SMgMyMshKHYXKk8nOWcDemCRTOl trrntEbaQXCYbU/jq7YpKWNx3f5YDfGovkEdCTrMw== X-ME-Proxy: X-ME-Sender: Received: from localhost (unknown [172.58.225.64]) by mail.messagingengine.com (Postfix) with ESMTPA id 630E4E4329; Mon, 18 Jun 2018 12:12:49 -0400 (EDT) Date: Mon, 18 Jun 2018 12:12:48 -0400 From: Leo Famulari Message-ID: <20180618161248.GB30565@jasmine.lan> References: <20180618151543.2921-1-pierre-antoine.rouby@inria.fr> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="4SFOXa2GPu3tIq4H" Content-Disposition: inline In-Reply-To: <20180618151543.2921-1-pierre-antoine.rouby@inria.fr> User-Agent: Mutt/1.10.0 (2018-05-17) X-Spam-Score: -0.7 (/) 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 (-) --4SFOXa2GPu3tIq4H Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Jun 18, 2018 at 05:15:43PM +0200, Rouby Pierre-Antoine wrote: > * gnu/packages/golang.scm (go-github-com-sirupsen-logrus): New variable. Thank you for this patch series! Currently, it doesn't apply to the Guix git master branch. Can you rebase the patches on the master branch and send them again? Thanks! --4SFOXa2GPu3tIq4H Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlsn2gAACgkQJkb6MLrK fwgBvhAAs8W3WYgGOliiGMs3FTTWnRHiqalZtWNQoizyFRsUGPo+A/4NQSOr1x+P tJa8tqUOzBYtArmRkF8Ey3OLAW1uShNt6QtQ+aJaxOIsOXEQw2/iZ4Suya3BonDQ GWdJIgbi21UgnSJQZ3WE5mHMaW1Nc5PfnecQeeSpC9uj98CUgIgkocvVPI6DREZX AXnC52kpxgz6Y9pYWTf7NH90mhSMw8Zj041qT2MBLqh1gLVS2uBVC28iMvRvHQ5C e+MJWcdZjRL0Msr5rCi1HW7k8XtznwxnWzYHC6xsI994S6OJ23EeQ9Pkdp3ygdT6 f7CartczW7uMN0uqi3aMq/R/bmntmTmzU74SQABP5i4omwbp9dtJCOVIF0jNh8yJ wVtLgAdghkLGxWRd7TDFU0lOlrHkCXeiRLJSCaA/GkHNpg2F+aJiMU/4NUJKPX0Y NehUd0jdudh9wEubTlYOkZZsVlxXT8+1iFoKjD/GUNgjP6wqpJanT7m+lALEFEGO ziWddlLyyUDBKudli5qEXlDaGNZdLlu/Qrx/lvaMvgsez6LfwG9R+BjDNPg07for hEvODNFMwQONWnXFGpMgOz2bxwKaEIFC/C7bFjUE0s2OQbD5oM21561UWRjO8lhF F6dd1ZkgW+jGZYXmDCF7edbKR5kW2Q5PZsPSsb0D5Jqn8s1tw28= =smPw -----END PGP SIGNATURE----- --4SFOXa2GPu3tIq4H-- From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 1/4] gnu: Add go-github-com-sirupsen-logrus. References: <20180618151543.2921-1-pierre-antoine.rouby@inria.fr> In-Reply-To: <20180618151543.2921-1-pierre-antoine.rouby@inria.fr> Resent-From: Rouby Pierre-Antoine Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 19 Jun 2018 08:44:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: leo@famulari.name Cc: 31881@debbugs.gnu.org, Rouby Pierre-Antoine Reply-To: 20180618161248.GB30565@jasmine.lan Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.152939782932368 (code B ref 31881); Tue, 19 Jun 2018 08:44:02 +0000 Received: (at 31881) by debbugs.gnu.org; 19 Jun 2018 08:43:49 +0000 Received: from localhost ([127.0.0.1]:55700 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVCEv-0008Pz-Be for submit@debbugs.gnu.org; Tue, 19 Jun 2018 04:43:49 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:40142) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVCEt-0008Pg-Rs for 31881@debbugs.gnu.org; Tue, 19 Jun 2018 04:43:48 -0400 X-IronPort-AV: E=Sophos;i="5.51,242,1526335200"; d="scan'208";a="332386925" 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; 19 Jun 2018 10:43:41 +0200 From: Rouby Pierre-Antoine Date: Tue, 19 Jun 2018 10:43:30 +0200 Message-Id: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 X-Spam-Score: -5.0 (-----) 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-sirupsen-logrus): New variable. --- gnu/packages/golang.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index a83cdcde8..1dcf12d90 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1702,3 +1702,37 @@ with the @uref{https://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html, GNU extensions} to the POSIX recommendations for command-line options.") (license license:bsd-3)))) + +(define-public go-github-com-sirupsen-logrus + (let ((commit "4b6ea7319e214d98c938f12692336f7ca9348d6b") + (revision "0")) + (package + (name "go-github-com-sirupsen-logrus") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "06wnl1dkkib2zpm31aavk5c4290s64h2ss68nl1vgcbxzsfbxjaq")))) + (build-system go-build-system) + (native-inputs + `(("go-golang-org-x-crypto-ssh-terminal" + ,go-golang-org-x-crypto-ssh-terminal) + ("go-github-com-stretchr-testify" + ,go-github-com-stretchr-testify) + ("go-golang-org-x-sys-unix" + ,go-golang-org-x-sys-unix))) + (arguments + '(#:tests? #f ;FIXME missing dependencies + #:import-path "github.com/sirupsen/logrus")) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "This packages is structured, pluggable logging for Go") + (description + "Logrus is a structured logger for Go, completely API compatible with +the standard library logger.") + (license license:expat)))) -- 2.17.0 From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 2/4] gnu: Add go-github-com-kardianos-osext. Resent-From: Rouby Pierre-Antoine Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 19 Jun 2018 08:44:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: leo@famulari.name Cc: 31881@debbugs.gnu.org, Rouby Pierre-Antoine Reply-To: 20180618161248.GB30565@jasmine.lan Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.152939783332389 (code B ref 31881); Tue, 19 Jun 2018 08:44:02 +0000 Received: (at 31881) by debbugs.gnu.org; 19 Jun 2018 08:43:53 +0000 Received: from localhost ([127.0.0.1]:55704 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVCEz-0008QK-KI for submit@debbugs.gnu.org; Tue, 19 Jun 2018 04:43:53 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:40142) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVCEu-0008Pg-NL for 31881@debbugs.gnu.org; Tue, 19 Jun 2018 04:43:48 -0400 X-IronPort-AV: E=Sophos;i="5.51,242,1526335200"; d="scan'208";a="332386926" 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; 19 Jun 2018 10:43:41 +0200 From: Rouby Pierre-Antoine Date: Tue, 19 Jun 2018 10:43:31 +0200 Message-Id: <20180619084333.8993-2-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> References: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> X-Spam-Score: -5.0 (-----) 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-kardianos-osext): New variable. --- gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 1dcf12d90..bef450eb6 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1736,3 +1736,29 @@ GNU extensions} to the POSIX recommendations for command-line options.") "Logrus is a structured logger for Go, completely API compatible with the standard library logger.") (license license:expat)))) + +(define-public go-github-com-kardianos-osext + (let ((commit "c2c54e542fb797ad986b31721e1baedf214ca413") + (revision "0")) + (package + (name "go-github-com-kardianos-osext") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kardianos/osext.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "02vmjhkx90601l5fym7c3r4d44b88h3cign86nz4yy6j8qqxvz3h")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/kardianos/osext")) + (home-page + "https://github.com/kardianos/osext") + (synopsis "This package is an extensions to the standard os package") + (description + "Osext is an extensions to the standard os package for Golang.") + (license license:bsd-3)))) -- 2.17.0 From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 3/4] gnu: Add go-github-com-ayufan-golang-kardianos-service. Resent-From: Rouby Pierre-Antoine Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 19 Jun 2018 08:44:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: leo@famulari.name Cc: 31881@debbugs.gnu.org, Rouby Pierre-Antoine Reply-To: 20180618161248.GB30565@jasmine.lan Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.152939783432397 (code B ref 31881); Tue, 19 Jun 2018 08:44:03 +0000 Received: (at 31881) by debbugs.gnu.org; 19 Jun 2018 08:43:54 +0000 Received: from localhost ([127.0.0.1]:55706 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVCEz-0008QM-Ry for submit@debbugs.gnu.org; Tue, 19 Jun 2018 04:43:54 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:40142) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVCEv-0008Pg-BH for 31881@debbugs.gnu.org; Tue, 19 Jun 2018 04:43:49 -0400 X-IronPort-AV: E=Sophos;i="5.51,242,1526335200"; d="scan'208";a="332386929" 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; 19 Jun 2018 10:43:41 +0200 From: Rouby Pierre-Antoine Date: Tue, 19 Jun 2018 10:43:32 +0200 Message-Id: <20180619084333.8993-3-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> References: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> X-Spam-Score: -5.0 (-----) 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-ayufan-golang-kardianos-service): New variable. --- gnu/packages/golang.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index bef450eb6..be7b0d3f3 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1762,3 +1762,36 @@ the standard library logger.") (description "Osext is an extensions to the standard os package for Golang.") (license license:bsd-3)))) + +(define-public go-github-com-ayufan-golang-kardianos-service + (let ((commit "0c8eb6d8fff2e2fb884a7bfd23e183fb63c0eff3") + (revision "0")) + (package + (name "go-github-com-ayufan-golang-kardianos-service") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url + "https://github.com/ayufan/golang-kardianos-service.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0x0cn7l5gda2khsfypix7adxd5yqighzn04mxjw6hc4ayrh7his5")))) + (build-system go-build-system) + (native-inputs + `(("go-github-com-kardianos-osext" + ,go-github-com-kardianos-osext))) + (arguments + '(#:tests? #f ;FIXME tests fail: Service is not running. + #:import-path + "github.com/ayufan/golang-kardianos-service")) + (home-page + "https://github.com/ayufan/golang-kardianos-service") + (synopsis "This package is golang library to run program as a service") + (description + "Golang kardinos service is golang library to run go program as a +service.") + (license license:zlib)))) -- 2.17.0 From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 4/4] gnu: Add go-github-com-docker-distribution. Resent-From: Rouby Pierre-Antoine Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 19 Jun 2018 08:44:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: leo@famulari.name Cc: 31881@debbugs.gnu.org, Rouby Pierre-Antoine Reply-To: 20180618161248.GB30565@jasmine.lan Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.152939783432403 (code B ref 31881); Tue, 19 Jun 2018 08:44:03 +0000 Received: (at 31881) by debbugs.gnu.org; 19 Jun 2018 08:43:54 +0000 Received: from localhost ([127.0.0.1]:55708 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVCF0-0008QU-3h for submit@debbugs.gnu.org; Tue, 19 Jun 2018 04:43:54 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:40142) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVCEw-0008Pg-2B for 31881@debbugs.gnu.org; Tue, 19 Jun 2018 04:43:50 -0400 X-IronPort-AV: E=Sophos;i="5.51,242,1526335200"; d="scan'208";a="332386931" 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; 19 Jun 2018 10:43:41 +0200 From: Rouby Pierre-Antoine Date: Tue, 19 Jun 2018 10:43:33 +0200 Message-Id: <20180619084333.8993-4-pierre-antoine.rouby@inria.fr> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> References: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> X-Spam-Score: -5.0 (-----) 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-docker-distribution): New variable. --- gnu/packages/golang.scm | 45 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index be7b0d3f3..89476411b 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1795,3 +1795,48 @@ the standard library logger.") "Golang kardinos service is golang library to run go program as a service.") (license license:zlib)))) + +(define-public go-github-com-docker-distribution + (let ((commit "325b0804fef3a66309d962357aac3c2ce3f4d329") + (revision "0")) + (package + (name "go-github-com-docker-distribution") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/distribution") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1yg2zrikn3vkvkx5mn51p6bfjk840qdkn7ahhhvvcsc8mpigrjc6")))) + (build-system go-build-system) + (native-inputs + `(("go-golang-org-x-sys-unix" + ,go-golang-org-x-sys-unix) + ("go-github-com-sirupsen-logrus" + ,go-github-com-sirupsen-logrus) + ("go-golang-org-x-crypto-ssh-terminal" + ,go-golang-org-x-crypto-ssh-terminal))) + (arguments + '(#:import-path "github.com/docker/distribution" + #:phases + (modify-phases %standard-phases + (add-before 'reset-gzip-timestamps 'make-gzip-archive-writable + (lambda* (#:key outputs #:allow-other-keys) + (map (lambda (file) + (make-file-writable file)) + (find-files + (assoc-ref outputs "out") + ".*\\.gz$")) + #t))))) + (home-page + "https://github.com/docker/distribution") + (synopsis "This package is Docker toolset to pack, ship, store, and +deliver content") + (description "Docker Distribution is Docker toolset to pack, ship, +store, and deliver content. It's containe Docker Registry 2.0 and libraries +to interacting with distribution components.") + (license license:asl2.0)))) -- 2.17.0 From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 1/4] gnu: Add go-github-com-sirupsen-logrus. Resent-From: Leo Famulari Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 20 Jun 2018 16:57:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Rouby Pierre-Antoine Cc: 31881@debbugs.gnu.org Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.152951377817063 (code B ref 31881); Wed, 20 Jun 2018 16:57:02 +0000 Received: (at 31881) by debbugs.gnu.org; 20 Jun 2018 16:56:18 +0000 Received: from localhost ([127.0.0.1]:57888 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVgP4-0004R8-Kw for submit@debbugs.gnu.org; Wed, 20 Jun 2018 12:56:18 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:60039) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVgP2-0004R0-Ce for 31881@debbugs.gnu.org; Wed, 20 Jun 2018 12:56:16 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id E348B21C18; Wed, 20 Jun 2018 12:56:15 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Wed, 20 Jun 2018 12:56:15 -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=LtIQkdk78j7nLVqClTdsKz9133CmqZvxb3D+vvDAIEc=; b=AVSvy 22n59CBIiAkZO6hBJpWep9in1N2mw3664oyTv3qan0P6Lf9X5T2jWeWQamCJMjNj FiVPlIPq4seNSsC/lTzWPgH16LEZ0oAApZXVnhpZ60YkNnFo/oPN7C6uFZrPJbYq +le4+W1yVn02nDPZxu2DA/IbO1mwIStVtjPxZY= 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=fm3; bh=LtIQkdk78j7nLVqClTdsKz9133Cmq Zvxb3D+vvDAIEc=; b=T7qK2ZTRWe2R0tEj4mVmaZnLT1BTyPzMgMMxdn0l217Tc 3Zmkg/CQNze4HlZopH5r40KWOI0mOG42wFl4g5xdN3NkedI6FGQDmpWIHNIpVkFy GryuCwpRVx4l2Lgzon1BxaDgSF367zNwqtJ3vo4US84VHLjNLUhaC+Xm+h/uyJBn N88tBspooSH61k6FRN0/zntA300tFAccQfkgWM99Emy/mpmqDiMIqfyxT8W5HVyX uw9ldOC1Q4BQXYLHn+1gp9fqEuGaC+L9XYe7i1eVoytvia+jq+17fTEqlUs2y3Qh CV2uIgmfqPu442haj/gd9qRCUvNuskMKOsiC5ZfBA== X-ME-Proxy: X-ME-Sender: Received: from localhost (unknown [172.58.216.160]) by mail.messagingengine.com (Postfix) with ESMTPA id 8DA24E446F; Wed, 20 Jun 2018 12:56:15 -0400 (EDT) Date: Wed, 20 Jun 2018 12:56:14 -0400 From: Leo Famulari Message-ID: <20180620165614.GA1240@jasmine.lan> References: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="ikeVEW9yuYc//A+q" Content-Disposition: inline In-Reply-To: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> User-Agent: Mutt/1.10.0 (2018-05-17) X-Spam-Score: -0.7 (/) 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 (-) --ikeVEW9yuYc//A+q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Jun 19, 2018 at 10:43:30AM +0200, Rouby Pierre-Antoine wrote: > * gnu/packages/golang.scm (go-github-com-sirupsen-logrus): New variable. Thanks! Pushed as 7427b2c6c1e5495d551375edf0c4177ab56179d7 --ikeVEW9yuYc//A+q Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlsqhy4ACgkQJkb6MLrK fwgCww//WiC1IQWJZt2jJSPLBouLqw4Hn7yDUnoszqh8qahYGClH9F5RHySHzThg kn+udwscmLBsxkQvwuQvTOE+djUBUvc32GrCMiUFUSe73AphWWE9udy/O+89nDcb O/7KW7L2p7X2e9jqyk1LVuUKZLEyewqZLhxPhL1ghtttk7bVaAsc2QoXVxpk0weM MRRz+hEMb3AGE6MB4BKakE8cE2HRVlWDBiQYKg2FgM9ZQXxB6l+zYUYo57J7prtc n3RLzoEwr6dqxXVZd8TVwBXGqm2aRTiOjuAtYtc6BUdMV89GB3BwQdsj3mV7CgiT MBQMVKAVL+htlZA12yqOBRIK9TeJy6U0fceb3Tq4UcZaIdM8CveGXGFhOz/o9lQP RZAS0VflbnJRFuIDitlBN2x27I0BofCgWvkH2rYL0kRxvQO4OmUl0sHs/JyXUgcd XrmsRjO3V5EVAnkdufwICKPUcKsQf4vdtt24Cg+6nDp3PKO6DUaskKrupTrbWi4K 3QdTLoqGyru3NKkCTgl5ltaiSE2Zf9DeKlLEmQdWeLP7IZIj/ppMPBPxcxnSmG2s dYzWh7kUn3tixTatdbvAH2EQblZFWCm7encbpqrdw9zQyDTc25zYjzt9/lQnd4af QhT7TQheJ04/d/TvhT0G/ods+krQGlHnM5HrGW8WhLeVJfoOxbw= =xOsK -----END PGP SIGNATURE----- --ikeVEW9yuYc//A+q-- From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 2/4] gnu: Add go-github-com-kardianos-osext. Resent-From: Leo Famulari Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 20 Jun 2018 16:57:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Rouby Pierre-Antoine Cc: 31881@debbugs.gnu.org Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.152951381017109 (code B ref 31881); Wed, 20 Jun 2018 16:57:02 +0000 Received: (at 31881) by debbugs.gnu.org; 20 Jun 2018 16:56:50 +0000 Received: from localhost ([127.0.0.1]:57892 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVgPZ-0004Rs-Sf for submit@debbugs.gnu.org; Wed, 20 Jun 2018 12:56:50 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:58265) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVgPW-0004Rh-Cb for 31881@debbugs.gnu.org; Wed, 20 Jun 2018 12:56:46 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 3AECE20DC6; Wed, 20 Jun 2018 12:56:46 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Wed, 20 Jun 2018 12:56:46 -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=f57ZkxYLGu1vFiaimP38H7f1mMawRV22f3xGdC79T/8=; b=JWlAw hiaQ2gd748iCT9RJ4KLKVFJOQOUQt7wIp6DVMg9Kwolra35syOQQlSLqeR6Pxyou F5GUOOt9yMPjaO0fZN6MjQvM46+TqmTPDhOFydWr73OWv8jC7V9sAEhipOoVjCFH Ef73kXfL4mftCsCjC11+O+b/AVnd1SocN69fX8= 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=fm3; bh=f57ZkxYLGu1vFiaimP38H7f1mMawR V22f3xGdC79T/8=; b=aJUEiht0EusY8lxurmvWxWgcgCYW5waGChTDJyFmQAWIZ IcFCZ9ckdhF8dQPWZmqGs9ezLrWcx4tOHNVZRF+pFk577Zo0B1kAmeyozGPgfTib 7u9Bu2oRk5/wGAO7R1YoL3+eY3o0OU7SMIFDlAOYd61XkE5mNJ72ytsdhdIaYbkV 8jnSU07vU9z6ku2ZbiXUwVzPzRxwgLfidZYFwWl/d/O9obaXfOL+oxfoyCxGBEO5 B2+fCNNafves5jyDbfgJW9ARLaERkcz+XLJnOv0/n9cwLtlVpQUI0b7Jvkx1YYyg qBoO2Gy1Ik3lxF2YW+vLuBVcPGh/B7Q68sfg/N4MQ== X-ME-Proxy: X-ME-Sender: Received: from localhost (unknown [172.58.216.160]) by mail.messagingengine.com (Postfix) with ESMTPA id D2F25E446F; Wed, 20 Jun 2018 12:56:45 -0400 (EDT) Date: Wed, 20 Jun 2018 12:56:44 -0400 From: Leo Famulari Message-ID: <20180620165644.GB1240@jasmine.lan> References: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> <20180619084333.8993-2-pierre-antoine.rouby@inria.fr> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="3lcZGd9BuhuYXNfi" Content-Disposition: inline In-Reply-To: <20180619084333.8993-2-pierre-antoine.rouby@inria.fr> User-Agent: Mutt/1.10.0 (2018-05-17) X-Spam-Score: -0.7 (/) 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 (-) --3lcZGd9BuhuYXNfi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Jun 19, 2018 at 10:43:31AM +0200, Rouby Pierre-Antoine wrote: > * gnu/packages/golang.scm (go-github-com-kardianos-osext): New variable. We already have this package. I moved it from the Syncthing module to the Golang module. --3lcZGd9BuhuYXNfi Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlsqh0wACgkQJkb6MLrK fwiyKA//YPPZUAxnSpI8DjNVXhJFCu7/H4UA9hgrPYpXUDauH3uLxTMtj8z8nPGU D1FUiSF1U1o5HurHKOxoMLGL5cWUb3oWrSqwNm0JowV2mjyUeaRKiDDUBWd0thga 1lkeAYDUofPpq7HRWxhXakR66JMflbfLc0AAwcxyrkdfb6EgFMxgqs+cM8wwiwrX Ye1kgBnZ/B0Lox6XDx1pGd+/F+wVHr9ugvL23qzV5CuMqUJ+eQiW3/baivIrZsQg 2yGN7lCADkBolnl1Y//JM8wpmoJJ1J3Vb567hGCo/s3BB49daooKICHlT4//U1S6 mcjaVtTITWhPPJAgnIzbv3ZkuvMM52ncSF+Lgzs3QDY72p/cX2IwAHDIRi3rhT0F OeULiqS2HnwnfmK7u1sV4c5bRAQ0zENBbF8FeOyKQDDbdLa37QMFj31LLoak66iT UY+88HnM//QnWrRwO9S7xIB30J2O+7dT6fuKe1xKtzGq1pTBA7NF+rmJldJlVdNZ Zxpte5BjeV+tKZnztctNOEMqVQBKV9zIJtyVtsN2loeJkIUBF9J1EXfSJBawJWgx eLkEaCKbeCV7infXVITjSgcQs9d+QVOpk2UFo4th23ktbSno2/Liu1oHaToo6lCi tINxaQRF+ieSYAqvD4TndBkFDYfngQy1vip05ZPxvg4uFOD84Wo= =vJme -----END PGP SIGNATURE----- --3lcZGd9BuhuYXNfi-- From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 3/4] gnu: Add go-github-com-ayufan-golang-kardianos-service. Resent-From: Leo Famulari Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 20 Jun 2018 16:58:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Rouby Pierre-Antoine Cc: 31881@debbugs.gnu.org Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.152951387017219 (code B ref 31881); Wed, 20 Jun 2018 16:58:01 +0000 Received: (at 31881) by debbugs.gnu.org; 20 Jun 2018 16:57:50 +0000 Received: from localhost ([127.0.0.1]:57898 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVgQX-0004Te-NQ for submit@debbugs.gnu.org; Wed, 20 Jun 2018 12:57:49 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:46559) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVgQV-0004TV-Sz for 31881@debbugs.gnu.org; Wed, 20 Jun 2018 12:57:48 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id B49BF21687; Wed, 20 Jun 2018 12:57:47 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Wed, 20 Jun 2018 12:57:47 -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=rJR3713MHwEKukfz9PQazSHBXI8pUfsRXGBzfNlPr2w=; b=n1Vw5 ifAA0ChvUW2ObUp9lZyhlkx2J5icSliTBjG5H4xr76usA8ItATNPKrox+lUGQfi2 geCTRpuvEw65EqJbpn5CwIvONKqauDkGr8ReGT6CdykGSItWTFXe90zEjVjogl7O vSYSizpyQvYhsF5YHk7uVi94q3CPMrJ06OhIzU= 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=fm3; bh=rJR3713MHwEKukfz9PQazSHBXI8pU fsRXGBzfNlPr2w=; b=aFNqCpDnsW7W0uxpUGFKG7w+8U/uK1B18s1LqdDS3QFII 1Em+pqQVmKIob4SP3KTSH4UEgAXQLIyFfEel7uoAhLUbfWTUve2L+7Bi91mLruBM gAvukJMlVm1/+pKje7a0lKvOKUritGs4vGPO1K4QcHJIqGagz/+DSSl+93lrjhjp DpopCgpIV4+jQ56uwq29r79kkIlPBrgMhvUw73djDcbxk/4AnFReJ8pLd8oFGhp/ Wx36n4QWwjtBNSVbM/BupWFKCqL8wZZ8RtYFSdmOOd6NGe5qEqszFyDIGwqtGrjU qw3dRVag5pKBcWs/kYPhW6HJp3q83X0mIoYCrx/cQ== X-ME-Proxy: X-ME-Sender: Received: from localhost (unknown [172.58.216.160]) by mail.messagingengine.com (Postfix) with ESMTPA id 4936CE403B; Wed, 20 Jun 2018 12:57:47 -0400 (EDT) Date: Wed, 20 Jun 2018 12:57:46 -0400 From: Leo Famulari Message-ID: <20180620165746.GC1240@jasmine.lan> References: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> <20180619084333.8993-3-pierre-antoine.rouby@inria.fr> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="vEao7xgI/oilGqZ+" Content-Disposition: inline In-Reply-To: <20180619084333.8993-3-pierre-antoine.rouby@inria.fr> User-Agent: Mutt/1.10.0 (2018-05-17) X-Spam-Score: -0.7 (/) 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 (-) --vEao7xgI/oilGqZ+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Jun 19, 2018 at 10:43:32AM +0200, Rouby Pierre-Antoine wrote: > * gnu/packages/golang.scm (go-github-com-ayufan-golang-kardianos-service): > New variable. Thanks! Pushed as aed4944d51669089620d8fe13b2e63c59e722b79. By the way, this package is a fork of , which has more recent maintenance. --vEao7xgI/oilGqZ+ Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlsqh4oACgkQJkb6MLrK fwhyIQ//ZSTj16jxJFAIWT29D7VFIBOECNH3h/X4n95PThdEz7g5e/h5WD4DfpII Kh2bAif6I/a76GyxSyXzcYtp2ynkQl/fGUqA+kl0wmp/WBSHYgX6ncd0yOUyoI54 rSEaH6NjSVsUINldVnVm0v59uWrsd1OHo5PKWuNZv67BljGoXdo+wCqlW/NbYjTL e7PUm3mEg0uNXnwBMRW7iOZPu9K36jhcUO3gyEFsm4l8G78cThHRLiLU1CBw4uzy KawpcHfTGZ2bfUdhNqBdPSlgGt5A4RS5H6bcf28pM0bmRrac5C92qAhYntRg8oA3 3nbh3XtJ2R4GY84yml3Lqw+0kPG8CoZJzz1v1s30QLGVdNEv4nXNlY5FZZ8eeWn1 /e/dymduSKsrZkaCJbT5CFrZvGit+cjI3k1KlAwHSo1wW8WG5UMzZup5BaUB4NHv ZiIApISIv0m1C5zYsipmP02aZ6GpvLGltZI96uq+t6mMqKc8iO+fsYXoe6jfgVKC CmUpotRuGTB6e+GQabPPzIbAw9ahFUenUEm/vJaAI9cz4QOOM2XDZZvmeHd4UxQJ vXgKlLtQljIQVN6UZYYgK97QYoVwa6j44J022+rFIJWB2sWcUd/bocJjZkmoTMfP TaL5y70hgGEVIOzV/p4MG09fx0KbvnmWEDUhqFI7SA52Ohc2Qmg= =DReL -----END PGP SIGNATURE----- --vEao7xgI/oilGqZ+-- From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 4/4] gnu: Add go-github-com-docker-distribution. Resent-From: Leo Famulari Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 20 Jun 2018 17:01:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Rouby Pierre-Antoine Cc: 31881@debbugs.gnu.org Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.152951405117570 (code B ref 31881); Wed, 20 Jun 2018 17:01:02 +0000 Received: (at 31881) by debbugs.gnu.org; 20 Jun 2018 17:00:51 +0000 Received: from localhost ([127.0.0.1]:57903 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVgTT-0004ZK-5r for submit@debbugs.gnu.org; Wed, 20 Jun 2018 13:00:51 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:52507) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVgTR-0004ZD-Vq for 31881@debbugs.gnu.org; Wed, 20 Jun 2018 13:00:50 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id CEE6A21E59; Wed, 20 Jun 2018 13:00:49 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Wed, 20 Jun 2018 13:00:49 -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=KXISIFzEndOofwJuU+nLy5OgSPJa6N/bEfRPovBFli4=; b=HsWcW Ri5rkCzqpt6rc9XVzk+bjQyN88ZVOSPlVZhTBg2ZNQuDYr1bphB5F18DUnxmcdQa 8PkjloIBTAzOrBfYxEF86ewGoVNzRMO6kS0EeU0AVT3ou6NJ9UgW/a0tmIHHYaPA Wsb2HGLkCb8vn27A/DvCBP9hqczwKhrP6ANPUE= 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=fm3; bh=KXISIFzEndOofwJuU+nLy5OgSPJa6 N/bEfRPovBFli4=; b=CflTDQ82ElkitgDjASActgg5jYFbh6iugPzbJ5U1bFGik egBF1V4MCVO+aq/5j3TCfK7mdzKk1KLcKfrJuTEIL3fI8EwN3iNNe51rUsGEiGvZ tW/OJbDpHDZmkxJ/9qkuSJhyfuDja9tY7ycnOsX1EYy8E7uFRCpnMqzO1kDJRHWQ WOUBUOqar/2jBPFhvACqm2D8HgIy0L9v6X4O/EJdz62n4rifNy2LsioA/IRv0Pfs 3LA5asIXwDqKzlSvEl62sbUlV6e7/sH7EtME+IXwGyBEtbG9VH9PhzDRuhxG0WaJ skh8DMqO2Jf1JiT/XRF9UJIRMqg8MwfqrKz7VIuPQ== X-ME-Proxy: X-ME-Sender: Received: from localhost (unknown [172.58.216.160]) by mail.messagingengine.com (Postfix) with ESMTPA id 6A593E4F0C; Wed, 20 Jun 2018 13:00:49 -0400 (EDT) Date: Wed, 20 Jun 2018 13:00:48 -0400 From: Leo Famulari Message-ID: <20180620170048.GD1240@jasmine.lan> References: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> <20180619084333.8993-4-pierre-antoine.rouby@inria.fr> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="PHCdUe6m4AxPMzOu" Content-Disposition: inline In-Reply-To: <20180619084333.8993-4-pierre-antoine.rouby@inria.fr> User-Agent: Mutt/1.10.0 (2018-05-17) X-Spam-Score: -0.7 (/) 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 (-) --PHCdUe6m4AxPMzOu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Jun 19, 2018 at 10:43:33AM +0200, Rouby Pierre-Antoine wrote: > * gnu/packages/golang.scm (go-github-com-docker-distribution): New variable. > + (source > + (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/docker/distribution") > + (commit commit))) This bundles its entire dependency graph, including the logrus module you just packaged, and some other things we have packaged: https://github.com/docker/distribution/tree/master/vendor I think it's okay to add the package with the bundled code if everything is freely licensed. Can you confirm that it is? --PHCdUe6m4AxPMzOu Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlsqiEAACgkQJkb6MLrK fwgnrg/7BhIR4rB8MFG5i5lhR2TZGKM6k8r34f4PJoF0rQxDXC0BGgftlSk9F5w9 yMMra4Di3RwcTh4mqwT/hvzblQiGZfRAX9s1ce8MIWD7qqHUKrUQuetBOyv4iu0n mh7ABn8mUanP9Ipcrj2Wveh02X7BQs5uvURTZ7YeVtwCP0QV4WiLRfcYt+YJ0WwK ZhGuuU7rT0MH+Ti9cRlPPbwHjSiB+rz/kR1NquJvNZf6fykGm5ur7jeO9JTMU0Sa 89JO33r88o4hiOJP9cXcesQ/rKks0J9Q/rdsyFM3/QLQvTFCRt21G72trx3nOFk9 QdAksT80FsDcoFsSKhLtujpnA6MfTVSnIn33Q72+mSa1adFFXwPhjZtwrCCVs8YZ XW5fZUgQXuCrGH2bFMVDuTm76TFMAiu7s28OxQq5zACpQcJbXWWScqJB0C4mLtgz EszKFyMIREn9ixuF/fDCfixL2U1/yt4FhWKw2xfd4CluJoRUrF6ODmDgi8FZvZbF uv51ld3KUPgI3LJ6MQwvxaft23VfGV+uobBf+hoSP1EOk3CujyJFBap5kukUWiZu l4seKtl96U8luk4q2uQS7p/npRFUsn4wcDyIAzttAJdCidJd+MupFUSz9vy1Dp18 CrxD8B0YNWS4Ym5Gl8KpUnVh5xOy2Wf8bUDChlxByUM4sS8ILEY= =VgPx -----END PGP SIGNATURE----- --PHCdUe6m4AxPMzOu-- From unknown Sun Jun 22 01:00:52 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31881] [PATCH 4/4] gnu: Add go-github-com-docker-distribution. Resent-From: Pierre-Antoine Rouby Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 26 Jun 2018 15:21:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31881 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Leo Famulari Cc: 31881@debbugs.gnu.org Received: via spool by 31881-submit@debbugs.gnu.org id=B31881.153002642413617 (code B ref 31881); Tue, 26 Jun 2018 15:21:01 +0000 Received: (at 31881) by debbugs.gnu.org; 26 Jun 2018 15:20:24 +0000 Received: from localhost ([127.0.0.1]:36397 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fXplY-0003XZ-Aj for submit@debbugs.gnu.org; Tue, 26 Jun 2018 11:20:24 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:12596) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fXplV-0003XL-Pp for 31881@debbugs.gnu.org; Tue, 26 Jun 2018 11:20:22 -0400 X-IronPort-AV: E=Sophos;i="5.51,274,1526335200"; d="scan'208";a="333388885" Received: from zcs-store4.inria.fr ([128.93.142.31]) by mail2-relais-roc.national.inria.fr with ESMTP; 26 Jun 2018 17:20:09 +0200 Date: Tue, 26 Jun 2018 17:20:09 +0200 (CEST) From: Pierre-Antoine Rouby Message-ID: <1040680639.2490239.1530026409131.JavaMail.zimbra@inria.fr> In-Reply-To: <20180620170048.GD1240@jasmine.lan> References: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> <20180619084333.8993-4-pierre-antoine.rouby@inria.fr> <20180620170048.GD1240@jasmine.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Originating-IP: [193.50.110.173] X-Mailer: Zimbra 8.7.11_GA_2095 (ZimbraWebClient - FF52 (Win)/8.7.11_GA_2095) Thread-Topic: Add go-github-com-docker-distribution. Thread-Index: WRkiqDZFutwKKjVY0Wjp6fjRH8CAqw== X-Spam-Score: -5.0 (-----) 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 (------) Hi Leo, > From: "Leo Famulari" >> + (source >> + (origin >> + (method git-fetch) >> + (uri (git-reference >> + (url "https://github.com/docker/distribution") >> + (commit commit))) > > This bundles its entire dependency graph, including the logrus module > you just packaged, and some other things we have packaged: I'm not sure vendor version is the same as package version. I have the impression some Go package have no tag or CHANGELOG, so I'm not sure for compatibility. Without explicit version number I thinks is more sure to use the vendor version. > I think it's okay to add the package with the bundled code if everything > is freely licensed. Can you confirm that it is? Yes, everything is free. From unknown Sun Jun 22 01:00:52 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Rouby Pierre-Antoine Subject: bug#31881: closed (Re: [bug#31881] [PATCH 4/4] gnu: Add go-github-com-docker-distribution.) Message-ID: References: <87fu0v3u66.fsf@gnu.org> <20180618151543.2921-1-pierre-antoine.rouby@inria.fr> X-Gnu-PR-Message: they-closed 31881 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 31881@debbugs.gnu.org Date: Sat, 07 Jul 2018 16:09:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1530979742-31122-1" This is a multi-part message in MIME format... ------------=_1530979742-31122-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #31881: [PATCH 1/4] gnu: Add go-github-com-sirupsen-logrus. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 31881@debbugs.gnu.org. --=20 31881: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D31881 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1530979742-31122-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 31881-done) by debbugs.gnu.org; 7 Jul 2018 16:08:43 +0000 Received: from localhost ([127.0.0.1]:50338 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fbplK-00085O-Sb for submit@debbugs.gnu.org; Sat, 07 Jul 2018 12:08:43 -0400 Received: from eggs.gnu.org ([208.118.235.92]:40765) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fbplJ-00085D-B3 for 31881-done@debbugs.gnu.org; Sat, 07 Jul 2018 12:08:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fbplD-000293-1u for 31881-done@debbugs.gnu.org; Sat, 07 Jul 2018 12:08:36 -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 fencepost.gnu.org ([2001:4830:134:3::e]:54520) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fbplC-00028t-Ty; Sat, 07 Jul 2018 12:08:34 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=59654 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1fbplC-0007GO-JM; Sat, 07 Jul 2018 12:08:34 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Pierre-Antoine Rouby Subject: Re: [bug#31881] [PATCH 4/4] gnu: Add go-github-com-docker-distribution. References: <20180619084333.8993-1-pierre-antoine.rouby@inria.fr> <20180619084333.8993-4-pierre-antoine.rouby@inria.fr> <20180620170048.GD1240@jasmine.lan> <1040680639.2490239.1530026409131.JavaMail.zimbra@inria.fr> Date: Sat, 07 Jul 2018 18:08:33 +0200 In-Reply-To: <1040680639.2490239.1530026409131.JavaMail.zimbra@inria.fr> (Pierre-Antoine Rouby's message of "Tue, 26 Jun 2018 17:20:09 +0200 (CEST)") Message-ID: <87fu0v3u66.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 31881-done Cc: 31881-done@debbugs.gnu.org, Leo Famulari 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 (------) Hello! Pierre-Antoine Rouby skribis: >> From: "Leo Famulari" >>> + (source >>> + (origin >>> + (method git-fetch) >>> + (uri (git-reference >>> + (url "https://github.com/docker/distribution") >>> + (commit commit))) >> >> This bundles its entire dependency graph, including the logrus module >> you just packaged, and some other things we have packaged: > > I'm not sure vendor version is the same as package version. I have the > impression some Go package have no tag or CHANGELOG, so I'm not sure for > compatibility. Without explicit version number I thinks is more sure to > use the vendor version. > >> I think it's okay to add the package with the bundled code if everything >> is freely licensed. Can you confirm that it is? > > Yes, everything is free. Based on this I went ahead and applied it, but I added a FIXME about bundling. P-A, could you look into unbundling at least those that are already packaged? Thank you! Ludo=E2=80=99. ------------=_1530979742-31122-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 18 Jun 2018 15:16:17 +0000 Received: from localhost ([127.0.0.1]:55153 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUvtA-000622-OC for submit@debbugs.gnu.org; Mon, 18 Jun 2018 11:16:17 -0400 Received: from eggs.gnu.org ([208.118.235.92]:33807) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUvt9-00061p-43 for submit@debbugs.gnu.org; Mon, 18 Jun 2018 11:16:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fUvt3-0004yH-23 for submit@debbugs.gnu.org; Mon, 18 Jun 2018 11:16:10 -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]:39542) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fUvt2-0004yD-Uj for submit@debbugs.gnu.org; Mon, 18 Jun 2018 11:16:08 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52991) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fUvt1-0008Hc-E4 for guix-patches@gnu.org; Mon, 18 Jun 2018 11:16:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fUvsy-0004tB-6P for guix-patches@gnu.org; Mon, 18 Jun 2018 11:16:07 -0400 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:47217) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fUvsx-0004qe-Rg for guix-patches@gnu.org; Mon, 18 Jun 2018 11:16:04 -0400 X-IronPort-AV: E=Sophos;i="5.51,239,1526335200"; d="scan'208";a="269182412" Received: from unknown (HELO Bordeciel.bordeaux.inria.fr) ([193.50.110.173]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 18 Jun 2018 17:16:00 +0200 From: Rouby Pierre-Antoine To: guix-patches@gnu.org Subject: [PATCH 1/4] gnu: Add go-github-com-sirupsen-logrus. Date: Mon, 18 Jun 2018 17:15:43 +0200 Message-Id: <20180618151543.2921-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-sirupsen-logrus): New variable. --- gnu/packages/golang.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 6c21181da..3d1fc5b6d 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1703,3 +1703,37 @@ incoming requests to their respective handler.") "Pflag is library to replace Go's flag package, implementing POSIX/GNU-style --flags.") (license license:bsd-3)))) + +(define-public go-github-com-sirupsen-logrus + (let ((commit "4b6ea7319e214d98c938f12692336f7ca9348d6b") + (revision "0")) + (package + (name "go-github-com-sirupsen-logrus") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "06wnl1dkkib2zpm31aavk5c4290s64h2ss68nl1vgcbxzsfbxjaq")))) + (build-system go-build-system) + (native-inputs + `(("go-golang-org-x-crypto-ssh-terminal" + ,go-golang-org-x-crypto-ssh-terminal) + ("go-github-com-stretchr-testify" + ,go-github-com-stretchr-testify) + ("go-golang-org-x-sys-unix" + ,go-golang-org-x-sys-unix))) + (arguments + '(#:tests? #f ;FIXME missing dependencies + #:import-path "github.com/sirupsen/logrus")) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "This packages is structured, pluggable logging for Go") + (description + "Logrus is a structured logger for Go, completely API compatible with +the standard library logger.") + (license license:expat)))) -- 2.17.0 ------------=_1530979742-31122-1--