unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#60277] [PATCH] gnu: lite-xl: Update to 2.1.0.
       [not found] <2ec4ac48b951f419f1feb638ed86fd6688056f2a.1671808087.git.poomklao.ref@yahoo.com>
@ 2022-12-23 15:08 ` Parnikkapore via Guix-patches via
  2023-01-08  9:28   ` [bug#60277] [PATCH v2] gnu: lite-xl: Update to 2.2.0 Parnikkapore via Guix-patches via
  2023-01-10 15:33   ` [bug#60277] [PATCH v3] gnu: lite-xl: Update to 2.1.1 Parnikkapore via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: Parnikkapore via Guix-patches via @ 2022-12-23 15:08 UTC (permalink / raw)
  To: 60277; +Cc: Parnikkapore

    * gnu/packages/text-editors.scm (lite-xl): Update to 2.1.0.
      Lua input is updated because the new version would not build
      with Lua 5.2 .
---
 gnu/packages/text-editors.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 854a424b8a..6adf7122bd 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -1359,7 +1359,7 @@ (define-public mle
 (define-public lite-xl
   (package
     (name "lite-xl")
-    (version "2.0.5")
+    (version "2.1.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -1368,15 +1368,15 @@ (define-public lite-xl
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0l2i9mvbkc4kqkwk2p17zd1rlm5v41acdyp2xivi53p2hkj4x6pf"))
+                "08s6hsi57nnmcs22fk6nj7pjwjsh0cnjlyz919w8sjds51v0ax7n"))
               (modules '((guix build utils)))
               (snippet '(substitute* "meson.build"
-                          (("dependency\\('lua5\\.2',")
-                           "dependency('lua-5.2',")))))
+                          (("dependency\\('lua5\\.4',")
+                           "dependency('lua-5.4',")))))
     (build-system meson-build-system)
     (inputs (list agg
                   freetype
-                  lua-5.2
+                  lua-5.4
                   pcre2
                   reproc
                   sdl2))

base-commit: dd8a20355e6e2bc349b7af00f309629fb054ed09
-- 
2.34.1





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

* [bug#60277] [PATCH v2] gnu: lite-xl: Update to 2.2.0.
  2022-12-23 15:08 ` [bug#60277] [PATCH] gnu: lite-xl: Update to 2.1.0 Parnikkapore via Guix-patches via
@ 2023-01-08  9:28   ` Parnikkapore via Guix-patches via
  2023-01-10 15:33   ` [bug#60277] [PATCH v3] gnu: lite-xl: Update to 2.1.1 Parnikkapore via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: Parnikkapore via Guix-patches via @ 2023-01-08  9:28 UTC (permalink / raw)
  To: 60277

    * gnu/packages/text-editors.scm (lite-xl): Update to 2.2.0.
      Lua input is updated because the new version would not build
      with Lua 5.2 .
---

Upstream released a new version so here's an updated patch to match!

 gnu/packages/text-editors.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 0094959cbb..0c1776326f 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -1359,7 +1359,7 @@ (define-public mle
 (define-public lite-xl
   (package
     (name "lite-xl")
-    (version "2.0.5")
+    (version "2.1.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -1368,15 +1368,15 @@ (define-public lite-xl
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0l2i9mvbkc4kqkwk2p17zd1rlm5v41acdyp2xivi53p2hkj4x6pf"))
+                "08s6hsi57nnmcs22fk6nj7pjwjsh0cnjlyz919w8sjds51v0ax7n"))
               (modules '((guix build utils)))
               (snippet '(substitute* "meson.build"
-                          (("dependency\\('lua5\\.2',")
-                           "dependency('lua-5.2',")))))
+                          (("dependency\\('lua5\\.4',")
+                           "dependency('lua-5.4',")))))
     (build-system meson-build-system)
     (inputs (list agg
                   freetype
-                  lua-5.2
+                  lua-5.4
                   pcre2
                   reproc
                   sdl2))

base-commit: db3fdbbdfee9d412053cc9538ad76abee7c2cb89
-- 
2.38.1





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

* [bug#60277] [PATCH v3] gnu: lite-xl: Update to 2.1.1
  2022-12-23 15:08 ` [bug#60277] [PATCH] gnu: lite-xl: Update to 2.1.0 Parnikkapore via Guix-patches via
  2023-01-08  9:28   ` [bug#60277] [PATCH v2] gnu: lite-xl: Update to 2.2.0 Parnikkapore via Guix-patches via
@ 2023-01-10 15:33   ` Parnikkapore via Guix-patches via
  2023-01-30  2:59     ` bug#60277: [PATCH] gnu: lite-xl: Update to 2.1.0 宋文武 via Guix-patches via
  1 sibling, 1 reply; 4+ messages in thread
From: Parnikkapore via Guix-patches via @ 2023-01-10 15:33 UTC (permalink / raw)
  To: 60277

    * gnu/packages/text-editors.scm (lite-xl): Update to 2.1.1
      Lua input is updated because the new version would not build
      with Lua 5.2 .
---

And here's the *actual* updated version. Sorry about that! (forgot
to stage my changes before amending lol)

 gnu/packages/text-editors.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 0094959cbb..d96abd7e5b 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -1359,7 +1359,7 @@ (define-public mle
 (define-public lite-xl
   (package
     (name "lite-xl")
-    (version "2.0.5")
+    (version "2.1.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -1368,15 +1368,15 @@ (define-public lite-xl
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0l2i9mvbkc4kqkwk2p17zd1rlm5v41acdyp2xivi53p2hkj4x6pf"))
+                "1pnmax68hvk1ry4bjsxwq4qimfn55pai8jlljw6jiqzcmh4mp7xm"))
               (modules '((guix build utils)))
               (snippet '(substitute* "meson.build"
-                          (("dependency\\('lua5\\.2',")
-                           "dependency('lua-5.2',")))))
+                          (("dependency\\('lua5\\.4',")
+                           "dependency('lua-5.4',")))))
     (build-system meson-build-system)
     (inputs (list agg
                   freetype
-                  lua-5.2
+                  lua-5.4
                   pcre2
                   reproc
                   sdl2))

base-commit: db3fdbbdfee9d412053cc9538ad76abee7c2cb89
-- 
2.38.1





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

* bug#60277: [PATCH] gnu: lite-xl: Update to 2.1.0.
  2023-01-10 15:33   ` [bug#60277] [PATCH v3] gnu: lite-xl: Update to 2.1.1 Parnikkapore via Guix-patches via
@ 2023-01-30  2:59     ` 宋文武 via Guix-patches via
  0 siblings, 0 replies; 4+ messages in thread
From: 宋文武 via Guix-patches via @ 2023-01-30  2:59 UTC (permalink / raw)
  To: Parnikkapore; +Cc: 60277-done

Parnikkapore <poomklao@yahoo.com> writes:

>     * gnu/packages/text-editors.scm (lite-xl): Update to 2.1.1
>       Lua input is updated because the new version would not build
>       with Lua 5.2 .

Pushed, thank you!




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

end of thread, other threads:[~2023-01-30  3:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <2ec4ac48b951f419f1feb638ed86fd6688056f2a.1671808087.git.poomklao.ref@yahoo.com>
2022-12-23 15:08 ` [bug#60277] [PATCH] gnu: lite-xl: Update to 2.1.0 Parnikkapore via Guix-patches via
2023-01-08  9:28   ` [bug#60277] [PATCH v2] gnu: lite-xl: Update to 2.2.0 Parnikkapore via Guix-patches via
2023-01-10 15:33   ` [bug#60277] [PATCH v3] gnu: lite-xl: Update to 2.1.1 Parnikkapore via Guix-patches via
2023-01-30  2:59     ` bug#60277: [PATCH] gnu: lite-xl: Update to 2.1.0 宋文武 via Guix-patches via

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