From: Andrew Tropin via Bug reports for GNU Guix <bug-guix@gnu.org>
To: Remco van 't Veer <remco@remworks.net>,
72042-done@debbugs.gnu.org, Leo Famulari <leo@famulari.name>
Cc: Vivien Kraus <vivien@planete-kraus.eu>,
Remco van 't Veer <remco@remworks.net>,
Maxim Cournoyer <maxim.cournoyer@gmail.com>,
Liliana Marie Prikler <liliana.prikler@gmail.com>
Subject: bug#72042: [PATCH 1/1] gnu: python-gst: Fix build.
Date: Thu, 05 Sep 2024 19:14:23 +0400 [thread overview]
Message-ID: <871q1ygmk0.fsf@trop.in> (raw)
In-Reply-To: <422ad725fbacbb14492434ac9b153d0bb405086d.1725305905.git.remco@remworks.net>
[-- Attachment #1: Type: text/plain, Size: 2715 bytes --]
On 2024-09-02 21:38, Remco van 't Veer wrote:
> * gnu/packages/glib.scm: Add package python-pygobject-3.48.
> * gnu/packages/gstreamer.scm (python-gst) [inputs]:
> Use python-pygobject-3.48 to fix tests.
>
> Change-Id: I3038b85db67ff354a6d77708fa4fd7c63aa6732c
> ---
> gnu/packages/glib.scm | 15 +++++++++++++++
> gnu/packages/gstreamer.scm | 3 ++-
> 2 files changed, 17 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
> index 9827856f32..d6275ea63e 100644
> --- a/gnu/packages/glib.scm
> +++ b/gnu/packages/glib.scm
> @@ -20,6 +20,7 @@
> ;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
> ;;; Copyright © 2023 Saku Laesvuori <saku@laesvuori.fi>
> ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
> +;;; Copyright © 2024 Remco van 't Veer <remco@remworks.net>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -1077,6 +1078,20 @@ (define-public python-pygobject
> '((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 ad08285181..66978fc2bc 100644
> --- a/gnu/packages/gstreamer.scm
> +++ b/gnu/packages/gstreamer.scm
> @@ -11,6 +11,7 @@
> ;;; Copyright © 2020 Liliana Marie Prikler <liliana.prikler@gmail.com>
> ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
> ;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
> +;;; Copyright © 2024 Remco van 't Veer <remco@remworks.net>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -1126,7 +1127,7 @@ (define-public python-gst
> (native-inputs
> (list pkg-config python))
> (propagated-inputs
> - (list gst-plugins-base python-pygobject))
> + (list gst-plugins-base python-pygobject-3.48))
> (home-page "https://gstreamer.freedesktop.org/")
> (synopsis "GStreamer GObject Introspection overrides for Python")
> (description
Thank you! Applied the fix, pushed as
https://git.savannah.gnu.org/cgit/guix.git/commit/?id=7d2ced8d6d
--
Best regards,
Andrew Tropin
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
next prev parent reply other threads:[~2024-09-05 15:25 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-10 19:37 bug#72042: [core-updates] Python-gst fails its test suite Leo Famulari
2024-09-02 15:12 ` Remco van 't Veer
2024-09-02 18:18 ` Leo Famulari
2024-09-02 19:38 ` bug#72042: [PATCH 0/1] introduce python-pygobject-3.48 to fix python-gst build Remco van 't Veer
2024-09-02 19:38 ` bug#72042: [PATCH 1/1] gnu: python-gst: Fix build Remco van 't Veer
2024-09-05 15:14 ` Andrew Tropin via Bug reports for GNU Guix [this message]
2024-09-11 6:05 ` Maxim Cournoyer
2024-09-11 7:29 ` Remco van 't Veer
2024-09-11 16:59 ` Liliana Marie Prikler
2024-09-12 0:37 ` Maxim Cournoyer
2024-09-12 7:04 ` Remco van 't Veer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=871q1ygmk0.fsf@trop.in \
--to=bug-guix@gnu.org \
--cc=72042-done@debbugs.gnu.org \
--cc=andrew@trop.in \
--cc=leo@famulari.name \
--cc=liliana.prikler@gmail.com \
--cc=maxim.cournoyer@gmail.com \
--cc=remco@remworks.net \
--cc=vivien@planete-kraus.eu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).