unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#56096] [PATCH 0/3] SQL language server
@ 2022-06-19 15:28 muradm
  2022-06-19 15:34 ` [bug#56096] [PATCH 1/3] gnu: golang: Add go-github-com-gorilla-websocket 1.5.0 muradm
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: muradm @ 2022-06-19 15:28 UTC (permalink / raw)
  To: 56096

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





^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#56096] [PATCH 1/3] gnu: golang: Add go-github-com-gorilla-websocket 1.5.0.
  2022-06-19 15:28 [bug#56096] [PATCH 0/3] SQL language server muradm
@ 2022-06-19 15:34 ` muradm
  2022-06-19 15:34 ` [bug#56096] [PATCH 2/3] gnu: golang: Add go-github-com-sourcegraph-jsonrpc2 0.1.0 muradm
  2022-06-19 15:34 ` [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18 muradm
  2 siblings, 0 replies; 13+ messages in thread
From: muradm @ 2022-06-19 15:34 UTC (permalink / raw)
  To: 56096

* 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@philipmcgrath.com>
 ;;; Copyright © 2021 Lu Hui <luhux76@gmail.com>
 ;;; Copyright © 2022 Pier-Hugues Pellerin <phpellerin@gmail.com>
+;;; Copyright © 2022 muradm <mail@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





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#56096] [PATCH 2/3] gnu: golang: Add go-github-com-sourcegraph-jsonrpc2 0.1.0.
  2022-06-19 15:28 [bug#56096] [PATCH 0/3] SQL language server muradm
  2022-06-19 15:34 ` [bug#56096] [PATCH 1/3] gnu: golang: Add go-github-com-gorilla-websocket 1.5.0 muradm
@ 2022-06-19 15:34 ` muradm
  2022-06-19 15:34 ` [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18 muradm
  2 siblings, 0 replies; 13+ messages in thread
From: muradm @ 2022-06-19 15:34 UTC (permalink / raw)
  To: 56096

* 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





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18.
  2022-06-19 15:28 [bug#56096] [PATCH 0/3] SQL language server muradm
  2022-06-19 15:34 ` [bug#56096] [PATCH 1/3] gnu: golang: Add go-github-com-gorilla-websocket 1.5.0 muradm
  2022-06-19 15:34 ` [bug#56096] [PATCH 2/3] gnu: golang: Add go-github-com-sourcegraph-jsonrpc2 0.1.0 muradm
@ 2022-06-19 15:34 ` muradm
  2022-06-19 17:07   ` Maxime Devos
  2022-06-19 17:07   ` [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18 Maxime Devos
  2 siblings, 2 replies; 13+ messages in thread
From: muradm @ 2022-06-19 15:34 UTC (permalink / raw)
  To: 56096

* 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@hotmail.com>
 ;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
 ;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
+;;; Copyright © 2022 muradm <mail@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





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18.
  2022-06-19 15:34 ` [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18 muradm
@ 2022-06-19 17:07   ` Maxime Devos
  2022-06-20  4:22     ` [bug#56096] [PATCH v2 0/3] " muradm
  2022-06-19 17:07   ` [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18 Maxime Devos
  1 sibling, 1 reply; 13+ messages in thread
From: Maxime Devos @ 2022-06-19 17:07 UTC (permalink / raw)
  To: muradm, 56096

[-- Attachment #1: Type: text/plain, Size: 996 bytes --]

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.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18.
  2022-06-19 15:34 ` [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18 muradm
  2022-06-19 17:07   ` Maxime Devos
@ 2022-06-19 17:07   ` Maxime Devos
  1 sibling, 0 replies; 13+ messages in thread
From: Maxime Devos @ 2022-06-19 17:07 UTC (permalink / raw)
  To: muradm, 56096

[-- Attachment #1: Type: text/plain, Size: 993 bytes --]

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.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#56096] [PATCH v2 0/3] Re: [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18.
  2022-06-19 17:07   ` Maxime Devos
@ 2022-06-20  4:22     ` muradm
  2022-06-20  4:22       ` [bug#56096] [PATCH v2 1/3] gnu: golang: Add go-github-com-gorilla-websocket 1.5.0 muradm
                         ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: muradm @ 2022-06-20  4:22 UTC (permalink / raw)
  To: 56096; +Cc: Maxime Devos

* 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





^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#56096] [PATCH v2 1/3] gnu: golang: Add go-github-com-gorilla-websocket 1.5.0.
  2022-06-20  4:22     ` [bug#56096] [PATCH v2 0/3] " muradm
@ 2022-06-20  4:22       ` muradm
  2022-06-20  4:22       ` [bug#56096] [PATCH v2 2/3] gnu: golang: Add go-github-com-sourcegraph-jsonrpc2 0.1.0 muradm
                         ` (2 subsequent siblings)
  3 siblings, 0 replies; 13+ messages in thread
From: muradm @ 2022-06-20  4:22 UTC (permalink / raw)
  To: 56096; +Cc: Maxime Devos

* 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@philipmcgrath.com>
 ;;; Copyright © 2021 Lu Hui <luhux76@gmail.com>
 ;;; Copyright © 2022 Pier-Hugues Pellerin <phpellerin@gmail.com>
+;;; Copyright © 2022 muradm <mail@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





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#56096] [PATCH v2 2/3] gnu: golang: Add go-github-com-sourcegraph-jsonrpc2 0.1.0.
  2022-06-20  4:22     ` [bug#56096] [PATCH v2 0/3] " muradm
  2022-06-20  4:22       ` [bug#56096] [PATCH v2 1/3] gnu: golang: Add go-github-com-gorilla-websocket 1.5.0 muradm
@ 2022-06-20  4:22       ` muradm
  2022-06-20  4:22       ` [bug#56096] [PATCH v2 3/3] gnu: databases: Add sqls 0.2.18 muradm
  2022-07-02 21:05       ` bug#56096: [PATCH 0/3] SQL language server Ludovic Courtès
  3 siblings, 0 replies; 13+ messages in thread
From: muradm @ 2022-06-20  4:22 UTC (permalink / raw)
  To: 56096; +Cc: Maxime Devos

* 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





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#56096] [PATCH v2 3/3] gnu: databases: Add sqls 0.2.18.
  2022-06-20  4:22     ` [bug#56096] [PATCH v2 0/3] " muradm
  2022-06-20  4:22       ` [bug#56096] [PATCH v2 1/3] gnu: golang: Add go-github-com-gorilla-websocket 1.5.0 muradm
  2022-06-20  4:22       ` [bug#56096] [PATCH v2 2/3] gnu: golang: Add go-github-com-sourcegraph-jsonrpc2 0.1.0 muradm
@ 2022-06-20  4:22       ` muradm
  2022-06-20  9:39         ` Liliana Marie Prikler
  2022-07-02 21:05       ` bug#56096: [PATCH 0/3] SQL language server Ludovic Courtès
  3 siblings, 1 reply; 13+ messages in thread
From: muradm @ 2022-06-20  4:22 UTC (permalink / raw)
  To: 56096; +Cc: Maxime Devos

* 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@hotmail.com>
 ;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
 ;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
+;;; Copyright © 2022 muradm <mail@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





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#56096] [PATCH v2 3/3] gnu: databases: Add sqls 0.2.18.
  2022-06-20  4:22       ` [bug#56096] [PATCH v2 3/3] gnu: databases: Add sqls 0.2.18 muradm
@ 2022-06-20  9:39         ` Liliana Marie Prikler
  2022-06-20 11:25           ` muradm
  0 siblings, 1 reply; 13+ messages in thread
From: Liliana Marie Prikler @ 2022-06-20  9:39 UTC (permalink / raw)
  To: muradm, 56096; +Cc: Maxime Devos

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@hotmail.com>
>  ;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
>  ;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
> +;;; Copyright © 2022 muradm <mail@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




^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#56096] [PATCH v2 3/3] gnu: databases: Add sqls 0.2.18.
  2022-06-20  9:39         ` Liliana Marie Prikler
@ 2022-06-20 11:25           ` muradm
  0 siblings, 0 replies; 13+ messages in thread
From: muradm @ 2022-06-20 11:25 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: 56096, Maxime Devos

[-- Attachment #1: Type: text/plain, Size: 1311 bytes --]


Hi,

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

--
muradm

Liliana Marie Prikler <liliana.prikler@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@hotmail.com>
>>  ;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
>>  ;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
>> +;;; Copyright © 2022 muradm <mail@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


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#56096: [PATCH 0/3] SQL language server
  2022-06-20  4:22     ` [bug#56096] [PATCH v2 0/3] " muradm
                         ` (2 preceding siblings ...)
  2022-06-20  4:22       ` [bug#56096] [PATCH v2 3/3] gnu: databases: Add sqls 0.2.18 muradm
@ 2022-07-02 21:05       ` Ludovic Courtès
  3 siblings, 0 replies; 13+ messages in thread
From: Ludovic Courtès @ 2022-07-02 21:05 UTC (permalink / raw)
  To: muradm; +Cc: 56096-done, Maxime Devos

Hi,

muradm <mail@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’.




^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2022-07-02 21:06 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-19 15:28 [bug#56096] [PATCH 0/3] SQL language server muradm
2022-06-19 15:34 ` [bug#56096] [PATCH 1/3] gnu: golang: Add go-github-com-gorilla-websocket 1.5.0 muradm
2022-06-19 15:34 ` [bug#56096] [PATCH 2/3] gnu: golang: Add go-github-com-sourcegraph-jsonrpc2 0.1.0 muradm
2022-06-19 15:34 ` [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18 muradm
2022-06-19 17:07   ` Maxime Devos
2022-06-20  4:22     ` [bug#56096] [PATCH v2 0/3] " muradm
2022-06-20  4:22       ` [bug#56096] [PATCH v2 1/3] gnu: golang: Add go-github-com-gorilla-websocket 1.5.0 muradm
2022-06-20  4:22       ` [bug#56096] [PATCH v2 2/3] gnu: golang: Add go-github-com-sourcegraph-jsonrpc2 0.1.0 muradm
2022-06-20  4:22       ` [bug#56096] [PATCH v2 3/3] gnu: databases: Add sqls 0.2.18 muradm
2022-06-20  9:39         ` Liliana Marie Prikler
2022-06-20 11:25           ` muradm
2022-07-02 21:05       ` bug#56096: [PATCH 0/3] SQL language server Ludovic Courtès
2022-06-19 17:07   ` [bug#56096] [PATCH 3/3] gnu: databases: Add sqls 0.2.18 Maxime Devos

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).