all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 66827@debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus@gmail.com>
Subject: [bug#66827] [PATCH 01/67] gnu: Add (gnu packages golang-web) module.
Date: Wed,  8 Nov 2023 00:40:38 +0000	[thread overview]
Message-ID: <0117df90b1ef43a67d4fa86e5b58e60f7c0a52e5.1699403992.git.sharlatanus@gmail.com> (raw)
In-Reply-To: <cover.1698627461.git.sharlatanus@gmail.com>

* gnu/packages/golang-web.scm: New file.
* gnu/local.mk: Add to gnu/packages/golang-web.scm scope.
---
 gnu/local.mk                |  1 +
 gnu/packages/golang-web.scm | 39 +++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)
 create mode 100644 gnu/packages/golang-web.scm

diff --git a/gnu/local.mk b/gnu/local.mk
index a381d28b83..52b5a7ef3e 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -303,6 +303,7 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/gobby.scm			\
   %D%/packages/golang.scm			\
   %D%/packages/golang-check.scm		\
+  %D%/packages/golang-web.scm	        	\
   %D%/packages/gperf.scm			\
   %D%/packages/gpodder.scm			\
   %D%/packages/gps.scm				\
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
new file mode 100644
index 0000000000..feb2854d9c
--- /dev/null
+++ b/gnu/packages/golang-web.scm
@@ -0,0 +1,39 @@
+;;; GNU Guix --- Functional package management for GNU
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages golang-web)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix packages)
+  #:use-module (guix build-system go)
+  #:use-module (guix git-download)
+  #:use-module (gnu packages)
+  #:use-module (gnu packages golang))
+
+;;; Commentary:
+;;;
+;;; Golang modules (libraries) related to HTML, CSS, SCSS, JavaScript, JSON,
+;;; Web-framework, REST-API or similar functionality.
+;;;
+;;; Please: Try to add new module packages in alphabetic order.
+;;;
+;;; Code:
+\f
+;;;
+;;; Avoid adding new packages to the end of this file. To reduce the chances
+;;; of a merge conflict, place them above by existing packages with similar
+;;; functionality or similar names.
+;;;

base-commit: 19fe24c5b978a16cbca3cddbfa3ab9d1ee2c68f2
-- 
2.41.0





  parent reply	other threads:[~2023-11-07 21:47 UTC|newest]

Thread overview: 206+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-30  1:05 [bug#66827] [PATCH 00/67] Split (gnu packages golang) part II Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 01/67] gnu: Add (gnu packages golang-web) module Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 02/67] gnu: go-github-com-gorilla-mux: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 03/67] gnu: go-github-com-gorilla-css: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 04/67] gnu: go-github-com-aymerick-douceur: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 05/67] gnu: go-github-com-andybalholm-cascadia: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 06/67] gnu: go-github-com-puerkitobio-goquery: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 07/67] gnu: go-github-com-chris-ramon-douceur: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 08/67] gnu: go-github-com-gorilla-websocket: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 09/67] gnu: go-github-com-sourcegraph-jsonrpc2: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 10/67] gnu: go-github-com-gorilla-handlers: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 11/67] gnu: go-github-com-gorilla-handlers: Remove input labels Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 12/67] gnu: go-github-com-felixge-httpsnoop: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 13/67] gnu: go-github-com-gorilla-securecookie: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 14/67] gnu: go-github-com-gorilla-sessions: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 15/67] gnu: go-github-com-jcmturner-gokrb5-v8: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 16/67] gnu: go-github-com-jcmturner-gokrb5-v8: Adjust inputs Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 17/67] gnu: go-github-com-jcmturner-dnsutils-v2: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 18/67] gnu: go-github-com-jcmturner-dnsutils-v2: Adjust inputs Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 19/67] gnu: go-github-com-jcmturner-goidentity-v6: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 20/67] gnu: go-github-com-jcmturner-goidentity-v6: Adjust inputs Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 21/67] gnu: go-github-com-gorilla-csrf: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 22/67] gnu: go-github-com-tdewolff-minify-v2: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 23/67] gnu: go-github-com-tdewolff-parse-v2: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 24/67] gnu: go-github-com-gorilla-context: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 25/67] gnu: go-github-com-microcosm-cc-bluemonday: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 26/67] gnu: go-github-com-google-safehtml: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 27/67] gnu: go-github-com-google-safehtml: Remove input labels Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 28/67] gnu: go-github-com-bep-golibsass: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 29/67] gnu: go-gopkg-in-square-go-jose-v2: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 30/67] gnu: go-github-com-coreos-go-oidc: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 31/67] gnu: go-github-com-coreos-go-oidc-v3: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 32/67] gnu: go-github-com-aws-sdk: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 33/67] gnu: go-github-com-valyala-fasthttp: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 34/67] gnu: go-github-com-go-chi-chi-v5: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 35/67] gnu: go-github-com-julienschmidt-httprouter: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 36/67] gnu: go-github-com-emicklei-go-restful: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 37/67] gnu: go-github-com-tv42-httpunix: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 38/67] gnu: go-github-com-opentracing-opentracing-go: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 39/67] gnu: go-github-com-francoispqt-gojay: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 40/67] gnu: go-github-com-francoispqt-gojay: Adjust inputs Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 41/67] gnu: go-github-com-goccy-go-json: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 42/67] gnu: go-github-com-jmespath-go-jmespath: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 43/67] gnu: go-github-com-aws-smithy-go: " Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 44/67] gnu: go-github-com-aws-smithy-go: Adjust description Sharlatan Hellseher
2023-10-30  1:08 ` [bug#66827] [PATCH 45/67] gnu: go-github-com-aws-aws-sdk-go-v2: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 46/67] gnu: go-github-com-aws-aws-sdk-go: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 47/67] gnu: go-github-com-aws-aws-sdk-go-v2-config: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 48/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-iam: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 49/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-sso: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 50/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-ssooidc: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 51/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-sts: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 52/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-s3: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 53/67] gnu: go-github-com-aws-aws-sdk-go-v2-feature-s3-manager: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 54/67] gnu: go-github-com-nwidger-jsoncolor: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 55/67] gnu: go-github-com-hjson-hjson-go: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 56/67] gnu: go-github-com-xeipuuv-gojsonschema: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 57/67] gnu: go-github-com-xeipuuv-gojsonschema: Adjust inputs Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 58/67] gnu: go-github-com-xeipuuv-gojsonpointer: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 59/67] gnu: go-github-com-xeipuuv-gojsonreference: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 60/67] gnu: go-github-com-whyrusleeping-json-filter: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 61/67] gnu: go-github-com-stretchr-objx: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 62/67] gnu: go-github-com-google-go-github: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 63/67] gnu: go-cloud-google-com-go-compute-metadata: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 64/67] gnu: go-github-com-getsentry-raven-go: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 65/67] gnu: go-github-com-go-telegram-bot-api-telegram-bot-api: " Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 66/67] gnu: actionlint: Update to 1.6.26 Sharlatan Hellseher
2023-10-30  1:09 ` [bug#66827] [PATCH 67/67] teams: go-team: Extend scope Sharlatan Hellseher
2023-11-03 19:47 ` [bug#66827] Sharlatan Hellseher
2023-11-08  0:39 ` [bug#66827] Sharlatan Hellseher
2023-11-08  0:40 ` Sharlatan Hellseher [this message]
2023-11-08  0:40   ` [bug#66827] [PATCH 02/67] gnu: go-github-com-gorilla-mux: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 03/67] gnu: go-github-com-gorilla-css: " Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 04/67] gnu: go-github-com-aymerick-douceur: " Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 05/67] gnu: go-github-com-andybalholm-cascadia: " Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 06/67] gnu: go-github-com-puerkitobio-goquery: " Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 07/67] gnu: go-github-com-chris-ramon-douceur: " Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 08/67] gnu: go-github-com-gorilla-websocket: " Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 09/67] gnu: go-github-com-sourcegraph-jsonrpc2: " Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 10/67] gnu: go-github-com-gorilla-handlers: " Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 11/67] gnu: go-github-com-gorilla-handlers: Remove input labels Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 12/67] gnu: go-github-com-felixge-httpsnoop: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 13/67] gnu: go-github-com-gorilla-securecookie: " Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 14/67] gnu: go-github-com-gorilla-sessions: " Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 15/67] gnu: go-github-com-jcmturner-gokrb5-v8: " Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 16/67] gnu: go-github-com-jcmturner-gokrb5-v8: Adjust inputs Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 17/67] gnu: go-github-com-jcmturner-dnsutils-v2: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 18/67] gnu: go-github-com-jcmturner-dnsutils-v2: Adjust inputs Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 19/67] gnu: go-github-com-jcmturner-goidentity-v6: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 20/67] gnu: go-github-com-jcmturner-goidentity-v6: Adjust inputs Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 21/67] gnu: go-github-com-gorilla-csrf: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-08  0:40   ` [bug#66827] [PATCH 22/67] gnu: go-github-com-tdewolff-minify-v2: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 23/67] gnu: go-github-com-tdewolff-parse-v2: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 24/67] gnu: go-github-com-gorilla-context: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 25/67] gnu: go-github-com-microcosm-cc-bluemonday: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 26/67] gnu: go-github-com-google-safehtml: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 27/67] gnu: go-github-com-google-safehtml: Remove input labels Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 28/67] gnu: go-github-com-bep-golibsass: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 29/67] gnu: go-gopkg-in-square-go-jose-v2: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 30/67] gnu: go-github-com-coreos-go-oidc: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 31/67] gnu: go-github-com-coreos-go-oidc-v3: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 32/67] gnu: go-github-com-aws-sdk: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 33/67] gnu: go-github-com-valyala-fasthttp: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 34/67] gnu: go-github-com-go-chi-chi-v5: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 35/67] gnu: go-github-com-julienschmidt-httprouter: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 36/67] gnu: go-github-com-emicklei-go-restful: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 37/67] gnu: go-github-com-tv42-httpunix: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 38/67] gnu: go-github-com-opentracing-opentracing-go: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 39/67] gnu: go-github-com-francoispqt-gojay: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 40/67] gnu: go-github-com-francoispqt-gojay: Adjust inputs Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 41/67] gnu: go-github-com-goccy-go-json: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 42/67] gnu: go-github-com-jmespath-go-jmespath: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 43/67] gnu: go-github-com-aws-smithy-go: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 44/67] gnu: go-github-com-aws-smithy-go: Adjust description Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 45/67] gnu: go-github-com-aws-aws-sdk-go-v2: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 46/67] gnu: go-github-com-aws-aws-sdk-go: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 47/67] gnu: go-github-com-aws-aws-sdk-go-v2-config: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 48/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-iam: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 49/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-sso: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 50/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-ssooidc: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 51/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-sts: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 52/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-s3: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 53/67] gnu: go-github-com-aws-aws-sdk-go-v2-feature-s3-manager: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 54/67] gnu: go-github-com-nwidger-jsoncolor: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 55/67] gnu: go-github-com-hjson-hjson-go: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 56/67] gnu: go-github-com-xeipuuv-gojsonschema: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 57/67] gnu: go-github-com-xeipuuv-gojsonschema: Adjust inputs Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 58/67] gnu: go-github-com-xeipuuv-gojsonpointer: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 59/67] gnu: go-github-com-xeipuuv-gojsonreference: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 60/67] gnu: go-github-com-whyrusleeping-json-filter: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 61/67] gnu: go-github-com-stretchr-objx: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 62/67] gnu: go-github-com-google-go-github: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 63/67] gnu: go-cloud-google-com-go-compute-metadata: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 64/67] gnu: go-github-com-getsentry-raven-go: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 65/67] gnu: go-github-com-go-telegram-bot-api-telegram-bot-api: " Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 66/67] gnu: actionlint: Update to 1.6.26 Sharlatan Hellseher
2023-11-08  0:41   ` [bug#66827] [PATCH 67/67] teams: go-team: Extend scope Sharlatan Hellseher
2023-11-13 20:00 ` [bug#66827] Sharlatan Hellseher
2024-01-03 21:44   ` bug#66827: none Maxim Cournoyer
2023-11-20 17:44 ` [bug#66827] Sharlatan Hellseher
2023-11-29 22:34 ` [bug#66827] [PATCH v3 01/66] gnu: Add (gnu packages golang-web) module Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 02/66] gnu: go-github-com-gorilla-mux: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 03/66] gnu: go-github-com-gorilla-css: " Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 04/66] gnu: go-github-com-aymerick-douceur: " Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 05/66] gnu: go-github-com-andybalholm-cascadia: " Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 06/66] gnu: go-github-com-puerkitobio-goquery: " Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 07/66] gnu: go-github-com-chris-ramon-douceur: " Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 08/66] gnu: go-github-com-gorilla-websocket: " Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 09/66] gnu: go-github-com-sourcegraph-jsonrpc2: " Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 10/66] gnu: go-github-com-gorilla-handlers: " Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 11/66] gnu: go-github-com-gorilla-handlers: Remove input labels Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 12/66] gnu: go-github-com-felixge-httpsnoop: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 13/66] gnu: go-github-com-gorilla-securecookie: " Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 14/66] gnu: go-github-com-gorilla-sessions: " Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 15/66] gnu: go-github-com-jcmturner-gokrb5-v8: " Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 16/66] gnu: go-github-com-jcmturner-gokrb5-v8: Adjust inputs Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 17/66] gnu: go-github-com-jcmturner-dnsutils-v2: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 18/66] gnu: go-github-com-jcmturner-dnsutils-v2: Adjust inputs Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 19/66] gnu: go-github-com-jcmturner-goidentity-v6: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 20/66] gnu: go-github-com-jcmturner-goidentity-v6: Adjust inputs Sharlatan Hellseher
2023-11-29 22:34   ` [bug#66827] [PATCH v3 21/66] gnu: go-github-com-gorilla-csrf: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 22/66] gnu: go-github-com-tdewolff-minify-v2: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 23/66] gnu: go-github-com-tdewolff-parse-v2: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 24/66] gnu: go-github-com-gorilla-context: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 25/66] gnu: go-github-com-microcosm-cc-bluemonday: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 26/66] gnu: go-github-com-google-safehtml: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 27/66] gnu: go-github-com-google-safehtml: Remove input labels Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 28/66] gnu: go-github-com-bep-golibsass: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 29/66] gnu: go-gopkg-in-square-go-jose-v2: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 30/66] gnu: go-github-com-coreos-go-oidc: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 31/66] gnu: go-github-com-coreos-go-oidc-v3: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 32/66] gnu: go-github-com-aws-sdk: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 33/66] gnu: go-github-com-valyala-fasthttp: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 34/66] gnu: go-github-com-go-chi-chi-v5: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 35/66] gnu: go-github-com-julienschmidt-httprouter: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 36/66] gnu: go-github-com-emicklei-go-restful: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 37/66] gnu: go-github-com-tv42-httpunix: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 38/66] gnu: go-github-com-opentracing-opentracing-go: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 39/66] gnu: go-github-com-francoispqt-gojay: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 40/66] gnu: go-github-com-francoispqt-gojay: Adjust inputs Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 41/66] gnu: go-github-com-goccy-go-json: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 42/66] gnu: go-github-com-jmespath-go-jmespath: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 43/66] gnu: go-github-com-aws-smithy-go: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 44/66] gnu: go-github-com-aws-smithy-go: Adjust description Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 45/66] gnu: go-github-com-aws-aws-sdk-go-v2: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 46/66] gnu: go-github-com-aws-aws-sdk-go: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 47/66] gnu: go-github-com-aws-aws-sdk-go-v2-config: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 48/66] gnu: go-github-com-aws-aws-sdk-go-v2-service-iam: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 49/66] gnu: go-github-com-aws-aws-sdk-go-v2-service-sso: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 50/66] gnu: go-github-com-aws-aws-sdk-go-v2-service-ssooidc: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 51/66] gnu: go-github-com-aws-aws-sdk-go-v2-service-sts: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 52/66] gnu: go-github-com-aws-aws-sdk-go-v2-service-s3: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 53/66] gnu: go-github-com-aws-aws-sdk-go-v2-feature-s3-manager: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 54/66] gnu: go-github-com-nwidger-jsoncolor: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 55/66] gnu: go-github-com-hjson-hjson-go: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 56/66] gnu: go-github-com-xeipuuv-gojsonschema: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 57/66] gnu: go-github-com-xeipuuv-gojsonschema: Adjust inputs Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 58/66] gnu: go-github-com-xeipuuv-gojsonpointer: Move to (gnu packages golang-web) Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 59/66] gnu: go-github-com-xeipuuv-gojsonreference: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 60/66] gnu: go-github-com-whyrusleeping-json-filter: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 61/66] gnu: go-github-com-stretchr-objx: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 62/66] gnu: go-github-com-google-go-github: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 63/66] gnu: go-cloud-google-com-go-compute-metadata: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 64/66] gnu: go-github-com-getsentry-raven-go: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 65/66] gnu: go-github-com-go-telegram-bot-api-telegram-bot-api: " Sharlatan Hellseher
2023-11-29 22:35   ` [bug#66827] [PATCH v3 66/66] gnu: actionlint: Update to 1.6.26 Sharlatan Hellseher

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=0117df90b1ef43a67d4fa86e5b58e60f7c0a52e5.1699403992.git.sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=66827@debbugs.gnu.org \
    /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.