unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge
@ 2018-12-29 15:02 Jelle Licht
  2018-12-29 15:02 ` [bug#33906] [PATCH 1/7] gnu: emacs-closql: Update to 1.0.0 Jelle Licht
                   ` (7 more replies)
  0 siblings, 8 replies; 16+ messages in thread
From: Jelle Licht @ 2018-12-29 15:02 UTC (permalink / raw)
  To: 33907

Jonas Bernoulli from magit fame has recently released forge, an emacs
package that facilitates interaction with so-called forges. This patch
series packages and updates some of the required dependencies of
forge, so it will be easy to add forge once a stable version is
released.

Jelle Licht (7):
  gnu: emacs-closql: Update to 1.0.0.
  gnu: emacs-emacsql: Update to 3.0.0.
  gnu: Add emacs-treepy.
  gnu: Add emacs-graphql.
  gnu: emacs-with-editor: Update to 2.8.0.
  gnu: emacs-magit-popup: Update to 2.12.5.
  gnu: emacs-ghub: Update to 3.2.0.

 gnu/packages/emacs.scm | 122 +++++++++++++++++++++++++++++------------
 1 file changed, 88 insertions(+), 34 deletions(-)

-- 
2.20.1

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

* [bug#33906] [PATCH 1/7] gnu: emacs-closql: Update to 1.0.0.
  2018-12-29 15:02 [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge Jelle Licht
@ 2018-12-29 15:02 ` Jelle Licht
  2019-01-09 15:43   ` Ludovic Courtès
  2018-12-29 15:02 ` [bug#33908] [PATCH 2/7] gnu: emacs-emacsql: Update to 3.0.0 Jelle Licht
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Jelle Licht @ 2018-12-29 15:02 UTC (permalink / raw)
  To: 33906

* gnu/packages/emacs.scm (emacs-closql): Update to 1.0.0.
[source]: Use 'git-fetch'.
---
 gnu/packages/emacs.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 35d59fe8f..c0d6635de 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8906,16 +8906,17 @@ object @code{nil} corresponds 1:1 with @code{NULL} in the database.")
 (define-public emacs-closql
   (package
     (name "emacs-closql")
-    (version "0.5.1")
+    (version "1.0.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/emacscollective/closql/archive/"
-                           "v" version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/emacscollective/closql.git")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
         (base32
-         "0wa6r0kgbb7f19039p5f3di4dvrvxfgpd8bkam94fca7jvzj536c"))))
+         "0cy44d1fxkvah6fhjkn3mp6gzzrjmws1c4c20ayrma74y9xich3v"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-emacsql" ,emacs-emacsql)))
-- 
2.20.1

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

* [bug#33908] [PATCH 2/7] gnu: emacs-emacsql: Update to 3.0.0.
  2018-12-29 15:02 [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge Jelle Licht
  2018-12-29 15:02 ` [bug#33906] [PATCH 1/7] gnu: emacs-closql: Update to 1.0.0 Jelle Licht
@ 2018-12-29 15:02 ` Jelle Licht
  2019-01-09 15:43   ` Ludovic Courtès
  2018-12-29 15:02 ` [bug#33909] [PATCH 3/7] gnu: Add emacs-treepy Jelle Licht
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Jelle Licht @ 2018-12-29 15:02 UTC (permalink / raw)
  To: 33908

* gnu/packages/emacs.scm (emacs-emacsql): Update to 3.0.0.
[source]: Use 'git-fetch'.
[arguments]: Remove unnecessary fix.
---
 gnu/packages/emacs.scm | 22 ++++++++++------------
 1 file changed, 10 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index c0d6635de..0e1a525ab 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8825,16 +8825,16 @@ object has been freed.")
 (define-public emacs-emacsql
   (package
     (name "emacs-emacsql")
-    (version "2.0.3")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/skeeto/emacsql/archive/"
-                           version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32
-         "04hfjdgl1zc7jysgjc7d7d3xqpr7q1q9gsmzffjd91ii3hpqjgx6"))))
+    (version "3.0.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/skeeto/emacsql.git")
+                    (commit (string-append version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1c84gxr1majqj4b59wgdy3lzm3ap66w9qsrnkx8hdbk9895ak81g"))))
     (build-system emacs-build-system)
     (arguments
      `(#:modules ((guix build emacs-build-system)
@@ -8869,8 +8869,6 @@ object has been freed.")
              (let ((file "emacsql-sqlite.el"))
                (chmod file #o644)
                (emacs-substitute-sexps file
-                 ;; Avoid interactive prompts.
-                 ("(defvar emacsql-sqlite-user-prompted" 't)
                  ;; Make sure Emacs looks for ‘GCC’ binary in the right place.
                  ("(executable-find" (which "gcc"))
                  ;; Make sure Emacs looks for ‘emacsql-sqlite’ binary
-- 
2.20.1

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

* [bug#33909] [PATCH 3/7] gnu: Add emacs-treepy.
  2018-12-29 15:02 [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge Jelle Licht
  2018-12-29 15:02 ` [bug#33906] [PATCH 1/7] gnu: emacs-closql: Update to 1.0.0 Jelle Licht
  2018-12-29 15:02 ` [bug#33908] [PATCH 2/7] gnu: emacs-emacsql: Update to 3.0.0 Jelle Licht
@ 2018-12-29 15:02 ` Jelle Licht
  2019-01-09 15:43   ` Ludovic Courtès
  2018-12-29 15:02 ` [bug#33903] [PATCH 4/7] gnu: Add emacs-graphql Jelle Licht
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Jelle Licht @ 2018-12-29 15:02 UTC (permalink / raw)
  To: 33909

* gnu/packages/emacs.scm (emacs-treepy): New variable.
---
 gnu/packages/emacs.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 0e1a525ab..2e441d41a 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -627,6 +627,28 @@ these arguments.  The prototypical use is for the command to call an external
 process, passing on the arguments as command line arguments.")
     (license license:gpl3+)))
 
+(define-public emacs-treepy
+  (package
+    (name "emacs-treepy")
+    (version "0.1.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/volrath/treepy.el.git")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "04zwm6gx9pxfvgfkizx6pvb1ql8pqxjyzqp8flz0432x0gq5nlxk"))))
+    (build-system emacs-build-system)
+    (home-page
+     "https://github.com/volrath/treepy.el")
+    (synopsis "Tree traversal tools")
+    (description
+     "Generic tools for recursive and iterative tree traversal based on
+clojure.walk and clojure.zip respectively.")
+    (license license:gpl3+)))
+
 (define-public emacs-ghub
   (package
     (name "emacs-ghub")
-- 
2.20.1

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

* [bug#33903] [PATCH 4/7] gnu: Add emacs-graphql.
  2018-12-29 15:02 [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge Jelle Licht
                   ` (2 preceding siblings ...)
  2018-12-29 15:02 ` [bug#33909] [PATCH 3/7] gnu: Add emacs-treepy Jelle Licht
@ 2018-12-29 15:02 ` Jelle Licht
  2019-01-09 15:45   ` Ludovic Courtès
  2018-12-29 15:02 ` [bug#33910] [PATCH 5/7] gnu: emacs-with-editor: Update to 2.8.0 Jelle Licht
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Jelle Licht @ 2018-12-29 15:02 UTC (permalink / raw)
  To: 33903

* gnu/packages/emacs.scm (emacs-graphql): New variable.
---
 gnu/packages/emacs.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 2e441d41a..7181d05a3 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -649,6 +649,34 @@ process, passing on the arguments as command line arguments.")
 clojure.walk and clojure.zip respectively.")
     (license license:gpl3+)))
 
+(define-public emacs-graphql
+  (package
+   (name "emacs-graphql")
+   (version "0.1.1")
+   (source (origin
+             (modules '((guix build utils)))
+             ;; Remove examples file with references to external packages as
+             ;; they do not exist at compilation time.
+             (snippet
+              '(begin (delete-file "examples.el")
+                 #t))
+             (method git-fetch)
+             (uri (git-reference
+                   (url "https://github.com/vermiculus/graphql.el.git")
+                   (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0sp0skc1rnhi39szfbq1i99pdgd3bhn4c15cff05iqhjy2d4hniw"))))
+   (build-system emacs-build-system)
+   (home-page
+    "https://github.com/vermiculus/graphql.el")
+   (synopsis "GraphQL utilities")
+   (description
+    "GraphQL.el provides a generally-applicable domain-specific language for
+creating and executing GraphQL queries against your favorite web services.")
+   (license license:gpl3+)))
+
 (define-public emacs-ghub
   (package
     (name "emacs-ghub")
-- 
2.20.1

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

* [bug#33910] [PATCH 5/7] gnu: emacs-with-editor: Update to 2.8.0.
  2018-12-29 15:02 [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge Jelle Licht
                   ` (3 preceding siblings ...)
  2018-12-29 15:02 ` [bug#33903] [PATCH 4/7] gnu: Add emacs-graphql Jelle Licht
@ 2018-12-29 15:02 ` Jelle Licht
  2019-01-09 15:45   ` Ludovic Courtès
  2018-12-29 15:03 ` [bug#33905] [PATCH 6/7] gnu: emacs-magit-popup: Update to 2.12.5 Jelle Licht
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Jelle Licht @ 2018-12-29 15:02 UTC (permalink / raw)
  To: 33910

* gnu/packages/emacs.scm (emacs-with-editor): Update to 2.8.0.
[source]: Use 'git-fetch'.
---
 gnu/packages/emacs.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 7181d05a3..335d315d3 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -433,16 +433,16 @@ configuration files, such as .gitattributes, .gitignore, and .git/config.")
 (define-public emacs-with-editor
   (package
     (name "emacs-with-editor")
-    (version "2.7.3")
+    (version "2.8.0")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/magit/with-editor/archive/v"
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/magit/with-editor.git")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1ln2s0kckzkv50qmr6x1kb2j30cfjii0vs6lpghg7ff4lav8jqgh"))))
+                "1bbzvxnjpxqyvi808isld025b3pcidn4r2xf8hnk9bmzcfdvdr6q"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-dash" ,emacs-dash)))
-- 
2.20.1

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

* [bug#33905] [PATCH 6/7] gnu: emacs-magit-popup: Update to 2.12.5.
  2018-12-29 15:02 [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge Jelle Licht
                   ` (4 preceding siblings ...)
  2018-12-29 15:02 ` [bug#33910] [PATCH 5/7] gnu: emacs-with-editor: Update to 2.8.0 Jelle Licht
@ 2018-12-29 15:03 ` Jelle Licht
  2019-01-09 15:45   ` Ludovic Courtès
  2018-12-29 15:03 ` [bug#33904] [PATCH 7/7] gnu: emacs-ghub: Update to 3.2.0 Jelle Licht
  2019-01-09 15:43 ` [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge Ludovic Courtès
  7 siblings, 1 reply; 16+ messages in thread
From: Jelle Licht @ 2018-12-29 15:03 UTC (permalink / raw)
  To: 33905

* gnu/packages/emacs.scm (emacs-magit-popup): Update to 2.12.5.
---
 gnu/packages/emacs.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 335d315d3..8639208ba 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -597,7 +597,7 @@ support for Git-SVN.")
 (define-public emacs-magit-popup
   (package
     (name "emacs-magit-popup")
-    (version "2.12.4")
+    (version "2.12.5")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -606,7 +606,7 @@ support for Git-SVN.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "08952nzn0cb6gxscqyiljk4fq2zxjvr3ism0lvgw0gs9hl5phiwx"))))
+                "13riknyqr6vxqll80sfhvz165flvdz367rbd0pr5slb01bnfsi2i"))))
     (build-system emacs-build-system)
     (arguments
      `(#:phases
-- 
2.20.1

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

* [bug#33904] [PATCH 7/7] gnu: emacs-ghub: Update to 3.2.0.
  2018-12-29 15:02 [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge Jelle Licht
                   ` (5 preceding siblings ...)
  2018-12-29 15:03 ` [bug#33905] [PATCH 6/7] gnu: emacs-magit-popup: Update to 2.12.5 Jelle Licht
@ 2018-12-29 15:03 ` Jelle Licht
  2019-01-09 15:45   ` Ludovic Courtès
  2019-01-09 15:43 ` [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge Ludovic Courtès
  7 siblings, 1 reply; 16+ messages in thread
From: Jelle Licht @ 2018-12-29 15:03 UTC (permalink / raw)
  To: 33904

* gnu/packages/emacs.scm (emacs-ghub): Update to 3.2.0.
[source]: Use 'git-fetch'.
[propagated-inputs]: Add emacs-dash, emacs-graphql,
emacs-let-alist, emacs-treepy.
---
 gnu/packages/emacs.scm | 19 ++++++++++++-------
 1 file changed, 12 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 8639208ba..409fe2c60 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -680,16 +680,16 @@ creating and executing GraphQL queries against your favorite web services.")
 (define-public emacs-ghub
   (package
     (name "emacs-ghub")
-    (version "2.0.1")
+    (version "3.2.0")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/magit/ghub/archive/v"
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/magit/ghub.git")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "0d0qj5r1bm2aidi61rigrdaycxnyb7y1ivb3h8rpvvapsf8sk7z0"))))
+                "0lp52qygyavddl1lrgsyb6mq7hcf9h89dy2pzya3mb2va49f0vvl"))))
     (build-system emacs-build-system)
     (arguments
      `(#:phases
@@ -697,6 +697,11 @@ creating and executing GraphQL queries against your favorite web services.")
          (add-before 'install 'make-info
            (lambda _
              (invoke "make" "info"))))))
+    (propagated-inputs
+     `(("emacs-dash" ,emacs-dash)
+       ("emacs-graphql" ,emacs-graphql)
+       ("emacs-let-alist" ,emacs-let-alist)
+       ("emacs-treepy" ,emacs-treepy)))
     (native-inputs
      `(("texinfo" ,texinfo)))
     (home-page "https://github.com/magit/ghub")
-- 
2.20.1

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

* [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge
  2018-12-29 15:02 [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge Jelle Licht
                   ` (6 preceding siblings ...)
  2018-12-29 15:03 ` [bug#33904] [PATCH 7/7] gnu: emacs-ghub: Update to 3.2.0 Jelle Licht
@ 2019-01-09 15:43 ` Ludovic Courtès
  7 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2019-01-09 15:43 UTC (permalink / raw)
  To: Jelle Licht; +Cc: 33907

Hi Jelle,

Jelle Licht <jlicht@fsfe.org> skribis:

> Jonas Bernoulli from magit fame has recently released forge, an emacs
> package that facilitates interaction with so-called forges. This patch
> series packages and updates some of the required dependencies of
> forge, so it will be easy to add forge once a stable version is
> released.

Sounds cool!

Note that for patch series we usually arrange to open only one issue for
the whole series.  To do that you need to send the cover letter first;
you then get a reply with a bug number, to which you can send the
patches.

Ludo’.

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

* [bug#33906] [PATCH 1/7] gnu: emacs-closql: Update to 1.0.0.
  2018-12-29 15:02 ` [bug#33906] [PATCH 1/7] gnu: emacs-closql: Update to 1.0.0 Jelle Licht
@ 2019-01-09 15:43   ` Ludovic Courtès
  0 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2019-01-09 15:43 UTC (permalink / raw)
  To: Jelle Licht; +Cc: 33906

Jelle Licht <jlicht@fsfe.org> skribis:

> * gnu/packages/emacs.scm (emacs-closql): Update to 1.0.0.
> [source]: Use 'git-fetch'.

LGTM!

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

* [bug#33908] [PATCH 2/7] gnu: emacs-emacsql: Update to 3.0.0.
  2018-12-29 15:02 ` [bug#33908] [PATCH 2/7] gnu: emacs-emacsql: Update to 3.0.0 Jelle Licht
@ 2019-01-09 15:43   ` Ludovic Courtès
  0 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2019-01-09 15:43 UTC (permalink / raw)
  To: Jelle Licht; +Cc: 33908

Jelle Licht <jlicht@fsfe.org> skribis:

> * gnu/packages/emacs.scm (emacs-emacsql): Update to 3.0.0.
> [source]: Use 'git-fetch'.
> [arguments]: Remove unnecessary fix.

LGTM!

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

* [bug#33909] [PATCH 3/7] gnu: Add emacs-treepy.
  2018-12-29 15:02 ` [bug#33909] [PATCH 3/7] gnu: Add emacs-treepy Jelle Licht
@ 2019-01-09 15:43   ` Ludovic Courtès
  0 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2019-01-09 15:43 UTC (permalink / raw)
  To: Jelle Licht; +Cc: 33909

Jelle Licht <jlicht@fsfe.org> skribis:

> * gnu/packages/emacs.scm (emacs-treepy): New variable.

LGTM!

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

* [bug#33903] [PATCH 4/7] gnu: Add emacs-graphql.
  2018-12-29 15:02 ` [bug#33903] [PATCH 4/7] gnu: Add emacs-graphql Jelle Licht
@ 2019-01-09 15:45   ` Ludovic Courtès
  0 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2019-01-09 15:45 UTC (permalink / raw)
  To: Jelle Licht; +Cc: 33903

Jelle Licht <jlicht@fsfe.org> skribis:

> * gnu/packages/emacs.scm (emacs-graphql): New variable.

LGTM!

> +   (home-page
> +    "https://github.com/vermiculus/graphql.el")
> +   (synopsis "GraphQL utilities")
> +   (description
> +    "GraphQL.el provides a generally-applicable domain-specific language for
> +creating and executing GraphQL queries against your favorite web services.")

Bonus points if you add a few words that give a hint about what GraphQL
is.  :-)

Ludo’.

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

* [bug#33910] [PATCH 5/7] gnu: emacs-with-editor: Update to 2.8.0.
  2018-12-29 15:02 ` [bug#33910] [PATCH 5/7] gnu: emacs-with-editor: Update to 2.8.0 Jelle Licht
@ 2019-01-09 15:45   ` Ludovic Courtès
  0 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2019-01-09 15:45 UTC (permalink / raw)
  To: Jelle Licht; +Cc: 33910

Jelle Licht <jlicht@fsfe.org> skribis:

> * gnu/packages/emacs.scm (emacs-with-editor): Update to 2.8.0.
> [source]: Use 'git-fetch'.

OK!

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

* [bug#33905] [PATCH 6/7] gnu: emacs-magit-popup: Update to 2.12.5.
  2018-12-29 15:03 ` [bug#33905] [PATCH 6/7] gnu: emacs-magit-popup: Update to 2.12.5 Jelle Licht
@ 2019-01-09 15:45   ` Ludovic Courtès
  0 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2019-01-09 15:45 UTC (permalink / raw)
  To: Jelle Licht; +Cc: 33905

Jelle Licht <jlicht@fsfe.org> skribis:

> * gnu/packages/emacs.scm (emacs-magit-popup): Update to 2.12.5.

LGTM!

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

* [bug#33904] [PATCH 7/7] gnu: emacs-ghub: Update to 3.2.0.
  2018-12-29 15:03 ` [bug#33904] [PATCH 7/7] gnu: emacs-ghub: Update to 3.2.0 Jelle Licht
@ 2019-01-09 15:45   ` Ludovic Courtès
  0 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2019-01-09 15:45 UTC (permalink / raw)
  To: Jelle Licht; +Cc: 33904

Jelle Licht <jlicht@fsfe.org> skribis:

> * gnu/packages/emacs.scm (emacs-ghub): Update to 3.2.0.
> [source]: Use 'git-fetch'.
> [propagated-inputs]: Add emacs-dash, emacs-graphql,
> emacs-let-alist, emacs-treepy.

LGTM, thanks!

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

end of thread, other threads:[~2019-01-09 15:46 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-29 15:02 [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge Jelle Licht
2018-12-29 15:02 ` [bug#33906] [PATCH 1/7] gnu: emacs-closql: Update to 1.0.0 Jelle Licht
2019-01-09 15:43   ` Ludovic Courtès
2018-12-29 15:02 ` [bug#33908] [PATCH 2/7] gnu: emacs-emacsql: Update to 3.0.0 Jelle Licht
2019-01-09 15:43   ` Ludovic Courtès
2018-12-29 15:02 ` [bug#33909] [PATCH 3/7] gnu: Add emacs-treepy Jelle Licht
2019-01-09 15:43   ` Ludovic Courtès
2018-12-29 15:02 ` [bug#33903] [PATCH 4/7] gnu: Add emacs-graphql Jelle Licht
2019-01-09 15:45   ` Ludovic Courtès
2018-12-29 15:02 ` [bug#33910] [PATCH 5/7] gnu: emacs-with-editor: Update to 2.8.0 Jelle Licht
2019-01-09 15:45   ` Ludovic Courtès
2018-12-29 15:03 ` [bug#33905] [PATCH 6/7] gnu: emacs-magit-popup: Update to 2.12.5 Jelle Licht
2019-01-09 15:45   ` Ludovic Courtès
2018-12-29 15:03 ` [bug#33904] [PATCH 7/7] gnu: emacs-ghub: Update to 3.2.0 Jelle Licht
2019-01-09 15:45   ` Ludovic Courtès
2019-01-09 15:43 ` [bug#33907] [PATCH 0/7] Prepare for release of emacs-forge Ludovic Courtès

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).