GNU bug report logs - #56096
[PATCH 0/3] SQL language server

Previous Next

Package: guix-patches;

Reported by: muradm <mail <at> muradm.net>

Date: Sun, 19 Jun 2022 15:29:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 56096 in the body.
You can then email your comments to 56096 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#56096; Package guix-patches. (Sun, 19 Jun 2022 15:29:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to muradm <mail <at> muradm.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 19 Jun 2022 15:29:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: muradm <mail <at> muradm.net>
To: guix-patches <at> gnu.org
Subject: [PATCH 0/3] SQL language server
Date: Sun, 19 Jun 2022 18:28:33 +0300
Following patches adds necessary packages for sqls.

muradm (3):
  gnu: golang: Add go-github-com-gorilla-websocket 1.5.0.
  gnu: golang: Add go-github-com-sourcegraph-jsonrpc2 0.1.0.
  gnu: databases: Add sqls 0.2.18.

 gnu/packages/databases.scm | 34 +++++++++++++++++++++++++++
 gnu/packages/golang.scm    | 47 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 81 insertions(+)

-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#56096; Package guix-patches. (Sun, 19 Jun 2022 15:35:01 GMT) Full text and rfc822 format available.

Message #8 received at 56096 <at> debbugs.gnu.org (full text, mbox):

From: muradm <mail <at> muradm.net>
To: 56096 <at> debbugs.gnu.org
Subject: [PATCH 2/3] gnu: golang: Add go-github-com-sourcegraph-jsonrpc2 0.1.0.
Date: Sun, 19 Jun 2022 18:34:52 +0300
* gnu/packages/golang.scm (go-github-com-sourcegraph-jsonrpc2): New variable.
---
 gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index b6960f2a26..614751e727 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9865,3 +9865,28 @@ (define-public go-github-com-gorilla-websocket
     (synopsis "A fast, well-tested and widely used WebSocket implementation for Go.")
     (description "Gorilla WebSocket is a Go implementation of the WebSocket protocol.")
     (license license:bsd-2)))
+
+(define-public go-github-com-sourcegraph-jsonrpc2
+  (package
+    (name "go-github-com-sourcegraph-jsonrpc2")
+    (version "0.1.0")
+    (home-page "https://github.com/sourcegraph/jsonrpc2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url home-page)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32 "1dk0w32k96vxrwnmm24wqx337dn8ylch65qwrbc3wh7whw2xx71q"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/sourcegraph/jsonrpc2"))
+    (propagated-inputs
+     `(("go-github-com-daviddengcn-go-colortext" ,go-github-com-daviddengcn-go-colortext)
+       ("go-github-com-motemen-go-colorine" ,go-github-com-motemen-go-colorine)
+       ("go-github-com-gorilla-websocket" ,go-github-com-gorilla-websocket)))
+    (synopsis "Provides a client and server implementation of JSON-RPC 2.0")
+    (description
+     "Package jsonrpc2 provides a Go implementation of JSON-RPC 2.0.")
+    (license license:expat)))
-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#56096; Package guix-patches. (Sun, 19 Jun 2022 15:36:02 GMT) Full text and rfc822 format available.

Message #11 received at 56096 <at> debbugs.gnu.org (full text, mbox):

From: muradm <mail <at> muradm.net>
To: 56096 <at> debbugs.gnu.org
Subject: [PATCH 3/3] gnu: databases: Add sqls 0.2.18.
Date: Sun, 19 Jun 2022 18:34:53 +0300
* gnu/packages/databases (sqls): New variable.
---
 gnu/packages/databases.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 92ab94f453..a61d1d7c9c 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -57,6 +57,7 @@
 ;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
 ;;; Copyright © 2022 Zhu Zihao <all_but_last <at> 163.com>
 ;;; Copyright © 2021 Brice Waegeneire <brice <at> waegenei.re>
+;;; Copyright © 2022 muradm <mail <at> muradm.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -146,6 +147,7 @@ (define-module (gnu packages databases)
   #:use-module (gnu packages sphinx)
   #:use-module (gnu packages ssh)
   #:use-module (gnu packages sqlite)
+  #:use-module (gnu packages syncthing)
   #:use-module (gnu packages tcl)
   #:use-module (gnu packages terminals)
   #:use-module (gnu packages texinfo)
@@ -4788,3 +4790,35 @@ (define-public sqlitebrowser
      ;; dual license
      (list license:gpl3+
            license:mpl2.0))))
+
+(define-public sqls
+  (package
+    (name "sqls")
+    (version "0.2.18")
+    (home-page "https://github.com/lighttiger2505/sqls")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url home-page)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "13837v27avdp2nls3vyy7ml12nj7rxragchwf92adn10ffp4aj6c"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/lighttiger2505/sqls"))
+    (native-inputs
+     `(("go-github-com-go-sql-driver-mysql" ,go-github-com-go-sql-driver-mysql)
+       ("go-github-com-lib-pq" ,go-github-com-lib-pq)
+       ("go-github-com-mattn-go-sqlite3" ,go-github-com-mattn-go-sqlite3)
+       ("go-github-com-olekukonko-tablewriter" ,go-github-com-olekukonko-tablewriter)
+       ("go-github-com-pkg-errors" ,go-github-com-pkg-errors)
+       ("go-github-com-sourcegraph-jsonrpc2" ,go-github-com-sourcegraph-jsonrpc2)
+       ("go-golang-org-x-crypto" ,go-golang-org-x-crypto)
+       ("go-github.com-mattn-go-runewidth" ,go-github.com-mattn-go-runewidth)
+       ("go-golang-org-x-xerrors" ,go-golang-org-x-xerrors)
+       ("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2)))
+    (synopsis "SQL language server written in Go.")
+    (description "An implementation of the Language Server Protocol for SQL")
+    (license license:expat)))
-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#56096; Package guix-patches. (Sun, 19 Jun 2022 15:36:02 GMT) Full text and rfc822 format available.

Message #14 received at 56096 <at> debbugs.gnu.org (full text, mbox):

From: muradm <mail <at> muradm.net>
To: 56096 <at> debbugs.gnu.org
Subject: [PATCH 1/3] gnu: golang: Add go-github-com-gorilla-websocket 1.5.0.
Date: Sun, 19 Jun 2022 18:34:51 +0300
* gnu/packages/golang.scm (go-github-com-gorilla-websocket): New variable.
---
 gnu/packages/golang.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 296f0b8b07..b6960f2a26 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -34,6 +34,7 @@
 ;;; Copyright © 2021 Philip McGrath <philip <at> philipmcgrath.com>
 ;;; Copyright © 2021 Lu Hui <luhux76 <at> gmail.com>
 ;;; Copyright © 2022 Pier-Hugues Pellerin <phpellerin <at> gmail.com>
+;;; Copyright © 2022 muradm <mail <at> muradm.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -9843,3 +9844,24 @@ (define-public go-github-com-google-go-jsonnet
 production-ready implementation, compatible with the original Jsonnet C++
 implementation.")
     (license license:asl2.0)))
+
+(define-public go-github-com-gorilla-websocket
+  (package
+    (name "go-github-com-gorilla-websocket")
+    (version "1.5.0")
+    (home-page "https://github.com/gorilla/websocket")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url home-page)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1xrr6snvs9g1nzxxg05w4i4pq6k1xjljl5mvavd838qc468n118i"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/gorilla/websocket"))
+    (synopsis "A fast, well-tested and widely used WebSocket implementation for Go.")
+    (description "Gorilla WebSocket is a Go implementation of the WebSocket protocol.")
+    (license license:bsd-2)))
-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#56096; Package guix-patches. (Sun, 19 Jun 2022 17:08:01 GMT) Full text and rfc822 format available.

Message #17 received at 56096 <at> debbugs.gnu.org (full text, mbox):

From: Maxime Devos <maximedevos <at> telenet.be>
To: muradm <mail <at> muradm.net>, 56096 <at> debbugs.gnu.org
Subject: Re: [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18.
Date: Sun, 19 Jun 2022 19:07:25 +0200
[Message part 1 (text/plain, inline)]
muradm schreef op zo 19-06-2022 om 18:34 [+0300]:
> +    (native-inputs
> +     `(("go-github-com-go-sql-driver-mysql" ,go-github-com-go-sql-driver-mysql)
> +       ("go-github-com-lib-pq" ,go-github-com-lib-pq)
> +       ("go-github-com-mattn-go-sqlite3" ,go-github-com-mattn-go-sqlite3)
> +       ("go-github-com-olekukonko-tablewriter" ,go-github-com-olekukonko-tablewriter)
> +       ("go-github-com-pkg-errors" ,go-github-com-pkg-errors)
> +       ("go-github-com-sourcegraph-jsonrpc2" ,go-github-com-sourcegraph-jsonrpc2)
> +       ("go-golang-org-x-crypto" ,go-golang-org-x-crypto)
> +       ("go-github.com-mattn-go-runewidth" ,go-github.com-mattn-go-runewidth)
> +       ("go-golang-org-x-xerrors" ,go-golang-org-x-xerrors)
> +       ("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2)))

What's the reason to put these 'native-inputs'?  These don't look like
test-only inputs or such to me ...

Greetings,
Maxime.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#56096; Package guix-patches. (Sun, 19 Jun 2022 17:09:02 GMT) Full text and rfc822 format available.

Message #20 received at 56096 <at> debbugs.gnu.org (full text, mbox):

From: Maxime Devos <maximedevos <at> telenet.be>
To: muradm <mail <at> muradm.net>, 56096 <at> debbugs.gnu.org
Subject: Re: [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18.
Date: Sun, 19 Jun 2022 19:07:59 +0200
[Message part 1 (text/plain, inline)]
muradm schreef op zo 19-06-2022 om 18:34 [+0300]:
> +    (native-inputs
> +     `(("go-github-com-go-sql-driver-mysql" ,go-github-com-go-sql-driver-mysql)
> +       ("go-github-com-lib-pq" ,go-github-com-lib-pq)
> +       ("go-github-com-mattn-go-sqlite3" ,go-github-com-mattn-go-sqlite3)
> +       ("go-github-com-olekukonko-tablewriter" ,go-github-com-olekukonko-tablewriter)
> +       ("go-github-com-pkg-errors" ,go-github-com-pkg-errors)
> +       ("go-github-com-sourcegraph-jsonrpc2" ,go-github-com-sourcegraph-jsonrpc2)
> +       ("go-golang-org-x-crypto" ,go-golang-org-x-crypto)
> +       ("go-github.com-mattn-go-runewidth" ,go-github.com-mattn-go-runewidth)
> +       ("go-golang-org-x-xerrors" ,go-golang-org-x-xerrors)
> +       ("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2)))

Can be simplified to (native-inputs (list go-github-...-this-package
go-github-...-that-package ...)).

Greetings,
Maxime.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#56096; Package guix-patches. (Mon, 20 Jun 2022 04:23:02 GMT) Full text and rfc822 format available.

Message #23 received at 56096 <at> debbugs.gnu.org (full text, mbox):

From: muradm <mail <at> muradm.net>
To: 56096 <at> debbugs.gnu.org
Cc: Maxime Devos <maximedevos <at> telenet.be>
Subject: [PATCH v2 1/3] gnu: golang: Add go-github-com-gorilla-websocket 1.5.0.
Date: Mon, 20 Jun 2022 07:22:37 +0300
* gnu/packages/golang.scm (go-github-com-gorilla-websocket): New variable.
---
 gnu/packages/golang.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 296f0b8b07..b6960f2a26 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -34,6 +34,7 @@
 ;;; Copyright © 2021 Philip McGrath <philip <at> philipmcgrath.com>
 ;;; Copyright © 2021 Lu Hui <luhux76 <at> gmail.com>
 ;;; Copyright © 2022 Pier-Hugues Pellerin <phpellerin <at> gmail.com>
+;;; Copyright © 2022 muradm <mail <at> muradm.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -9843,3 +9844,24 @@ (define-public go-github-com-google-go-jsonnet
 production-ready implementation, compatible with the original Jsonnet C++
 implementation.")
     (license license:asl2.0)))
+
+(define-public go-github-com-gorilla-websocket
+  (package
+    (name "go-github-com-gorilla-websocket")
+    (version "1.5.0")
+    (home-page "https://github.com/gorilla/websocket")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url home-page)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1xrr6snvs9g1nzxxg05w4i4pq6k1xjljl5mvavd838qc468n118i"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/gorilla/websocket"))
+    (synopsis "A fast, well-tested and widely used WebSocket implementation for Go.")
+    (description "Gorilla WebSocket is a Go implementation of the WebSocket protocol.")
+    (license license:bsd-2)))
-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#56096; Package guix-patches. (Mon, 20 Jun 2022 04:23:02 GMT) Full text and rfc822 format available.

Message #26 received at 56096 <at> debbugs.gnu.org (full text, mbox):

From: muradm <mail <at> muradm.net>
To: 56096 <at> debbugs.gnu.org
Cc: Maxime Devos <maximedevos <at> telenet.be>
Subject: [PATCH v2 2/3] gnu: golang: Add go-github-com-sourcegraph-jsonrpc2
 0.1.0.
Date: Mon, 20 Jun 2022 07:22:38 +0300
* gnu/packages/golang.scm (go-github-com-sourcegraph-jsonrpc2): New variable.
---
 gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index b6960f2a26..933cf25f2e 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9865,3 +9865,29 @@ (define-public go-github-com-gorilla-websocket
     (synopsis "A fast, well-tested and widely used WebSocket implementation for Go.")
     (description "Gorilla WebSocket is a Go implementation of the WebSocket protocol.")
     (license license:bsd-2)))
+
+(define-public go-github-com-sourcegraph-jsonrpc2
+  (package
+    (name "go-github-com-sourcegraph-jsonrpc2")
+    (version "0.1.0")
+    (home-page "https://github.com/sourcegraph/jsonrpc2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url home-page)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32 "1dk0w32k96vxrwnmm24wqx337dn8ylch65qwrbc3wh7whw2xx71q"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/sourcegraph/jsonrpc2"))
+    (propagated-inputs
+     (list
+      go-github-com-daviddengcn-go-colortext
+      go-github-com-motemen-go-colorine
+      go-github-com-gorilla-websocket))
+    (synopsis "Provides a client and server implementation of JSON-RPC 2.0")
+    (description
+     "Package jsonrpc2 provides a Go implementation of JSON-RPC 2.0.")
+    (license license:expat)))
-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#56096; Package guix-patches. (Mon, 20 Jun 2022 04:23:02 GMT) Full text and rfc822 format available.

Message #29 received at 56096 <at> debbugs.gnu.org (full text, mbox):

From: muradm <mail <at> muradm.net>
To: 56096 <at> debbugs.gnu.org
Cc: Maxime Devos <maximedevos <at> telenet.be>
Subject: [PATCH v2 0/3] Re: [bug#56096] [PATCH 3/3] gnu: databases: Add sqls
 0.2.18.
Date: Mon, 20 Jun 2022 07:22:36 +0300
* No particular reason for native-inputs, copy paste typo, fixed
* inputs simplified as well

muradm (3):
  gnu: golang: Add go-github-com-gorilla-websocket 1.5.0.
  gnu: golang: Add go-github-com-sourcegraph-jsonrpc2 0.1.0.
  gnu: databases: Add sqls 0.2.18.

 gnu/packages/databases.scm | 35 +++++++++++++++++++++++++++
 gnu/packages/golang.scm    | 48 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 83 insertions(+)

-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#56096; Package guix-patches. (Mon, 20 Jun 2022 04:24:02 GMT) Full text and rfc822 format available.

Message #32 received at 56096 <at> debbugs.gnu.org (full text, mbox):

From: muradm <mail <at> muradm.net>
To: 56096 <at> debbugs.gnu.org
Cc: Maxime Devos <maximedevos <at> telenet.be>
Subject: [PATCH v2 3/3] gnu: databases: Add sqls 0.2.18.
Date: Mon, 20 Jun 2022 07:22:39 +0300
* gnu/packages/databases (sqls): New variable.
---
 gnu/packages/databases.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 92ab94f453..1c44b0c63e 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -57,6 +57,7 @@
 ;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
 ;;; Copyright © 2022 Zhu Zihao <all_but_last <at> 163.com>
 ;;; Copyright © 2021 Brice Waegeneire <brice <at> waegenei.re>
+;;; Copyright © 2022 muradm <mail <at> muradm.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -146,6 +147,7 @@ (define-module (gnu packages databases)
   #:use-module (gnu packages sphinx)
   #:use-module (gnu packages ssh)
   #:use-module (gnu packages sqlite)
+  #:use-module (gnu packages syncthing)
   #:use-module (gnu packages tcl)
   #:use-module (gnu packages terminals)
   #:use-module (gnu packages texinfo)
@@ -4788,3 +4790,36 @@ (define-public sqlitebrowser
      ;; dual license
      (list license:gpl3+
            license:mpl2.0))))
+
+(define-public sqls
+  (package
+    (name "sqls")
+    (version "0.2.18")
+    (home-page "https://github.com/lighttiger2505/sqls")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url home-page)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "13837v27avdp2nls3vyy7ml12nj7rxragchwf92adn10ffp4aj6c"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/lighttiger2505/sqls"))
+    (inputs
+     (list
+      go-github-com-go-sql-driver-mysql
+      go-github-com-lib-pq
+      go-github-com-mattn-go-sqlite3
+      go-github-com-olekukonko-tablewriter
+      go-github-com-pkg-errors
+      go-github-com-sourcegraph-jsonrpc2
+      go-golang-org-x-crypto
+      go-github.com-mattn-go-runewidth
+      go-golang-org-x-xerrors
+      go-gopkg-in-yaml-v2))
+    (synopsis "SQL language server written in Go.")
+    (description "An implementation of the Language Server Protocol for SQL")
+    (license license:expat)))
-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#56096; Package guix-patches. (Mon, 20 Jun 2022 09:40:02 GMT) Full text and rfc822 format available.

Message #35 received at 56096 <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> ist.tugraz.at>
To: muradm <mail <at> muradm.net>, 56096 <at> debbugs.gnu.org
Cc: Maxime Devos <maximedevos <at> telenet.be>
Subject: Re: [PATCH v2 3/3] gnu: databases: Add sqls 0.2.18.
Date: Mon, 20 Jun 2022 11:39:22 +0200
Hi

Am Montag, dem 20.06.2022 um 07:22 +0300 schrieb muradm:
> * gnu/packages/databases (sqls): New variable.
> ---
>  gnu/packages/databases.scm | 35 +++++++++++++++++++++++++++++++++++
>  1 file changed, 35 insertions(+)
> 
> diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
> index 92ab94f453..1c44b0c63e 100644
> --- a/gnu/packages/databases.scm
> +++ b/gnu/packages/databases.scm
> @@ -57,6 +57,7 @@
>  ;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
>  ;;; Copyright © 2022 Zhu Zihao <all_but_last <at> 163.com>
>  ;;; Copyright © 2021 Brice Waegeneire <brice <at> waegenei.re>
> +;;; Copyright © 2022 muradm <mail <at> muradm.net>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -146,6 +147,7 @@ (define-module (gnu packages databases)
>    #:use-module (gnu packages sphinx)
>    #:use-module (gnu packages ssh)
>    #:use-module (gnu packages sqlite)
> +  #:use-module (gnu packages syncthing)
Why do we need to use-module syncthing here?  Can this contribute
towards a cycle?  Should the relevant go package perhaps be moved?


Cheers




Information forwarded to guix-patches <at> gnu.org:
bug#56096; Package guix-patches. (Mon, 20 Jun 2022 11:26:01 GMT) Full text and rfc822 format available.

Message #38 received at 56096 <at> debbugs.gnu.org (full text, mbox):

From: muradm <mail <at> muradm.net>
To: Liliana Marie Prikler <liliana.prikler <at> ist.tugraz.at>
Cc: 56096 <at> debbugs.gnu.org, Maxime Devos <maximedevos <at> telenet.be>
Subject: Re: [PATCH v2 3/3] gnu: databases: Add sqls 0.2.18.
Date: Mon, 20 Jun 2022 14:25:08 +0300
[Message part 1 (text/plain, inline)]
Hi,

go-github-com-lib-pq originated from there.

--
muradm

Liliana Marie Prikler <liliana.prikler <at> ist.tugraz.at> writes:

> Hi
>
> Am Montag, dem 20.06.2022 um 07:22 +0300 schrieb muradm:
>> * gnu/packages/databases (sqls): New variable.
>> ---
>>  gnu/packages/databases.scm | 35 
>> +++++++++++++++++++++++++++++++++++
>>  1 file changed, 35 insertions(+)
>>
>> diff --git a/gnu/packages/databases.scm 
>> b/gnu/packages/databases.scm
>> index 92ab94f453..1c44b0c63e 100644
>> --- a/gnu/packages/databases.scm
>> +++ b/gnu/packages/databases.scm
>> @@ -57,6 +57,7 @@
>>  ;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
>>  ;;; Copyright © 2022 Zhu Zihao <all_but_last <at> 163.com>
>>  ;;; Copyright © 2021 Brice Waegeneire <brice <at> waegenei.re>
>> +;;; Copyright © 2022 muradm <mail <at> muradm.net>
>>  ;;;
>>  ;;; This file is part of GNU Guix.
>>  ;;;
>> @@ -146,6 +147,7 @@ (define-module (gnu packages databases)
>>    #:use-module (gnu packages sphinx)
>>    #:use-module (gnu packages ssh)
>>    #:use-module (gnu packages sqlite)
>> +  #:use-module (gnu packages syncthing)
> Why do we need to use-module syncthing here?  Can this 
> contribute
> towards a cycle?  Should the relevant go package perhaps be 
> moved?
>
>
> Cheers

[signature.asc (application/pgp-signature, inline)]

Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Sat, 02 Jul 2022 21:06:01 GMT) Full text and rfc822 format available.

Notification sent to muradm <mail <at> muradm.net>:
bug acknowledged by developer. (Sat, 02 Jul 2022 21:06:01 GMT) Full text and rfc822 format available.

Message #43 received at 56096-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: muradm <mail <at> muradm.net>
Cc: 56096-done <at> debbugs.gnu.org, Maxime Devos <maximedevos <at> telenet.be>
Subject: Re: bug#56096: [PATCH 0/3] SQL language server
Date: Sat, 02 Jul 2022 23:05:45 +0200
Hi,

muradm <mail <at> muradm.net> skribis:

>   gnu: golang: Add go-github-com-gorilla-websocket 1.5.0.
>   gnu: golang: Add go-github-com-sourcegraph-jsonrpc2 0.1.0.
>   gnu: databases: Add sqls 0.2.18.

I tweaked the synopsis and description as per our guidelines and ‘guix
lint’ warnings and applied them.

Thanks!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 31 Jul 2022 11:24:12 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 270 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.