unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Marius Bakke <mbakke@fastmail.com>
To: Christopher Baines <mail@cbaines.net>, 36641@debbugs.gnu.org
Subject: [bug#36641] [PATCH] gnu: python-gst: Fix build failure.
Date: Sun, 14 Jul 2019 00:52:11 +0200	[thread overview]
Message-ID: <87muhhlf8k.fsf@devup.no> (raw)
In-Reply-To: <20190713220059.7336-1-mail@cbaines.net>

[-- Attachment #1: Type: text/plain, Size: 2068 bytes --]

Christopher Baines <mail@cbaines.net> writes:

> Building python-gst fails with:
>
>   Unbound variable: python-version
>
> Therefore, add python-build-system to #:modules so that it's imported, and
> give it a prefix to avoid clashing with the gnu-build-system.
>
> Also, simplify the code by using the site-packages function from the
> python-build-system module.
>
> * gnu/packages/gstreamer.scm (python-gst)[arguments]: Rework to fix build
> failure.
> ---
>  gnu/packages/gstreamer.scm | 15 ++++++---------
>  1 file changed, 6 insertions(+), 9 deletions(-)
>
> diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
> index b0f0b032b3..efb9a6f796 100644
> --- a/gnu/packages/gstreamer.scm
> +++ b/gnu/packages/gstreamer.scm
> @@ -431,17 +431,14 @@ compression formats through the use of the libav library.")
>                  "0f1d9rvy2qxlymmfzyknnfr5rz1vx69jv17gp7wnamc5s6p7mp2m"))))
>      (build-system gnu-build-system)
>      (arguments
> -     ;; XXX: Factorize python-sitedir with python-build-system.
> -     `(#:imported-modules (,@%gnu-build-system-modules
> +     `(#:modules ((guix build gnu-build-system)
> +                  ((guix build python-build-system) #:prefix python:))
> +       #:imported-modules (,@%gnu-build-system-modules
>                             (guix build python-build-system))
>         #:configure-flags
> -       (let* ((python (assoc-ref %build-inputs "python"))
> -              (python-version (python-version python))
> -              (python-sitedir (string-append
> -                               "lib/python" python-version "/site-packages")))
> -         (list (string-append
> -                "--with-pygi-overrides-dir=" %output "/" python-sitedir
> -                "/gi/overrides")))))
> +       (list (string-append
> +              "--with-pygi-overrides-dir=" %output "/"

Nitpicking, but since we're refactoring, could you also change %output
to the less magical (assoc-ref %outputs "out")?


> +              (python:site-packages %build-inputs %outputs) "/gi/overrides"))))

Neat!  LGTM.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

  reply	other threads:[~2019-07-13 22:53 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-13 22:00 [bug#36641] [PATCH] gnu: python-gst: Fix build failure Christopher Baines
2019-07-13 22:52 ` Marius Bakke [this message]
2019-07-14  8:11   ` bug#36641: " Christopher Baines

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=87muhhlf8k.fsf@devup.no \
    --to=mbakke@fastmail.com \
    --cc=36641@debbugs.gnu.org \
    --cc=mail@cbaines.net \
    /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).