From unknown Sat Jun 21 10:32:42 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#63003 <63003@debbugs.gnu.org> To: bug#63003 <63003@debbugs.gnu.org> Subject: Status: [PATCH 0/3] gnu: Add restic-rest-server. Reply-To: bug#63003 <63003@debbugs.gnu.org> Date: Sat, 21 Jun 2025 17:32:42 +0000 retitle 63003 [PATCH 0/3] gnu: Add restic-rest-server. reassign 63003 guix-patches submitter 63003 Timo Wilken severity 63003 normal tag 63003 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 21 15:54:06 2023 Received: (at submit) by debbugs.gnu.org; 21 Apr 2023 19:54:06 +0000 Received: from localhost ([127.0.0.1]:41189 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppwpa-00036X-8F for submit@debbugs.gnu.org; Fri, 21 Apr 2023 15:54:06 -0400 Received: from lists.gnu.org ([209.51.188.17]:34640) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppwpV-00035z-I2 for submit@debbugs.gnu.org; Fri, 21 Apr 2023 15:54:04 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ppwpV-0000rS-2w for guix-patches@gnu.org; Fri, 21 Apr 2023 15:54:01 -0400 Received: from mx1.mythic-beasts.com ([2a00:1098:0:86:1000:0:2:1]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ppwpT-0001UM-CR for guix-patches@gnu.org; Fri, 21 Apr 2023 15:54:00 -0400 Received: by mailhub-cam-d.mythic-beasts.com with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ppwpR-001wa8-Hj; Fri, 21 Apr 2023 20:53:57 +0100 From: Timo Wilken To: guix-patches@gnu.org Subject: [PATCH 0/3] gnu: Add restic-rest-server. Date: Fri, 21 Apr 2023 21:53:11 +0200 Message-Id: <20230421195311.9345-1-guix@twilken.net> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BlackCat-Spam-Score: 49 X-Spam-Status: No, score=4.9 Received-SPF: pass client-ip=2a00:1098:0:86:1000:0:2:1; envelope-from=guix@twilken.net; helo=mx1.mythic-beasts.com X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Timo Wilken X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) The restic REST server is a Go program that serves a restic backup repository over HTTP. Almost all dependencies were already packaged in Guix, though some in (gnu packages syncthing). I moved these to (gnu packages golang) with the rest of the Go dependencies, as that seemed appropriate. Timo Wilken (3): gnu: Move golang dependencies to (gnu packages golang). gnu: Add go-github-com-coreos-go-systemd-activation. gnu: Add restic-rest-server. gnu/packages/backup.scm | 48 ++++++++++++++++ gnu/packages/golang.scm | 115 ++++++++++++++++++++++++++++++++++++- gnu/packages/syncthing.scm | 90 ----------------------------- 3 files changed, 162 insertions(+), 91 deletions(-) base-commit: 13ebf5e36cc676627a19072d3712c399b7aae61f -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 21 15:55:48 2023 Received: (at 63003) by debbugs.gnu.org; 21 Apr 2023 19:55:48 +0000 Received: from localhost ([127.0.0.1]:41196 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppwrC-0003E2-Lz for submit@debbugs.gnu.org; Fri, 21 Apr 2023 15:55:48 -0400 Received: from mx1.mythic-beasts.com ([46.235.224.141]:48859) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppwrA-0003D7-BM for 63003@debbugs.gnu.org; Fri, 21 Apr 2023 15:55:45 -0400 Received: by mailhub-cam-d.mythic-beasts.com with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ppwr4-001yrJ-1X; Fri, 21 Apr 2023 20:55:38 +0100 From: Timo Wilken To: 63003@debbugs.gnu.org Subject: [PATCH 1/3] gnu: Move golang dependencies to (gnu packages golang). Date: Fri, 21 Apr 2023 21:55:13 +0200 Message-Id: <20230421195515.10316-1-guix@twilken.net> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BlackCat-Spam-Score: 49 X-Spam-Status: No, score=4.9 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 63003 Cc: Timo Wilken 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 (---) These packages are needed by syncthing and the new restic-rest-server package, so put them in (gnu packages golang) instead. * gnu/packages/syncthing.scm (go-github-com-prometheus-common, go-github-com-prometheus-procfs, go-github-com-prometheus-client-golang): Delete variables. * gnu/packages/golang.scm (go-github-com-prometheus-common, go-github-com-prometheus-procfs, go-github-com-prometheus-client-golang): Move deleted variables here. --- gnu/packages/golang.scm | 90 ++++++++++++++++++++++++++++++++++++++ gnu/packages/syncthing.scm | 90 -------------------------------------- 2 files changed, 90 insertions(+), 90 deletions(-) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 24dae34e20..cca5aacdb6 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -9497,6 +9497,96 @@ (define-public go-github-com-godbus-dbus bindings for the D-Bus message bus system.") (license license:bsd-2))) +(define-public go-github-com-prometheus-common + (package + (name "go-github-com-prometheus-common") + (version "0.4.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/prometheus/common" + #:tests? #f + #:phases + (modify-phases %standard-phases + ;; Source-only package + (delete 'build)))) + (propagated-inputs + (list go-github-com-golang-protobuf-proto + go-github-com-matttproud-golang-protobuf-extensions-pbutil + go-github-com-prometheus-client-model)) + (synopsis "Prometheus metrics") + (description "This package provides tools for reading and writing +Prometheus metrics.") + (home-page "https://github.com/prometheus/common") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.4") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1z5jq5rjala0a0di4nwk1rai0z9f73qwqj6mgcbpjbg2qknlb544")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/prometheus/procfs" + ;; The tests require Go modules, which are not yet supported in Guix's + ;; Go build system. + #:tests? #f)) + (synopsis "Go library for reading @file{/proc}") + (description "The @code{procfs} Go package provides functions to retrieve +system, kernel, and process metrics from the @file{/proc} pseudo file system.") + (home-page "https://github.com/prometheus/procfs") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-golang + (package + (name "go-github-com-prometheus-client-golang") + (version "1.2.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0zs49psk23n9z8wrl02d5vib5wclpym8kaxcy6n5pk696i419065")))) + (build-system go-build-system) + (arguments + '(#:tests? #f + #:import-path "github.com/prometheus/client_golang" + #:phases + (modify-phases %standard-phases + ;; Source-only package + (delete 'build)))) + (propagated-inputs + (list go-github-com-beorn7-perks-quantile + go-github-com-golang-protobuf-proto + go-github-com-prometheus-client-model + go-github-com-prometheus-common + go-github-com-prometheus-procfs + go-github-com-cespare-xxhash)) + (synopsis "HTTP server and client tools for Prometheus") + (description "This package @code{promhttp} provides HTTP client and +server tools for Prometheus metrics.") + (home-page "https://github.com/prometheus/client_golang") + (license license:asl2.0))) + (define-public go-github-com-zalando-go-keyring (package (name "go-github-com-zalando-go-keyring") diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index c4204f32fe..dd54100ce6 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -877,96 +877,6 @@ (define-public go-github-com-matttproud-golang-protobuf-extensions-pbutil (home-page "https://github.com/matttproud/golang_protobuf_extensions") (license asl2.0)))) -(define-public go-github-com-prometheus-common - (package - (name "go-github-com-prometheus-common") - (version "0.4.1") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/prometheus/common" - #:tests? #f - #:phases - (modify-phases %standard-phases - ;; Source-only package - (delete 'build)))) - (propagated-inputs - (list go-github-com-golang-protobuf-proto - go-github-com-matttproud-golang-protobuf-extensions-pbutil - go-github-com-prometheus-client-model)) - (synopsis "Prometheus metrics") - (description "This package provides tools for reading and writing -Prometheus metrics.") - (home-page "https://github.com/prometheus/common") - (license asl2.0))) - -(define-public go-github-com-prometheus-procfs - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.4") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1z5jq5rjala0a0di4nwk1rai0z9f73qwqj6mgcbpjbg2qknlb544")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/prometheus/procfs" - ;; The tests require Go modules, which are not yet supported in Guix's - ;; Go build system. - #:tests? #f)) - (synopsis "Go library for reading @file{/proc}") - (description "The @code{procfs} Go package provides functions to retrieve -system, kernel, and process metrics from the @file{/proc} pseudo file system.") - (home-page "https://github.com/prometheus/procfs") - (license asl2.0))) - -(define-public go-github-com-prometheus-client-golang - (package - (name "go-github-com-prometheus-client-golang") - (version "1.2.1") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0zs49psk23n9z8wrl02d5vib5wclpym8kaxcy6n5pk696i419065")))) - (build-system go-build-system) - (arguments - '(#:tests? #f - #:import-path "github.com/prometheus/client_golang" - #:phases - (modify-phases %standard-phases - ;; Source-only package - (delete 'build)))) - (propagated-inputs - (list go-github-com-beorn7-perks-quantile - go-github-com-golang-protobuf-proto - go-github-com-prometheus-client-model - go-github-com-prometheus-common - go-github-com-prometheus-procfs - go-github-com-cespare-xxhash)) - (synopsis "HTTP server and client tools for Prometheus") - (description "This package @code{promhttp} provides HTTP client and -server tools for Prometheus metrics.") - (home-page "https://github.com/prometheus/client_golang") - (license asl2.0))) - (define-public go-github-com-go-asn1-ber-asn1-ber (package (name "go-github-com-go-asn1-ber-asn1-ber") -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 21 15:55:51 2023 Received: (at 63003) by debbugs.gnu.org; 21 Apr 2023 19:55:52 +0000 Received: from localhost ([127.0.0.1]:41198 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppwrH-0003Ec-Cy for submit@debbugs.gnu.org; Fri, 21 Apr 2023 15:55:51 -0400 Received: from mx1.mythic-beasts.com ([46.235.224.141]:43097) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppwrB-0003DK-C6 for 63003@debbugs.gnu.org; Fri, 21 Apr 2023 15:55:47 -0400 Received: by mailhub-cam-d.mythic-beasts.com with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ppwr4-001yrJ-TC; Fri, 21 Apr 2023 20:55:39 +0100 From: Timo Wilken To: 63003@debbugs.gnu.org Subject: [PATCH 3/3] gnu: Add restic-rest-server. Date: Fri, 21 Apr 2023 21:55:15 +0200 Message-Id: <20230421195515.10316-3-guix@twilken.net> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230421195515.10316-1-guix@twilken.net> References: <20230421195515.10316-1-guix@twilken.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BlackCat-Spam-Score: 9 X-Spam-Status: No, score=0.9 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 63003 Cc: Timo Wilken 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 (---) * gnu/packages/backup.scm (restic-rest-server): New variable. --- gnu/packages/backup.scm | 48 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 134647d33d..94e8e3acc4 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -23,6 +23,7 @@ ;;; Copyright © 2021 Sarah Morgensen ;;; Copyright © 2022 Maxim Cournoyer ;;; Copyright © 2022 Feng Shu +;;; Copyright © 2023 Timo Wilken ;;; ;;; This file is part of GNU Guix. ;;; @@ -1029,6 +1030,53 @@ (define-public restic @end itemize") (license license:bsd-2))) +(define-public restic-rest-server + (package + (name "restic-rest-server") + (version "0.11.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/restic/rest-server") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1nvmxc9x0mlks6yfn66fmwn50k5q83ip4g9vvb0kndzd7hwcyacy")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/restic/rest-server/cmd/rest-server" + #:unpack-path "github.com/restic/rest-server" + #:install-source? #f ;all we need is the binary + #:phases (modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys . args) + (when tests? + ;; Unit tests seems to break with Guix' non-standard TMPDIR. + (setenv "TMPDIR" "/tmp") + (apply (assoc-ref %standard-phases + 'check) args)))) + (add-after 'install 'rename-binary + (lambda* (#:key outputs #:allow-other-keys) + (with-directory-excursion (assoc-ref outputs "out") + ;; "rest-server" is a bit too generic. + (rename-file "bin/rest-server" + "bin/restic-rest-server"))))))) + (propagated-inputs (list go-golang-org-x-crypto + go-github-com-spf13-cobra + go-github-com-prometheus-client-golang + go-github-com-miolini-datacounter + go-github-com-minio-sha256-simd + go-github-com-gorilla-handlers + go-github-com-coreos-go-systemd-activation)) + (home-page "https://github.com/restic/rest-server") + (synopsis "Restic REST server") + (description + "The Restic REST server is a high performance HTTP server that implements +restic's REST backend API. It provides a secure and efficient way to backup +data remotely, using the restic backup client and a @code{rest:} URL.") + (license license:bsd-2))) + (define-public zbackup (package (name "zbackup") -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 21 15:55:52 2023 Received: (at 63003) by debbugs.gnu.org; 21 Apr 2023 19:55:52 +0000 Received: from localhost ([127.0.0.1]:41200 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppwrH-0003Ei-Ve for submit@debbugs.gnu.org; Fri, 21 Apr 2023 15:55:52 -0400 Received: from mx1.mythic-beasts.com ([46.235.224.141]:34391) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppwrA-0003D9-BL for 63003@debbugs.gnu.org; Fri, 21 Apr 2023 15:55:47 -0400 Received: by mailhub-cam-d.mythic-beasts.com with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ppwr4-001yrJ-Gg; Fri, 21 Apr 2023 20:55:38 +0100 From: Timo Wilken To: 63003@debbugs.gnu.org Subject: [PATCH 2/3] gnu: Add go-github-com-coreos-go-systemd-activation. Date: Fri, 21 Apr 2023 21:55:14 +0200 Message-Id: <20230421195515.10316-2-guix@twilken.net> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230421195515.10316-1-guix@twilken.net> References: <20230421195515.10316-1-guix@twilken.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BlackCat-Spam-Score: 49 X-Spam-Status: No, score=4.9 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 63003 Cc: Timo Wilken 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 (---) Required by restic-rest-server; see following commit. * gnu/packages/golang.scm (go-github-com-coreos-go-systemd-activation): New variable. --- gnu/packages/golang.scm | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index cca5aacdb6..78864291ae 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -8964,6 +8964,29 @@ (define-public go-github-com-coreos-go-semver It lets you parse and compare two semantic version strings.") (license license:asl2.0))) +(define-public go-github-com-coreos-go-systemd-activation + (package + (name "go-github-com-coreos-go-systemd-activation") + (version "0.0.0-20191104093116-d3cd4ed1dbcf") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "193mgqn7n4gbb8jb5kyn6ml4lbvh4xs55qpjnisaz7j945ik3kd8")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/coreos/go-systemd/activation" + #:unpack-path "github.com/coreos/go-systemd")) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "Go bindings to systemd socket activation") + (description "Go bindings to systemd socket activation; for writing and +using socket activation from Go.") + (license license:asl2.0))) + (define-public go-github-com-emirpasic-gods (package (name "go-github-com-emirpasic-gods") @@ -8980,7 +9003,7 @@ (define-public go-github-com-emirpasic-gods (build-system go-build-system) (arguments `(#:import-path "github.com/emirpasic/gods" - ; Source-only package + ; Source-only package #:tests? #f #:phases (modify-phases %standard-phases -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 21 15:59:39 2023 Received: (at 63003) by debbugs.gnu.org; 21 Apr 2023 19:59:39 +0000 Received: from localhost ([127.0.0.1]:41206 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppwuw-0003Lr-TX for submit@debbugs.gnu.org; Fri, 21 Apr 2023 15:59:39 -0400 Received: from mx1.mythic-beasts.com ([46.235.224.141]:41131) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppwuu-0003LZ-D4 for 63003@debbugs.gnu.org; Fri, 21 Apr 2023 15:59:36 -0400 Received: by mailhub-cam-d.mythic-beasts.com with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ppwuo-001zG0-NX; Fri, 21 Apr 2023 20:59:30 +0100 Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Fri, 21 Apr 2023 21:59:24 +0200 Message-Id: Subject: Re: [PATCH 2/3] gnu: Add go-github-com-coreos-go-systemd-activation. From: "Timo Wilken" To: <63003@debbugs.gnu.org> X-Mailer: aerc 0.14.0 References: <20230421195515.10316-1-guix@twilken.net> <20230421195515.10316-2-guix@twilken.net> In-Reply-To: <20230421195515.10316-2-guix@twilken.net> X-BlackCat-Spam-Score: 7 X-Spam-Status: No, score=0.7 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 63003 Cc: guix@twilken.net 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 (---) On Fri Apr 21, 2023 at 9:55 PM CEST, Timo Wilken wrote: > Required by restic-rest-server; see following commit. > > * gnu/packages/golang.scm (go-github-com-coreos-go-systemd-activation): N= ew variable. >=20 > @@ -8980,7 +9003,7 @@ (define-public go-github-com-emirpasic-gods > (build-system go-build-system) > (arguments > `(#:import-path "github.com/emirpasic/gods" > - ; Source-only package > + ; Source-only package > #:tests? #f > #:phases > (modify-phases %standard-phases Oops, sorry about this accidental reformatting! Should I resend this patch series or can that be removed when applying the commit? From debbugs-submit-bounces@debbugs.gnu.org Sun Apr 23 10:47:49 2023 Received: (at 63003-done) by debbugs.gnu.org; 23 Apr 2023 14:47:49 +0000 Received: from localhost ([127.0.0.1]:46594 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pqb0H-0002N2-8Z for submit@debbugs.gnu.org; Sun, 23 Apr 2023 10:47:49 -0400 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:60717) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pqb0F-0002Mn-Ih for 63003-done@debbugs.gnu.org; Sun, 23 Apr 2023 10:47:48 -0400 Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 3F3505C003E; Sun, 23 Apr 2023 10:47:42 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sun, 23 Apr 2023 10:47:42 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=cc:cc:content-type:content-type:date:date:from:from :in-reply-to:in-reply-to:message-id:mime-version:references :reply-to:sender:subject:subject:to:to; s=mesmtp; t=1682261262; x=1682347662; bh=Dwm8Gv7BnTpzvkFYrBMYJGaZa8p3u9Y8UbXGjdk3xQ8=; b= v0padEmHaWVElbJ4zHToTFxfH1GfhzTPyGxtyZj8SNntaa3gAftAsMTEk0HWe9G3 kmdW8KX6VaBYC37/O7d7YT326X2KGCinnu4YNvPnSBGbWsFjx5mRsuo7Op5TgwJh Vd+Zvbq6vFC3fI0OfJhR9uDpHhe+bB5/LF8Y4SEyUzI= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-type:content-type:date:date :feedback-id:feedback-id:from:from:in-reply-to:in-reply-to :message-id:mime-version:references:reply-to:sender:subject :subject:to:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm3; t=1682261262; x=1682347662; bh=Dwm8Gv7BnTpzv kFYrBMYJGaZa8p3u9Y8UbXGjdk3xQ8=; b=HuroEvaEkqiU+0zmHsdOvLWgc3pGb RmCRSMfmmFQGpulZ0qaYbsdu5CZBTVeY0vL3NvP8SCMgeLWSEppMMFNcsHcJA1ac VD3MxAmrv5LHUxYN7iRKRnyunB9X2iSX+JKCl35yNthrnhoBOv6aYJm62YvYjJ4N aiVbVRVQX3HHJnNQlMXWyTwfZcuZvL+Npxc6r3nqB01qDMinbEOFCTRPRQnBXkJT FloW+e8U1Vnx0qENZ0KXkEOwymKumqSqSsUeMo5viIkK5zdlX1/RKxrjcMNcFOt6 F+i3kwbnCLtz8hg24+JB3kdlgUhzB6u/Irvd4M3vW/Kwd58OsUbAfxdbg== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvhedrfedtkedgkeduucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucenucfjughrpeffhffvvefukfhfgggtuggjsehttd ertddttddvnecuhfhrohhmpefnvghoucfhrghmuhhlrghrihcuoehlvghosehfrghmuhhl rghrihdrnhgrmhgvqeenucggtffrrghtthgvrhhnpeeiteduheefkeeufeelgeduhfejgf elheefleeuhfeffffgueduleehvdejleeiteenucevlhhushhtvghrufhiiigvpedtnecu rfgrrhgrmhepmhgrihhlfhhrohhmpehlvghosehfrghmuhhlrghrihdrnhgrmhgv X-ME-Proxy: Feedback-ID: i819c4023:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sun, 23 Apr 2023 10:47:41 -0400 (EDT) Date: Sun, 23 Apr 2023 10:47:39 -0400 From: Leo Famulari To: Timo Wilken Subject: Re: [bug#63003] [PATCH 3/3] gnu: Add restic-rest-server. Message-ID: References: <20230421195515.10316-1-guix@twilken.net> <20230421195515.10316-3-guix@twilken.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230421195515.10316-3-guix@twilken.net> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 63003-done Cc: 63003-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 (-) On Fri, Apr 21, 2023 at 09:55:15PM +0200, Timo Wilken wrote: > * gnu/packages/backup.scm (restic-rest-server): New variable. Thanks Timo! I pushed the patches as bcf63e6bf2ed3dec447d5c2fa3bc67b784eacbe1 From debbugs-submit-bounces@debbugs.gnu.org Sun Apr 23 12:55:25 2023 Received: (at 63003-done) by debbugs.gnu.org; 23 Apr 2023 16:55:26 +0000 Received: from localhost ([127.0.0.1]:46859 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pqczl-0000LT-EY for submit@debbugs.gnu.org; Sun, 23 Apr 2023 12:55:25 -0400 Received: from mx1.mythic-beasts.com ([46.235.224.141]:49215) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pqb2r-0002RX-EQ for 63003-done@debbugs.gnu.org; Sun, 23 Apr 2023 10:50:30 -0400 Received: by mailhub-cam-d.mythic-beasts.com with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pqb2k-00DfJ8-WF; Sun, 23 Apr 2023 15:50:23 +0100 Date: Sun, 23 Apr 2023 16:50:10 +0200 From: Timo Wilken To: Leo Famulari , Timo Wilken Subject: Re: [bug#63003] [PATCH 3/3] gnu: Add restic-rest-server. User-Agent: K-9 Mail for Android In-Reply-To: References: <20230421195515.10316-1-guix@twilken.net> <20230421195515.10316-3-guix@twilken.net> Message-ID: <166F8B9A-32D1-402B-A8AA-E7CB01A5EA3C@twilken.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BlackCat-Spam-Score: 0 X-Spam-Status: No, score=-0.1 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 63003-done X-Mailman-Approved-At: Sun, 23 Apr 2023 12:55:24 -0400 Cc: 63003-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: -3.3 (---) On 23 April 2023 16:47:39 CEST, Leo Famulari wrote: >Thanks Timo! I pushed the patches as >bcf63e6bf2ed3dec447d5c2fa3bc67b784eacbe1 Perfect, thank you Leo! From unknown Sat Jun 21 10:32:42 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 22 May 2023 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