lilyp pushed a commit to branch gnome-team
in repository guix.
commit dc9cad67bb71113e413a95abe65d5e94ab7c06bc
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Sat Oct 19 17:40:51 2024 +0200
gnu: python-pygobject: Update to 3.50.0.
* gnu/packages/glib.scm (python-pygobject): Update to 3.50.0.
(python-pygobject-3.48): Delete variable.
* gnu/packages/gstreamer.scm (python-gst): Adjust accordingly.
---
gnu/packages/glib.scm | 18 ++----------------
gnu/packages/gstreamer.scm | 2 +-
2 files changed, 3 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index 15b0c03de6..1a8ecdad35 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -1056,7 +1056,7 @@ useful for C++.")
(define-public python-pygobject
(package
(name "python-pygobject")
- (version "3.47.0")
+ (version "3.50.0")
(source
(origin
(method url-fetch)
@@ -1065,7 +1065,7 @@ useful for C++.")
"/pygobject-" version ".tar.xz"))
(sha256
(base32
- "082dpm34a350bnhgmkdv8myxzjgnrflckkpn46vnvs36f7bbfdij"))
+ "04i28xrb9fxkmn9j2mmsl0lbmk9blgjcl8hnxrbx90d8nmsnx0wd"))
(modules '((guix build utils)))
(snippet
;; We disable these tests in a snippet so that they are inherited
@@ -1105,20 +1105,6 @@ useful for C++.")
'((upstream-name . "pygobject")))
(license license:lgpl2.1+)))
-(define-public python-pygobject-3.48
- (package
- (inherit python-pygobject)
- (version "3.48.2")
- (source
- (origin
- (inherit (package-source python-pygobject))
- (uri (string-append "mirror://gnome/sources/pygobject/"
- (version-major+minor version)
- "/pygobject-" version ".tar.xz"))
- (sha256
- (base32
- "19yii8lydnjw225k4gclhn8hya7caiginqi0mj9a0cdym6sax507"))))))
-
(define-public perl-glib
(package
(name "perl-glib")
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index feb2505b5f..e638e1c230 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -1130,7 +1130,7 @@ binary, but none of the actual plugins.")))
(native-inputs
(list pkg-config python))
(propagated-inputs
- (list gst-plugins-base python-pygobject-3.48))
+ (list gst-plugins-base python-pygobject))
(home-page "https://gstreamer.freedesktop.org/")
(synopsis "GStreamer GObject Introspection overrides for Python")
(description