all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Raghav Gururajan via Guix-patches via <guix-patches@gnu.org>
To: 48729@debbugs.gnu.org
Cc: Raghav Gururajan <rg@raghavgururajan.name>,
	Jorge Gomez <jgart@disroot.org>
Subject: [bug#48729] [PATCH v3 47/47] gnu: Add bitmask-vpn.
Date: Wed,  9 Jun 2021 13:00:22 -0400	[thread overview]
Message-ID: <20210609170022.8207-47-rg@raghavgururajan.name> (raw)
In-Reply-To: <20210609170022.8207-31-rg@raghavgururajan.name>

* gnu/packages/vpn.scm (bitmask-vpn): New variable.

Co-authored-by: Jorge Gomez <jgart@disroot.org>
---
 gnu/packages/vpn.scm | 220 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 220 insertions(+)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index a952e3f0db..3bc990c613 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -15,6 +15,8 @@
 ;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
 ;;; Copyright © 2020 Ivan Kozlov <kanichos@yandex.ru>
 ;;; Copyright © 2020 David Dashyan <mail@davie.li>
+;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
+;;; Copyright © 2021 Jorge Gomez <jgart@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -38,6 +40,7 @@
   #:use-module (guix git-download)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
+  #:use-module (guix build-system go)
   #:use-module (guix build-system linux-module)
   #:use-module (guix build-system python)
   #:use-module (guix utils)
@@ -52,6 +55,8 @@
   #:use-module (gnu packages freedesktop)
   #:use-module (gnu packages gettext)
   #:use-module (gnu packages gnupg)
+  #:use-module (gnu packages golang)
+  #:use-module (gnu packages gtk)
   #:use-module (gnu packages guile)
   #:use-module (gnu packages libevent)
   #:use-module (gnu packages linux)
@@ -69,6 +74,221 @@
   #:use-module (gnu packages tls)
   #:use-module (gnu packages xml))
 
+(define-public bitmask
+  (package
+    (name "bitmask")
+    (version "0.20.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://0xacab.org/leap/bitmask-vpn")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "04sh69m5fq3gml4xgzv92z8i3hay98n9llq9p7p6q9q81s8q8849"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:imported-modules
+       ((guix build copy-build-system)
+        ,@%go-build-system-modules)
+       #:modules
+       (((guix build copy-build-system)
+         #:prefix copy:)
+        (guix build go-build-system)
+        (guix build utils))
+       #:unpack-path "0xacab.org/leap/bitmask-vpn"
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'setup-go-environment 'insert-missing-sources
+           ;; For some reason these packages are left out.
+           (lambda* (#:key inputs #:allow-other-keys)
+             (let* ((go-dialog (assoc-ref inputs "go-0xacab-org-leap-go-dialog"))
+                    (go-dialog-src (string-append go-dialog "/src"))
+                    (shapeshifter (assoc-ref inputs "go-0xacab-org-leap-shapeshifter"))
+                    (shapeshifter-src (string-append shapeshifter "/src")))
+               (copy-recursively go-dialog-src "src")
+               (copy-recursively shapeshifter-src "src"))
+             #t))
+         (add-after 'unpack 'patch-source
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             ;; To use 'emersion/go-autostart',
+             ;; instead of 'ProtonMail/go-autostart',
+             ;; as the latter no longer exists.
+             (substitute* (find-files "." "\\.go$")
+               (("github.com/ProtonMail/go-autostart")
+                "github.com/emersion/go-autostart"))
+             ;; To use absolute paths for referenced programs.
+             (let* ((ip (string-append (assoc-ref inputs "iproute")
+                                       "/sbin/ip"))
+                    (iptables (string-append (assoc-ref inputs "iptables")
+                                             "/sbin/iptables"))
+                    (ip6tables (string-append (assoc-ref inputs "iptables")
+                                              "/sbin/ip6tables"))
+                    (sysctl (string-append (assoc-ref inputs "procps")
+                                           "/sbin/sysctl"))
+                    (openvpn (string-append (assoc-ref inputs "openvpn")
+                                            "/sbin/openvpn"))
+                    (bitmask-root (string-append (assoc-ref outputs "out")
+                                                 "/sbin/bitmask-root")))
+               (substitute* (find-files "." "(\\.go$|\\.policy$|bitmask-root)")
+                 (("swhich\\(\"ip\"\\)")
+                  (string-append "\"" ip "\""))
+                 (("swhich\\(\"iptables\"\\)")
+                  (string-append "\"" iptables "\""))
+                 (("swhich\\(\"ip6tables\"\\)")
+                  (string-append "\"" ip6tables "\""))
+                 (("swhich\\(\"sysctl\"\\)")
+                  (string-append "\"" sysctl "\""))
+                 (("/usr/sbin/openvpn")
+                  openvpn)
+                 (("/usr/sbin/bitmask-root")
+                  bitmask-root)
+                 (("/usr/local/sbin/bitmask-root")
+                  bitmask-root)))
+             #t))
+         (replace 'build
+           (lambda* (#:key source system outputs search-paths build-flags unpack-path inputs #:allow-other-keys)
+             (for-each
+              (lambda (directory)
+                ((assoc-ref %standard-phases 'build)
+                 #:source source
+                 #:system system
+                 #:outputs outputs
+                 #:search-paths search-paths
+                 #:build-flags build-flags
+                 #:unpack-path unpack-path
+                 #:inputs inputs
+                 #:import-path directory))
+              (list
+               "0xacab.org/leap/bitmask-vpn/cmd/bitmask-connect"
+               "0xacab.org/leap/bitmask-vpn/cmd/bitmask-helper"
+               "0xacab.org/leap/bitmask-vpn/cmd/bitmask-vpn"
+               "0xacab.org/leap/bitmask-vpn/icon"
+               "0xacab.org/leap/bitmask-vpn/pkg/bitmask"
+               "0xacab.org/leap/bitmask-vpn/pkg/bitmaskd"
+               "0xacab.org/leap/bitmask-vpn/pkg/config"
+               "0xacab.org/leap/bitmask-vpn/pkg/helper"
+               "0xacab.org/leap/bitmask-vpn/pkg/standalone"
+               "0xacab.org/leap/bitmask-vpn/pkg/systray"
+               "0xacab.org/leap/bitmask-vpn/tools/transifex"))
+             #t))
+         (replace 'check
+           (lambda* (#:key source system outputs search-paths tests? unpack-path inputs #:allow-other-keys)
+             (for-each
+              (lambda (directory)
+                ((assoc-ref %standard-phases 'check)
+                 #:source source
+                 #:system system
+                 #:outputs outputs
+                 #:search-paths search-paths
+                 #:tests? tests?
+                 #:unpack-path unpack-path
+                 #:inputs inputs
+                 #:import-path directory))
+              (list
+               "0xacab.org/leap/bitmask-vpn/cmd/bitmask-connect"
+               "0xacab.org/leap/bitmask-vpn/cmd/bitmask-helper"
+               "0xacab.org/leap/bitmask-vpn/cmd/bitmask-vpn"
+               "0xacab.org/leap/bitmask-vpn/icon"
+               "0xacab.org/leap/bitmask-vpn/pkg/bitmask"
+               "0xacab.org/leap/bitmask-vpn/pkg/bitmaskd"
+               "0xacab.org/leap/bitmask-vpn/pkg/config"
+               "0xacab.org/leap/bitmask-vpn/pkg/helper"
+               "0xacab.org/leap/bitmask-vpn/pkg/standalone"
+               "0xacab.org/leap/bitmask-vpn/pkg/systray"
+               "0xacab.org/leap/bitmask-vpn/tools/transifex"))
+             #t))
+         (replace 'install
+           (lambda* (#:key source system outputs search-paths install-source? unpack-path inputs #:allow-other-keys)
+             (for-each
+              (lambda (directory)
+                ((assoc-ref %standard-phases 'install)
+                 #:source source
+                 #:system system
+                 #:outputs outputs
+                 #:search-paths search-paths
+                 #:install-source? install-source?
+                 #:unpack-path unpack-path
+                 #:inputs inputs
+                 #:import-path directory))
+              (list
+               "0xacab.org/leap/bitmask-vpn/cmd/bitmask-connect"
+               "0xacab.org/leap/bitmask-vpn/cmd/bitmask-helper"
+               "0xacab.org/leap/bitmask-vpn/cmd/bitmask-vpn"
+               "0xacab.org/leap/bitmask-vpn/icon"
+               "0xacab.org/leap/bitmask-vpn/pkg/bitmask"
+               "0xacab.org/leap/bitmask-vpn/pkg/bitmaskd"
+               "0xacab.org/leap/bitmask-vpn/pkg/config"
+               "0xacab.org/leap/bitmask-vpn/pkg/helper"
+               "0xacab.org/leap/bitmask-vpn/pkg/standalone"
+               "0xacab.org/leap/bitmask-vpn/pkg/systray"
+               "0xacab.org/leap/bitmask-vpn/tools/transifex"))
+             #t))
+         (add-after 'install 'install-continued
+           ;; To install bitmask-root script and polkit policy.
+           (lambda args
+             (apply (assoc-ref copy:%standard-phases 'install)
+                    #:install-plan
+                    '(("src/0xacab.org/leap/bitmask-vpn/helpers"
+                       "sbin"
+                       #:include ("bitmask-root"))
+                      ("src/0xacab.org/leap/bitmask-vpn/helpers"
+                       "share/polkit-1/actions"
+                       #:include ("se.leap.bitmask.policy")))
+                    args)))
+         (add-after 'install-continued 'post-install
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bitmask-root (string-append out "/sbin/bitmask-root")))
+               ;; To make bitmask-root script executable.
+               (chmod bitmask-root #o555)
+               ;; To wrap bitmask-root script with $PYTHONPATH.
+               (wrap-program bitmask-root
+                 `("PYTHONPATH" ":" prefix (,(getenv "PYTHONPATH")))))
+             #t)))))
+    (native-inputs
+     `(("gtk+:bin" ,gtk+ "bin")
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("gtk+" ,gtk+)
+       ("iproute" ,iproute)
+       ("iptables" ,iptables)
+       ("libappindicator" ,libappindicator)
+       ("openvpn" ,openvpn)
+       ("procps" ,procps)
+       ("python" ,python)))
+    (propagated-inputs
+     `(("go-0xacab-org-leap-go-dialog"
+        ,go-0xacab-org-leap-go-dialog)
+       ("go-0xacab-org-leap-shapeshifter"
+        ,go-0xacab-org-leap-shapeshifter)
+       ("go-github-com-apparentlymart-go-openvpn-mgmt"
+        ,go-github-com-apparentlymart-go-openvpn-mgmt)
+       ("go-github-com-emersion-go-autostart"
+        ,go-github-com-emersion-go-autostart)
+       ("go-github-com-getlantern-systray"
+        ,go-github-com-getlantern-systray)
+       ("go-github-com-jmshal-go-locale"
+        ,go-github-com-jmshal-go-locale)
+       ("go-github-com-keybase-go-ps"
+        ,go-github-com-keybase-go-ps)
+       ("go-github-com-sevlyar-go-daemon"
+        ,go-github-com-sevlyar-go-daemon)
+       ("go-github-com-skratchdot-open-golang"
+        ,go-github-com-skratchdot-open-golang)
+       ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+       ("go-golang-org-x-text" ,go-golang-org-x-text)
+       ("go-golang-org-x-tools" ,go-golang-org-x-tools)))
+    (synopsis "Bitmask VPN Client")
+    (description "Bitmask, by @acronym{LEAP, LEAP Encryption Access Project},
+is an application to provide easy and secure encrypted communication with a
+@acronym{VPN, Virtual Private Network}.  It allows you to select from a variety
+of trusted service provider all from one app.  Current providers include Riseup
+Networks and The Calyx Institute.")
+    (home-page "https://bitmask.net/")
+    (license license:gpl3+)))
+
 (define-public gvpe
   (package
     (name "gvpe")
-- 
2.31.1





  parent reply	other threads:[~2021-06-09 17:03 UTC|newest]

Thread overview: 284+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-29 10:57 [bug#48729] Bitmask VPN Raghav Gururajan via Guix-patches via
2021-05-29 11:14 ` [bug#48729] [PATCH v1 00/24]: " Raghav Gururajan via Guix-patches via
2021-05-29 11:15 ` [bug#48729] [PATCH v1 01/24] gnu: Add go-github-com-rakyll-statik Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 02/24] gnu: Add go-github-com-dchest-siphash Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 03/24] gnu: Add go-github-com-emersion-go-autostart Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 04/24] gnu: Add go-github-com-apparentlymart-go-openvpn-mgmt Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 05/24] gnu: Add go-github-com-keybase-go-ps Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 06/24] gnu: Add go-github-com-sevlyar-go-daemon Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 07/24] gnu: Add go-torproject-org-pluggable-transports-goptlib Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 08/24] gnu: Add go-github-com-willscott-goturn Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 09/24] gnu: Add go-github-com-operatorfoundation-obfs4 Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 10/24] gnu: Add go-github-com-operatorfoundation-shapeshifter-ipc Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 11/24] gnu: Add go-github-com-op-go-logging Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 12/24] gnu: Add go-github-com-blanu-dust Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 13/24] gnu: Add go-github-com-deckarep-golang-set Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 14/24] gnu: Add go-github-com-operatorfoundation-monolith-go Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 15/24] gnu: Add go-github-com-opentracing-opentracing-go Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 16/24] gnu: Add go-github-com-mufti1-interconv Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 17/24] gnu: Add go-github-com-aead-chacha20 Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 18/24] gnu: Add go-github-com-riobard-go-bloom Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 19/24] gnu: Add go-github-com-shadowsocks-go-shadowsocks2 Raghav Gururajan via Guix-patches via
2021-05-29 11:15   ` [bug#48729] [PATCH v1 20/24] gnu: Add go-github-com-kataras-pio Raghav Gururajan via Guix-patches via
2021-05-29 11:18 ` [bug#48729] [PATCH v1 21/24] gnu: Add go-github-com-kataras-golog Raghav Gururajan via Guix-patches via
2021-05-29 11:21 ` [bug#48729] [PATCH v1 22/24] gnu: Add go-github-com-operatorfoundation-shapeshifter-transports Raghav Gururajan via Guix-patches via
2021-05-29 11:21   ` [bug#48729] [PATCH v1 23/24] gnu: Add go-0xacab-org-leap-shapeshifter Raghav Gururajan via Guix-patches via
2021-05-29 11:23 ` [bug#48729] [PATCH v1 24/24] gnu: Add bitmask-vpn Raghav Gururajan via Guix-patches via
2021-06-03  9:56 ` [bug#48729] [PATCH v2 00/47]: Bitmask VPN Raghav Gururajan via Guix-patches via
2021-06-03  9:57 ` [bug#48729] [PATCH v2 01/47] gnu: Add go-github-com-rakyll-statik Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 02/47] gnu: Add go-github-com-dchest-siphash Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 03/47] gnu: Add go-github-com-emersion-go-autostart Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 04/47] gnu: Add go-github-com-apparentlymart-go-openvpn-mgmt Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 05/47] gnu: Add go-github-com-keybase-go-ps Raghav Gururajan via Guix-patches via
2021-06-05 14:42     ` Maxime Devos
2021-06-11  4:17       ` Raghav Gururajan via Guix-patches via
2021-06-12 16:21         ` Maxime Devos
2021-06-18  6:42           ` Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 06/47] gnu: Add go-github-com-sevlyar-go-daemon Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 07/47] gnu: Add go-torproject-org-pluggable-transports-goptlib Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 08/47] gnu: Add go-github-com-willscott-goturn Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 09/47] gnu: Add go-github-com-operatorfoundation-obfs4 Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 10/47] gnu: Add go-github-com-operatorfoundation-shapeshifter-ipc Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 11/47] gnu: Add go-github-com-op-go-logging Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 12/47] gnu: Add go-github-com-blanu-dust Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 13/47] gnu: Add go-github-com-deckarep-golang-set Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 14/47] gnu: Add go-github-com-operatorfoundation-monolith-go Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 15/47] gnu: Add go-github-com-opentracing-opentracing-go Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 16/47] gnu: Add go-github-com-mufti1-interconv Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 17/47] gnu: Add go-github-com-aead-chacha20 Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 18/47] gnu: Add go-github-com-riobard-go-bloom Raghav Gururajan via Guix-patches via
2021-06-03  9:57   ` [bug#48729] [PATCH v2 19/47] gnu: Add go-github-com-shadowsocks-go-shadowsocks2 Raghav Gururajan via Guix-patches via
2021-06-03 10:02 ` [bug#48729] [PATCH v2 20/47] gnu: Add go-github-com-kataras-pio Raghav Gururajan via Guix-patches via
2021-06-03 10:02   ` [bug#48729] [PATCH v2 21/47] gnu: Add go-github-com-kataras-golog Raghav Gururajan via Guix-patches via
2021-06-03 10:02   ` [bug#48729] [PATCH v2 22/47] gnu: Add go-github-com-operatorfoundation-shapeshifter-transports Raghav Gururajan via Guix-patches via
2021-06-03 10:02   ` [bug#48729] [PATCH v2 23/47] gnu: Add go-0xacab-org-leap-shapeshifter Raghav Gururajan via Guix-patches via
2021-06-03 10:44 ` [bug#48729] [PATCH v2 24/47] gnu: Add go-github-com-jezek-xgb Raghav Gururajan via Guix-patches via
2021-06-03 10:44   ` [bug#48729] [PATCH v2 25/47] gnu: Add go-github-com-burntsushi-xgbutil Raghav Gururajan via Guix-patches via
2021-06-03 10:44   ` [bug#48729] [PATCH v2 26/47] gnu: Add go-github-com-getlantern-context Raghav Gururajan via Guix-patches via
2021-06-03 10:44   ` [bug#48729] [PATCH v2 27/47] gnu: Add go-github-com-getlantern-ops Raghav Gururajan via Guix-patches via
2021-06-03 10:44   ` [bug#48729] [PATCH v2 28/47] gnu: Add go-github-com-getlantern-hex Raghav Gururajan via Guix-patches via
2021-06-03 10:44   ` [bug#48729] [PATCH v2 29/47] gnu: Add go-github-com-getlantern-hidden Raghav Gururajan via Guix-patches via
2021-06-03 10:44   ` [bug#48729] [PATCH v2 30/47] gnu: Add go-github-com-go-stack-stack Raghav Gururajan via Guix-patches via
2021-06-03 10:44   ` [bug#48729] [PATCH v2 31/47] gnu: Add go-github-com-getlantern-errors Raghav Gururajan via Guix-patches via
2021-06-03 10:44   ` [bug#48729] [PATCH v2 32/47] gnu: Add go-github-com-oxtoacart-bpool Raghav Gururajan via Guix-patches via
2021-06-03 10:44   ` [bug#48729] [PATCH v2 33/47] gnu: Add go-github-com-getlantern-golog Raghav Gururajan via Guix-patches via
2021-06-03 10:44   ` [bug#48729] [PATCH v2 34/47] gnu: Add go-github-com-getlantern-systray Raghav Gururajan via Guix-patches via
2021-06-03 10:44   ` [bug#48729] [PATCH v2 35/47] gnu: Add go-github-com-gotk3-gotk3 Raghav Gururajan via Guix-patches via
2021-06-03 10:44   ` [bug#48729] [PATCH v2 36/47] gnu: Add go-github-com-jmshal-go-locale Raghav Gururajan via Guix-patches via
2021-06-03 11:11 ` [bug#48729] [PATCH v2 37/47] gnu: Add gtkglarea Raghav Gururajan via Guix-patches via
2021-06-03 11:46 ` [bug#48729] [PATCH v2 38/47] gnu: Add gtkspell2 Raghav Gururajan via Guix-patches via
2021-06-03 11:46   ` [bug#48729] [PATCH v2 39/47] gnu: Add go-github-com-mattn-go-gtk Raghav Gururajan via Guix-patches via
2021-06-03 20:51 ` [bug#48729] [PATCH v2 40/47] gnu: Add go-github-com-grd-glfw3 Raghav Gururajan via Guix-patches via
2021-06-03 20:51   ` [bug#48729] [PATCH v2 41/47] gnu: Add go-github-com-go-gl-glow Raghav Gururajan via Guix-patches via
2021-06-03 20:51   ` [bug#48729] [PATCH v2 42/47] gnu: Add go-github-com-go-gl-gl Raghav Gururajan via Guix-patches via
2021-06-03 20:51   ` [bug#48729] [PATCH v2 43/47] gnu: Add go-github-com-skelterjohn-go-wde Raghav Gururajan via Guix-patches via
2021-06-03 20:51   ` [bug#48729] [PATCH v2 44/47] gnu: Add go-github-com-skratchdot-open-golang Raghav Gururajan via Guix-patches via
2021-06-03 20:51   ` [bug#48729] [PATCH v2 45/47] gnu: Add go-github-com-sqweek-dialog Raghav Gururajan via Guix-patches via
2021-06-03 20:51   ` [bug#48729] [PATCH v2 46/47] gnu: Add go-0xacab-org-leap-go-dialog Raghav Gururajan via Guix-patches via
2021-06-03 20:51   ` [bug#48729] [PATCH v2 47/47] gnu: Add bitmask-vpn Raghav Gururajan via Guix-patches via
2021-06-03 21:47     ` Maxime Devos
2021-06-11  4:12       ` Raghav Gururajan via Guix-patches via
2021-06-18 18:16         ` Maxime Devos
2021-06-20  6:37           ` Raghav Gururajan via Guix-patches via
2021-06-08 23:00 ` [bug#48729] [PATCH v3 00/47]: Bitmask VPN Raghav Gururajan via Guix-patches via
2021-06-08 23:01 ` [bug#48729] [PATCH v3 01/47] gnu: Add go-github-com-rakyll-statik Raghav Gururajan via Guix-patches via
2021-06-08 23:01   ` [bug#48729] [PATCH v3 02/47] gnu: Add go-github-com-dchest-siphash Raghav Gururajan via Guix-patches via
2021-06-08 23:01   ` [bug#48729] [PATCH v3 03/47] gnu: Add go-github-com-emersion-go-autostart Raghav Gururajan via Guix-patches via
2021-06-08 23:01   ` [bug#48729] [PATCH v3 04/47] gnu: Add go-github-com-apparentlymart-go-openvpn-mgmt Raghav Gururajan via Guix-patches via
2021-06-08 23:01   ` [bug#48729] [PATCH v3 05/47] gnu: Add go-github-com-keybase-go-ps Raghav Gururajan via Guix-patches via
2021-06-08 23:01   ` [bug#48729] [PATCH v3 06/47] gnu: Add go-github-com-sevlyar-go-daemon Raghav Gururajan via Guix-patches via
2021-06-08 23:02   ` [bug#48729] [PATCH v3 07/47] gnu: Add go-torproject-org-pluggable-transports-goptlib Raghav Gururajan via Guix-patches via
2021-06-08 23:02   ` [bug#48729] [PATCH v3 08/47] gnu: Add go-github-com-willscott-goturn Raghav Gururajan via Guix-patches via
2021-06-08 23:02   ` [bug#48729] [PATCH v3 09/47] gnu: Add go-github-com-operatorfoundation-obfs4 Raghav Gururajan via Guix-patches via
2021-06-08 23:02   ` [bug#48729] [PATCH v3 10/47] gnu: Add go-github-com-operatorfoundation-shapeshifter-ipc Raghav Gururajan via Guix-patches via
2021-06-08 23:10 ` [bug#48729] [PATCH v3 11/47] gnu: Add go-github-com-op-go-logging Raghav Gururajan via Guix-patches via
2021-06-08 23:10   ` [bug#48729] [PATCH v3 12/47] gnu: Add go-github-com-blanu-dust Raghav Gururajan via Guix-patches via
2021-06-08 23:10   ` [bug#48729] [PATCH v3 13/47] gnu: Add go-github-com-deckarep-golang-set Raghav Gururajan via Guix-patches via
2021-06-08 23:10   ` [bug#48729] [PATCH v3 14/47] gnu: Add go-github-com-operatorfoundation-monolith-go Raghav Gururajan via Guix-patches via
2021-06-08 23:10   ` [bug#48729] [PATCH v3 15/47] gnu: Add go-github-com-opentracing-opentracing-go Raghav Gururajan via Guix-patches via
2021-06-08 23:10   ` [bug#48729] [PATCH v3 16/47] gnu: Add go-github-com-mufti1-interconv Raghav Gururajan via Guix-patches via
2021-06-08 23:10   ` [bug#48729] [PATCH v3 17/47] gnu: Add go-github-com-aead-chacha20 Raghav Gururajan via Guix-patches via
2021-06-08 23:10   ` [bug#48729] [PATCH v3 18/47] gnu: Add go-github-com-riobard-go-bloom Raghav Gururajan via Guix-patches via
2021-06-08 23:10   ` [bug#48729] [PATCH v3 19/47] gnu: Add go-github-com-shadowsocks-go-shadowsocks2 Raghav Gururajan via Guix-patches via
2021-06-08 23:10   ` [bug#48729] [PATCH v3 20/47] gnu: Add go-github-com-kataras-pio Raghav Gururajan via Guix-patches via
2021-06-08 23:21 ` [bug#48729] [PATCH v3 21/47] gnu: Add go-github-com-kataras-golog Raghav Gururajan via Guix-patches via
2021-06-08 23:21   ` [bug#48729] [PATCH v3 22/47] gnu: Add go-github-com-operatorfoundation-shapeshifter-transports Raghav Gururajan via Guix-patches via
2021-06-08 23:21   ` [bug#48729] [PATCH v3 23/47] gnu: Add go-0xacab-org-leap-shapeshifter Raghav Gururajan via Guix-patches via
2021-06-08 23:21   ` [bug#48729] [PATCH v3 24/47] gnu: Add go-github-com-jezek-xgb Raghav Gururajan via Guix-patches via
2021-06-08 23:21   ` [bug#48729] [PATCH v3 25/47] gnu: Add go-github-com-burntsushi-xgbutil Raghav Gururajan via Guix-patches via
2021-06-08 23:21   ` [bug#48729] [PATCH v3 26/47] gnu: Add go-github-com-getlantern-context Raghav Gururajan via Guix-patches via
2021-06-08 23:21   ` [bug#48729] [PATCH v3 27/47] gnu: Add go-github-com-getlantern-ops Raghav Gururajan via Guix-patches via
2021-06-08 23:21   ` [bug#48729] [PATCH v3 28/47] gnu: Add go-github-com-getlantern-hex Raghav Gururajan via Guix-patches via
2021-06-08 23:21   ` [bug#48729] [PATCH v3 29/47] gnu: Add go-github-com-getlantern-hidden Raghav Gururajan via Guix-patches via
2021-06-08 23:21   ` [bug#48729] [PATCH v3 30/47] gnu: Add go-github-com-go-stack-stack Raghav Gururajan via Guix-patches via
2021-06-09 17:00 ` [bug#48729] [PATCH v3 31/47] gnu: Add go-github-com-getlantern-errors Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 32/47] gnu: Add go-github-com-oxtoacart-bpool Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 33/47] gnu: Add go-github-com-getlantern-golog Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 34/47] gnu: Add go-github-com-getlantern-systray Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 35/47] gnu: Add go-github-com-gotk3-gotk3 Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 36/47] gnu: Add go-github-com-jmshal-go-locale Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 37/47] gnu: Add gtkglarea Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 38/47] gnu: Add gtkspell2 Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 39/47] gnu: Add go-github-com-mattn-go-gtk Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 40/47] gnu: Add go-github-com-grd-glfw3 Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 41/47] gnu: Add go-github-com-go-gl-glow Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 42/47] gnu: Add go-github-com-go-gl-gl Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 43/47] gnu: Add go-github-com-skelterjohn-go-wde Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 44/47] gnu: Add go-github-com-skratchdot-open-golang Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 45/47] gnu: Add go-github-com-sqweek-dialog Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` [bug#48729] [PATCH v3 46/47] gnu: Add go-0xacab-org-leap-go-dialog Raghav Gururajan via Guix-patches via
2021-06-09 17:00   ` Raghav Gururajan via Guix-patches via [this message]
2021-06-15  5:08 ` [bug#48729] [PATCH v4 01/24] gnu: Add go-github-com-rakyll-statik Raghav Gururajan via Guix-patches via
2021-06-15  5:08   ` [bug#48729] [PATCH v4 02/24] gnu: Add go-github-com-dchest-siphash Raghav Gururajan via Guix-patches via
2021-06-15  5:08   ` [bug#48729] [PATCH v4 03/24] gnu: Add go-github-com-emersion-go-autostart Raghav Gururajan via Guix-patches via
2021-06-15  5:08   ` [bug#48729] [PATCH v4 04/24] gnu: Add go-github-com-apparentlymart-go-openvpn-mgmt Raghav Gururajan via Guix-patches via
2021-06-15  5:08   ` [bug#48729] [PATCH v4 05/24] gnu: Add go-github-com-keybase-go-ps Raghav Gururajan via Guix-patches via
2021-06-15  5:08   ` [bug#48729] [PATCH v4 06/24] gnu: Add go-github-com-sevlyar-go-daemon Raghav Gururajan via Guix-patches via
2021-06-15  5:08   ` [bug#48729] [PATCH v4 07/24] gnu: Add go-torproject-org-pluggable-transports-goptlib Raghav Gururajan via Guix-patches via
2021-06-15  5:08   ` [bug#48729] [PATCH v4 08/24] gnu: Add go-github-com-willscott-goturn Raghav Gururajan via Guix-patches via
2021-06-15  5:08   ` [bug#48729] [PATCH v4 09/24] gnu: Add go-github-com-operatorfoundation-obfs4 Raghav Gururajan via Guix-patches via
2021-06-15  5:08   ` [bug#48729] [PATCH v4 10/24] gnu: Add go-github-com-operatorfoundation-shapeshifter-ipc Raghav Gururajan via Guix-patches via
2021-06-15  5:08   ` [bug#48729] [PATCH v4 11/24] gnu: Add go-github-com-op-go-logging Raghav Gururajan via Guix-patches via
2021-06-15  5:08   ` [bug#48729] [PATCH v4 12/24] gnu: Add go-github-com-blanu-dust Raghav Gururajan via Guix-patches via
2021-06-15  5:26 ` [bug#48729] [PATCH v4 13/24] gnu: Add go-github-com-deckarep-golang-set Raghav Gururajan via Guix-patches via
2021-06-15  5:26   ` [bug#48729] [PATCH v4 14/24] gnu: Add go-github-com-operatorfoundation-monolith-go Raghav Gururajan via Guix-patches via
2021-06-15  5:26   ` [bug#48729] [PATCH v4 15/24] gnu: Add go-github-com-opentracing-opentracing-go Raghav Gururajan via Guix-patches via
2021-06-15  5:26   ` [bug#48729] [PATCH v4 16/24] gnu: Add go-github-com-mufti1-interconv Raghav Gururajan via Guix-patches via
2021-06-15  5:26   ` [bug#48729] [PATCH v4 17/24] gnu: Add go-github-com-aead-chacha20 Raghav Gururajan via Guix-patches via
2021-06-15  5:26   ` [bug#48729] [PATCH v4 18/24] gnu: Add go-github-com-riobard-go-bloom Raghav Gururajan via Guix-patches via
2021-06-15  5:26   ` [bug#48729] [PATCH v4 19/24] gnu: Add go-github-com-shadowsocks-go-shadowsocks2 Raghav Gururajan via Guix-patches via
2021-06-15  5:26   ` [bug#48729] [PATCH v4 20/24] gnu: Add go-github-com-kataras-pio Raghav Gururajan via Guix-patches via
2021-06-15  5:26   ` [bug#48729] [PATCH v4 21/24] gnu: Add go-github-com-kataras-golog Raghav Gururajan via Guix-patches via
2021-06-15  5:26   ` [bug#48729] [PATCH v4 22/24] gnu: Add go-github-com-operatorfoundation-shapeshifter-transports Raghav Gururajan via Guix-patches via
2021-06-15  5:26   ` [bug#48729] [PATCH v4 23/24] gnu: Add go-0xacab-org-leap-shapeshifter Raghav Gururajan via Guix-patches via
2021-06-15  5:26   ` [bug#48729] [PATCH v4 24/24] gnu: Add bitmask Raghav Gururajan via Guix-patches via
2021-06-18  6:43 ` [bug#48729] [PATCH v5 01/25] gnu: Add go-github-com-rakyll-statik Raghav Gururajan via Guix-patches via
2021-06-18  6:43   ` [bug#48729] [PATCH v5 02/25] gnu: Add go-github-com-dchest-siphash Raghav Gururajan via Guix-patches via
2021-06-18  6:43   ` [bug#48729] [PATCH v5 03/25] gnu: Add go-github-com-emersion-go-autostart Raghav Gururajan via Guix-patches via
2021-06-18  6:43   ` [bug#48729] [PATCH v5 04/25] gnu: Add go-github-com-apparentlymart-go-openvpn-mgmt Raghav Gururajan via Guix-patches via
2021-06-18  6:43   ` [bug#48729] [PATCH v5 05/25] gnu: Add go-github-com-keybase-go-ps Raghav Gururajan via Guix-patches via
2021-06-18  6:44   ` [bug#48729] [PATCH v5 06/25] gnu: Add go-github-com-sevlyar-go-daemon Raghav Gururajan via Guix-patches via
2021-06-18  6:44   ` [bug#48729] [PATCH v5 07/25] gnu: Add go-torproject-org-pluggable-transports-goptlib Raghav Gururajan via Guix-patches via
2021-06-18  6:44   ` [bug#48729] [PATCH v5 08/25] gnu: Add go-github-com-willscott-goturn Raghav Gururajan via Guix-patches via
2021-06-18  6:44   ` [bug#48729] [PATCH v5 09/25] gnu: Add go-github-com-operatorfoundation-obfs4 Raghav Gururajan via Guix-patches via
2021-06-18  6:44   ` [bug#48729] [PATCH v5 10/25] gnu: Add go-github-com-operatorfoundation-shapeshifter-ipc Raghav Gururajan via Guix-patches via
2021-06-18  6:44   ` [bug#48729] [PATCH v5 11/25] gnu: Add go-github-com-op-go-logging Raghav Gururajan via Guix-patches via
2021-06-18  6:44   ` [bug#48729] [PATCH v5 12/25] gnu: Add go-github-com-blanu-dust Raghav Gururajan via Guix-patches via
2021-06-18  6:44   ` [bug#48729] [PATCH v5 13/25] gnu: Add go-github-com-deckarep-golang-set Raghav Gururajan via Guix-patches via
2021-06-18  6:54 ` [bug#48729] [PATCH v5 14/25] gnu: Add go-github-com-operatorfoundation-monolith-go Raghav Gururajan via Guix-patches via
2021-06-18  6:54   ` [bug#48729] [PATCH v5 15/25] gnu: Add go-github-com-opentracing-opentracing-go Raghav Gururajan via Guix-patches via
2021-06-18  6:54   ` [bug#48729] [PATCH v5 16/25] gnu: Add go-github-com-mufti1-interconv Raghav Gururajan via Guix-patches via
2021-06-18  6:54   ` [bug#48729] [PATCH v5 17/25] gnu: Add go-github-com-aead-chacha20 Raghav Gururajan via Guix-patches via
2021-06-18  6:54   ` [bug#48729] [PATCH v5 18/25] gnu: Add go-github-com-riobard-go-bloom Raghav Gururajan via Guix-patches via
2021-06-18  6:54   ` [bug#48729] [PATCH v5 19/25] gnu: Add go-github-com-shadowsocks-go-shadowsocks2 Raghav Gururajan via Guix-patches via
2021-06-18  6:54   ` [bug#48729] [PATCH v5 20/25] gnu: Add go-github-com-kataras-pio Raghav Gururajan via Guix-patches via
2021-06-18  6:54   ` [bug#48729] [PATCH v5 21/25] gnu: Add go-github-com-kataras-golog Raghav Gururajan via Guix-patches via
2021-06-18  6:54   ` [bug#48729] [PATCH v5 22/25] gnu: Add go-github-com-operatorfoundation-shapeshifter-transports Raghav Gururajan via Guix-patches via
2021-06-18  6:54   ` [bug#48729] [PATCH v5 23/25] gnu: Add go-0xacab-org-leap-shapeshifter Raghav Gururajan via Guix-patches via
2021-06-18  6:54   ` [bug#48729] [PATCH v5 24/25] gnu: Add bitmask Raghav Gururajan via Guix-patches via
2021-06-18 18:22     ` Maxime Devos
2021-06-20  8:11       ` Raghav Gururajan via Guix-patches via
2021-06-18 18:45     ` Maxime Devos
2021-06-20  9:52       ` Raghav Gururajan via Guix-patches via
2021-06-20 11:31         ` Maxime Devos
2021-06-22  4:53           ` Raghav Gururajan via Guix-patches via
2021-06-20 11:43         ` Maxime Devos
2021-06-22  4:55           ` Raghav Gururajan via Guix-patches via
2021-06-18  6:54   ` [bug#48729] [PATCH v5 25/25] services: Add bitmask-service-type Raghav Gururajan via Guix-patches via
2021-06-18 19:02     ` Maxime Devos
2021-06-22  4:25       ` Raghav Gururajan via Guix-patches via
2021-06-22  4:34 ` [bug#48729] [PATCH v6 01/25] gnu: Add go-github-com-rakyll-statik Raghav Gururajan via Guix-patches via
2021-06-22  4:34   ` [bug#48729] [PATCH v6 02/25] gnu: Add go-github-com-dchest-siphash Raghav Gururajan via Guix-patches via
2021-06-22  4:34   ` [bug#48729] [PATCH v6 03/25] gnu: Add go-github-com-emersion-go-autostart Raghav Gururajan via Guix-patches via
2021-06-22  4:34   ` [bug#48729] [PATCH v6 04/25] gnu: Add go-github-com-apparentlymart-go-openvpn-mgmt Raghav Gururajan via Guix-patches via
2021-06-22  4:34   ` [bug#48729] [PATCH v6 05/25] gnu: Add go-github-com-keybase-go-ps Raghav Gururajan via Guix-patches via
2021-06-22  4:34   ` [bug#48729] [PATCH v6 06/25] gnu: Add go-github-com-sevlyar-go-daemon Raghav Gururajan via Guix-patches via
2021-06-22  4:34   ` [bug#48729] [PATCH v6 07/25] gnu: Add go-torproject-org-pluggable-transports-goptlib Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 08/25] gnu: Add go-github-com-willscott-goturn Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 09/25] gnu: Add go-github-com-operatorfoundation-obfs4 Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 10/25] gnu: Add go-github-com-operatorfoundation-shapeshifter-ipc Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 11/25] gnu: Add go-github-com-op-go-logging Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 12/25] gnu: Add go-github-com-blanu-dust Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 13/25] gnu: Add go-github-com-deckarep-golang-set Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 14/25] gnu: Add go-github-com-operatorfoundation-monolith-go Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 15/25] gnu: Add go-github-com-opentracing-opentracing-go Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 16/25] gnu: Add go-github-com-mufti1-interconv Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 17/25] gnu: Add go-github-com-aead-chacha20 Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 18/25] gnu: Add go-github-com-riobard-go-bloom Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 19/25] gnu: Add go-github-com-shadowsocks-go-shadowsocks2 Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 20/25] gnu: Add go-github-com-kataras-pio Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 21/25] gnu: Add go-github-com-kataras-golog Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 22/25] gnu: Add go-github-com-operatorfoundation-shapeshifter-transports Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 23/25] gnu: Add go-0xacab-org-leap-shapeshifter Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 24/25] gnu: Add bitmask Raghav Gururajan via Guix-patches via
2021-06-22  4:35   ` [bug#48729] [PATCH v6 25/25] services: Add bitmask-service-type Raghav Gururajan via Guix-patches via
2021-07-01  2:18 ` [bug#48729] [PATCH v7 01/25] gnu: Add go-github-com-rakyll-statik Raghav Gururajan via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 02/25] gnu: Add go-github-com-dchest-siphash Raghav Gururajan via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 03/25] gnu: Add go-github-com-emersion-go-autostart Raghav Gururajan via Guix-patches via
2021-07-03  1:57     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 04/25] gnu: Add go-github-com-apparentlymart-go-openvpn-mgmt Raghav Gururajan via Guix-patches via
2021-07-03  2:04     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 05/25] gnu: Add go-github-com-keybase-go-ps Raghav Gururajan via Guix-patches via
2021-07-03  2:09     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 06/25] gnu: Add go-github-com-sevlyar-go-daemon Raghav Gururajan via Guix-patches via
2021-07-03  2:15     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 07/25] gnu: Add go-torproject-org-pluggable-transports-goptlib Raghav Gururajan via Guix-patches via
2021-07-03  2:16     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 08/25] gnu: Add go-github-com-willscott-goturn Raghav Gururajan via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 09/25] gnu: Add go-github-com-operatorfoundation-obfs4 Raghav Gururajan via Guix-patches via
2021-07-03  2:24     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 10/25] gnu: Add go-github-com-operatorfoundation-shapeshifter-ipc Raghav Gururajan via Guix-patches via
2021-07-03  2:28     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 11/25] gnu: Add go-github-com-op-go-logging Raghav Gururajan via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 12/25] gnu: Add go-github-com-blanu-dust Raghav Gururajan via Guix-patches via
2021-07-03  2:30     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 13/25] gnu: Add go-github-com-deckarep-golang-set Raghav Gururajan via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 14/25] gnu: Add go-github-com-operatorfoundation-monolith-go Raghav Gururajan via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 15/25] gnu: Add go-github-com-opentracing-opentracing-go Raghav Gururajan via Guix-patches via
2021-07-03  2:31     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 16/25] gnu: Add go-github-com-mufti1-interconv Raghav Gururajan via Guix-patches via
2021-07-03  2:33     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 17/25] gnu: Add go-github-com-aead-chacha20 Raghav Gururajan via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 18/25] gnu: Add go-github-com-riobard-go-bloom Raghav Gururajan via Guix-patches via
2021-07-03  2:35     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 19/25] gnu: Add go-github-com-shadowsocks-go-shadowsocks2 Raghav Gururajan via Guix-patches via
2021-07-03  2:36     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  2:18   ` [bug#48729] [PATCH v7 20/25] gnu: Add go-github-com-kataras-pio Raghav Gururajan via Guix-patches via
2021-07-03  1:56   ` [bug#48729] [PATCH v7 01/25] gnu: Add go-github-com-rakyll-statik Tobias Geerinckx-Rice via Guix-patches via
2021-07-01  4:57 ` [bug#48729] [PATCH v7 21/25] gnu: Add go-github-com-kataras-golog Raghav Gururajan via Guix-patches via
2021-07-01  4:57   ` [bug#48729] [PATCH v7 22/25] gnu: Add go-github-com-operatorfoundation-shapeshifter-transports Raghav Gururajan via Guix-patches via
2021-07-01  4:57   ` [bug#48729] [PATCH v7 23/25] gnu: Add go-0xacab-org-leap-shapeshifter Raghav Gururajan via Guix-patches via
2021-07-01  4:57   ` [bug#48729] [PATCH v7 24/25] gnu: Add bitmask Raghav Gururajan via Guix-patches via
2021-07-03  2:42     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-03  6:48       ` Raghav Gururajan via Guix-patches via
2021-07-01  4:57   ` [bug#48729] [PATCH v7 25/25] services: Add bitmask-service-type Raghav Gururajan via Guix-patches via
2021-07-03  3:02     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-03  6:53       ` Raghav Gururajan via Guix-patches via
2021-07-03  6:04 ` [bug#48729] [PATCH v8 01/25] gnu: Add go-github-com-rakyll-statik Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 02/25] gnu: Add go-github-com-dchest-siphash Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 03/25] gnu: Add go-github-com-emersion-go-autostart Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 04/25] gnu: Add go-github-com-apparentlymart-go-openvpn-mgmt Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 05/25] gnu: Add go-github-com-keybase-go-ps Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 06/25] gnu: Add go-github-com-sevlyar-go-daemon Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 07/25] gnu: Add go-torproject-org-pluggable-transports-goptlib Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 08/25] gnu: Add go-github-com-willscott-goturn Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 09/25] gnu: Add go-github-com-operatorfoundation-obfs4 Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 10/25] gnu: Add go-github-com-operatorfoundation-shapeshifter-ipc Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 11/25] gnu: Add go-github-com-op-go-logging Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 12/25] gnu: Add go-github-com-blanu-dust Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 13/25] gnu: Add go-github-com-deckarep-golang-set Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 14/25] gnu: Add go-github-com-operatorfoundation-monolith-go Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 15/25] gnu: Add go-github-com-opentracing-opentracing-go Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 16/25] gnu: Add go-github-com-mufti1-interconv Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 17/25] gnu: Add go-github-com-aead-chacha20 Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 18/25] gnu: Add go-github-com-riobard-go-bloom Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 19/25] gnu: Add go-github-com-shadowsocks-go-shadowsocks2 Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 20/25] gnu: Add go-github-com-kataras-pio Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 21/25] gnu: Add go-github-com-kataras-golog Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 22/25] gnu: Add go-github-com-operatorfoundation-shapeshifter-transports Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 23/25] gnu: Add go-0xacab-org-leap-shapeshifter Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 24/25] gnu: Add bitmask Raghav Gururajan via Guix-patches via
2021-07-03  6:05   ` [bug#48729] [PATCH v8 25/25] services: Add bitmask-service-type Raghav Gururajan via Guix-patches via
2021-07-03  6:46 ` [bug#48729] [PATCHES v9 ALL/25]: Bitmask Raghav Gururajan via Guix-patches via
2021-07-07 12:51   ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-07 14:33     ` bug#48729: " Raghav Gururajan via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210609170022.8207-47-rg@raghavgururajan.name \
    --to=guix-patches@gnu.org \
    --cc=48729@debbugs.gnu.org \
    --cc=jgart@disroot.org \
    --cc=rg@raghavgururajan.name \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.