all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#54805] [PATCH 1/5] gnu: libadwaita: Update to 1.1.0.
@ 2022-04-09  0:53 Alexandros Theodotou
  2022-04-09  0:53 ` [bug#54806] [PATCH 2/5] gnu: Add gtksourceview-5 Alexandros Theodotou
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Alexandros Theodotou @ 2022-04-09  0:53 UTC (permalink / raw)
  To: 54805; +Cc: Alexandros Theodotou

* gnu/packages/gnome.scm (libadwaita): Update to 1.1.0.
---
 gnu/packages/gnome.scm | 73 +++++++++++++++++++++---------------------
 1 file changed, 36 insertions(+), 37 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 19adb67423..ee59a90d91 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -70,6 +70,7 @@
 ;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
 ;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
 ;;; Copyright © 2022 Leo Nikkilä <hello@lnikki.la>
+;;; Copyright © 2022 Alexandros Theodotou <alex@zrythm.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -12684,45 +12685,43 @@ (define-public ocrfeeder
     (license license:gpl3+)))
 
 (define-public libadwaita
-  (let ((commit "8d66b987a19979d9d7b85dacc6bad5ce0c8743fe")
-        (revision "1"))
-    (package
-      (name "libadwaita")
-      (version (git-version "0.0.1" revision commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://gitlab.gnome.org/GNOME/libadwaita.git")
-                      (commit commit)))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "0i3wav6jsyi4w4i2r1rad769m5y5s9djj4zqb7dfyh0bad24ba3q"))))
-      (build-system meson-build-system)
-      (arguments
-       `(#:phases
-         (modify-phases %standard-phases
-           (add-before 'check 'pre-check
-             (lambda* (#:key inputs #:allow-other-keys)
-               ;; Tests require a running X server.
-               (system "Xvfb :1 &")
-               (setenv "DISPLAY" ":1"))))))
-      (native-inputs
-       `(("sassc" ,sassc)
-         ("glib:bin" ,glib "bin")
-         ("gtk-doc" ,gtk-doc/stable)
-         ("pkg-config" ,pkg-config)
-         ("vala" ,vala)
-         ("xvfb" ,xorg-server-for-tests)))
-      (inputs
-       (list gtk gobject-introspection libportal))
-      (home-page "https://gnome.pages.gitlab.gnome.org/libadwaita/")
-      (synopsis "Building blocks for GNOME applications")
-      (description
-       "@code{libadwaita} offers widgets and objects to build GNOME
+  (package
+    (name "libadwaita")
+    (version "1.1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnome/sources/libadwaita/"
+                                  (version-major+minor version) "/"
+                                  "libadwaita-" version ".tar.xz"))
+              (sha256
+               (base32
+                "03h14mrm453bn03f48rmpf85pvg5cnzzab27cs1c43417s09ixdg"))))
+    (build-system meson-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'pre-check
+           (lambda* (#:key inputs #:allow-other-keys)
+             ;; Tests require a running X server.
+             (system "Xvfb :1 &")
+             (setenv "DISPLAY" ":1"))))))
+    (native-inputs
+     `(("sassc" ,sassc)
+       ("glib:bin" ,glib "bin")
+       ("gtk-doc" ,gtk-doc/stable)
+       ("pkg-config" ,pkg-config)
+       ("vala" ,vala)
+       ("xvfb" ,xorg-server-for-tests)
+       ("gettext" ,gettext-minimal)))
+    (inputs
+     (list gtk gobject-introspection libportal))
+    (home-page "https://gnome.pages.gitlab.gnome.org/libadwaita/")
+    (synopsis "Building blocks for GNOME applications")
+    (description
+     "@code{libadwaita} offers widgets and objects to build GNOME
 applications scaling from desktop workstations to mobile phones.  It is the
 successor of @code{libhandy} for GTK4.")
-      (license license:lgpl2.1+))))
+    (license license:lgpl2.1+)))
 
 (define-public gnome-power-manager
   (package
-- 
2.35.1





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

* [bug#54806] [PATCH 2/5] gnu: Add gtksourceview-5.
  2022-04-09  0:53 [bug#54805] [PATCH 1/5] gnu: libadwaita: Update to 1.1.0 Alexandros Theodotou
@ 2022-04-09  0:53 ` Alexandros Theodotou
  2022-04-09  0:53 ` [bug#54807] [PATCH 3/5] gnu: libaudec: Update to 0.3.4 Alexandros Theodotou
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Alexandros Theodotou @ 2022-04-09  0:53 UTC (permalink / raw)
  To: 54806; +Cc: Alexandros Theodotou

* gnu/packages/gtk.scm (gtksourceview-5): New variable.
---
 gnu/packages/gtk.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 96297535ce..e8131bb955 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -30,6 +30,7 @@
 ;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
 ;;; Copyright © 2021 Wamm K. D. <jaft.r@outlook.com>
 ;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
+;;; Copyright © 2022 Alexandros Theodotou <alex@zrythm.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -90,6 +91,7 @@ (define-module (gnu packages gtk)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages m4)
   #:use-module (gnu packages man)
+  #:use-module (gnu packages pcre)
   #:use-module (gnu packages pdf)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages perl-check)
@@ -618,6 +620,44 @@ (define-public gtksourceview
 highlighting and other features typical of a source code editor.")
    (license license:lgpl2.1+)))
 
+(define-public gtksourceview-5
+ (package (inherit gtksourceview)
+   (name "gtksourceview")
+   (version "5.4.0")
+   (source (origin
+             (method url-fetch)
+             (uri (string-append "mirror://gnome/sources/" name "/"
+                                 (version-major+minor version) "/"
+                                 name "-" version ".tar.xz"))
+             (sha256
+              (base32
+               "0dz6hifma60plbfqm4vlh1mps2z7f15rkkmflf5fra3hwqbw4fq0"))))
+   (build-system meson-build-system)
+   (arguments
+    '(#:phases
+      (modify-phases %standard-phases
+        (add-after 'unpack 'skip-gtk-update-icon-cache
+          (lambda _
+            (substitute* "meson.build"
+              (("gtk_update_icon_cache: true")
+               "gtk_update_icon_cache: false"))))
+        (add-before
+         'check 'pre-check
+         (lambda* (#:key inputs #:allow-other-keys)
+           (let ((xorg-server (assoc-ref inputs "xorg-server")))
+             ;; Tests require a running X server.
+             (system (format #f "~a/bin/Xvfb :1 &" xorg-server))
+             (setenv "DISPLAY" ":1")
+             ;; For the missing /etc/machine-id.
+             (setenv "DBUS_FATAL_WARNINGS" "0")
+             #t))))
+      #:configure-flags
+      ;; Needs newer gobject-introspection
+      '("-Dintrospection=disabled")))
+   (propagated-inputs
+    ;; gtksourceview-3.0.pc refers to all these.
+    (list glib gtk libxml2 pcre2))))
+
 (define-public gtksourceview-3
  (package (inherit gtksourceview)
    (name "gtksourceview")
-- 
2.35.1





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

* [bug#54807] [PATCH 3/5] gnu: libaudec: Update to 0.3.4.
  2022-04-09  0:53 [bug#54805] [PATCH 1/5] gnu: libadwaita: Update to 1.1.0 Alexandros Theodotou
  2022-04-09  0:53 ` [bug#54806] [PATCH 2/5] gnu: Add gtksourceview-5 Alexandros Theodotou
@ 2022-04-09  0:53 ` Alexandros Theodotou
  2022-04-09  0:53 ` [bug#54808] [PATCH 4/5] gnu: libcyaml: Update to 1.3.1 Alexandros Theodotou
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Alexandros Theodotou @ 2022-04-09  0:53 UTC (permalink / raw)
  To: 54807; +Cc: Alexandros Theodotou

* gnu/packages/audio.scm (libaudec): Update to 0.3.4.
---
 gnu/packages/audio.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 13e0f02837..17eaba855d 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -23,7 +23,7 @@
 ;;; Copyright © 2019 Rutger Helling <rhelling@mykolab.com>
 ;;; Copyright © 2019, 2021 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
-;;; Copyright © 2019, 2020 Alexandros Theodotou <alex@zrythm.org>
+;;; Copyright © 2019, 2020, 2022 Alexandros Theodotou <alex@zrythm.org>
 ;;; Copyright © 2019 Christine Lemmer-Webber <cwebber@dustycloud.org>
 ;;; Copyright © 2019 Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
 ;;; Copyright © 2019 Hartmt Goebel <h.goebel@crazy-compilers.com>
@@ -5046,17 +5046,17 @@ (define-public ecasound
 (define-public libaudec
   (package
     (name "libaudec")
-    (version "0.2.4")
+    (version "0.3.4")
     (source
       (origin
         (method git-fetch)
         (uri (git-reference
-               (url "https://git.zrythm.org/zrythm/libaudec")
+               (url "https://git.sr.ht/~alextee/libaudec")
                (commit (string-append "v" version))))
         (file-name (git-file-name name version))
         (sha256
           (base32
-            "1570m2dfia17dbkhd2qhx8jjihrpm7g8nnyg6n4wif4vv229s7dz"))))
+            "02hhhpcfkycicygh6g9hzps255zkbbi33vks6yv6zk5wp9p2nspj"))))
    (build-system meson-build-system)
    (arguments
     `(#:configure-flags
-- 
2.35.1





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

* [bug#54808] [PATCH 4/5] gnu: libcyaml: Update to 1.3.1.
  2022-04-09  0:53 [bug#54805] [PATCH 1/5] gnu: libadwaita: Update to 1.1.0 Alexandros Theodotou
  2022-04-09  0:53 ` [bug#54806] [PATCH 2/5] gnu: Add gtksourceview-5 Alexandros Theodotou
  2022-04-09  0:53 ` [bug#54807] [PATCH 3/5] gnu: libaudec: Update to 0.3.4 Alexandros Theodotou
@ 2022-04-09  0:53 ` Alexandros Theodotou
  2022-04-09  0:53 ` [bug#54809] [PATCH 5/5] gnu: rtmidi: Update to 5.0.0 Alexandros Theodotou
  2022-06-14 22:05 ` bug#54805: bug#54809: [PATCH 5/5] gnu: rtmidi: Update to 5.0.0 Ludovic Courtès
  4 siblings, 0 replies; 7+ messages in thread
From: Alexandros Theodotou @ 2022-04-09  0:53 UTC (permalink / raw)
  To: 54808; +Cc: Alexandros Theodotou

* gnu/packages/serialization.scm (libcyaml): Update to 1.3.1.
---
 gnu/packages/serialization.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 5cf39ac7f4..a9ba212c9d 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -11,7 +11,7 @@
 ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
 ;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
-;;; Copyright © 2020 Alexandros Theodotou <alex@zrythm.org>
+;;; Copyright © 2020, 2022 Alexandros Theodotou <alex@zrythm.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -354,7 +354,7 @@ (define-public libyaml+static
 (define-public libcyaml
   (package
     (name "libcyaml")
-    (version "1.1.0")
+    (version "1.3.1")
     (source
      (origin
        (method git-fetch)
@@ -364,7 +364,7 @@ (define-public libcyaml
        (file-name (git-file-name name version))
        (patches (search-patches "libcyaml-libyaml-compat.patch"))
        (sha256
-        (base32 "0428p0rwq71nhh5nzcbapsbrjxa0x5l6h6ns32nxv7j624f0zd93"))))
+        (base32 "0gvf3h8r8300wdwfjgxw3nzlj7w14q63m67p8wdm5fvpha017n4y"))))
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags
-- 
2.35.1





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

* [bug#54809] [PATCH 5/5] gnu: rtmidi: Update to 5.0.0.
  2022-04-09  0:53 [bug#54805] [PATCH 1/5] gnu: libadwaita: Update to 1.1.0 Alexandros Theodotou
                   ` (2 preceding siblings ...)
  2022-04-09  0:53 ` [bug#54808] [PATCH 4/5] gnu: libcyaml: Update to 1.3.1 Alexandros Theodotou
@ 2022-04-09  0:53 ` Alexandros Theodotou
       [not found]   ` <handler.54809.B.164946565628153.ack@debbugs.gnu.org>
  2022-06-14 22:05 ` bug#54805: bug#54809: [PATCH 5/5] gnu: rtmidi: Update to 5.0.0 Ludovic Courtès
  4 siblings, 1 reply; 7+ messages in thread
From: Alexandros Theodotou @ 2022-04-09  0:53 UTC (permalink / raw)
  To: 54809; +Cc: Alexandros Theodotou

* gnu/packages/audio.scm (rtmidi): Update to 5.0.0.
---
 gnu/packages/audio.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 17eaba855d..77b855d86c 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -3223,7 +3223,7 @@ (define-public rubberband
 (define-public rtmidi
   (package
     (name "rtmidi")
-    (version "4.0.0")
+    (version "5.0.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://www.music.mcgill.ca/~gary/rtmidi"
@@ -3231,7 +3231,7 @@ (define-public rtmidi
               (file-name (string-append "rtmidi-" version ".tar.gz"))
               (sha256
                (base32
-                "1k962ljpnwyjw9jjiky2372khhri1wqvrj5qsalfpys31xqzw31p"))))
+                "1ff2yfq3k4l209fr71v3w98fpjjv1chs09vkbmxj03lcikahxns8"))))
     (build-system gnu-build-system)
     (inputs
      (list jack-1 alsa-lib))
-- 
2.35.1





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

* [bug#54809] Acknowledgement ([PATCH 5/5] gnu: rtmidi: Update to 5.0.0.)
       [not found]   ` <handler.54809.B.164946565628153.ack@debbugs.gnu.org>
@ 2022-04-29 17:52     ` Alexandros Theodotou
  0 siblings, 0 replies; 7+ messages in thread
From: Alexandros Theodotou @ 2022-04-29 17:52 UTC (permalink / raw)
  To: 54809

Note that libadwaita has had a new release (1.2.0) since my patch.




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

* bug#54805: bug#54809: [PATCH 5/5] gnu: rtmidi: Update to 5.0.0.
  2022-04-09  0:53 [bug#54805] [PATCH 1/5] gnu: libadwaita: Update to 1.1.0 Alexandros Theodotou
                   ` (3 preceding siblings ...)
  2022-04-09  0:53 ` [bug#54809] [PATCH 5/5] gnu: rtmidi: Update to 5.0.0 Alexandros Theodotou
@ 2022-06-14 22:05 ` Ludovic Courtès
  4 siblings, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2022-06-14 22:05 UTC (permalink / raw)
  To: Alexandros Theodotou; +Cc: 54809-done, 54805-done

Hi Alexandros,

Alexandros Theodotou <alex@zrythm.org> skribis:

> * gnu/packages/gnome.scm (libadwaita): Update to 1.1.0.

[...]

> * gnu/packages/audio.scm (rtmidi): Update to 5.0.0.

I finally pushed these two patches (apologies for the delay).  However,
I had to keep version 4.0 and use it for zrythm and milkytracker, which
would otherwise fail to build.

Thanks,
Ludo’.




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

end of thread, other threads:[~2022-06-14 22:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-09  0:53 [bug#54805] [PATCH 1/5] gnu: libadwaita: Update to 1.1.0 Alexandros Theodotou
2022-04-09  0:53 ` [bug#54806] [PATCH 2/5] gnu: Add gtksourceview-5 Alexandros Theodotou
2022-04-09  0:53 ` [bug#54807] [PATCH 3/5] gnu: libaudec: Update to 0.3.4 Alexandros Theodotou
2022-04-09  0:53 ` [bug#54808] [PATCH 4/5] gnu: libcyaml: Update to 1.3.1 Alexandros Theodotou
2022-04-09  0:53 ` [bug#54809] [PATCH 5/5] gnu: rtmidi: Update to 5.0.0 Alexandros Theodotou
     [not found]   ` <handler.54809.B.164946565628153.ack@debbugs.gnu.org>
2022-04-29 17:52     ` [bug#54809] Acknowledgement ([PATCH 5/5] gnu: rtmidi: Update to 5.0.0.) Alexandros Theodotou
2022-06-14 22:05 ` bug#54805: bug#54809: [PATCH 5/5] gnu: rtmidi: Update to 5.0.0 Ludovic Courtès

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.