From 201cfb81d112f98bb7240d5924fcab9fca955177 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 6 Mar 2016 14:49:35 +0800 Subject: [PATCH] gnu: Add gst-python. * gnu/packages/gstreamer.scm (python-gst, python2-gst): New variables. --- gnu/packages/gstreamer.scm | 54 +++++++++++++++++++++++++++++++++++++- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 5b348b17f2..59b1076294 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -20,10 +20,11 @@ ;;; along with GNU Guix. If not, see . (define-module (gnu packages gstreamer) - #:use-module ((guix licenses) #:select (lgpl2.0+ bsd-2 bsd-3 gpl2+)) + #:use-module ((guix licenses) #:select (lgpl2.0+ lgpl2.1+ bsd-2 bsd-3 gpl2+)) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) + #:use-module (guix utils) #:use-module (gnu packages) #:use-module (gnu packages audio) #:use-module (gnu packages bison) @@ -400,3 +401,54 @@ (define-public gst-libav "This GStreamer plugin supports a large number of audio and video compression formats through the use of the libav library.") (license gpl2+))) + +(define-public python-gst + (package + (name "python-gst") + (version "1.6.2") + (source (origin + (method url-fetch) + (uri (string-append + "https://gstreamer.freedesktop.org/src/gst-python/" + "gst-python-" version ".tar.xz")) + (sha256 + (base32 + "09ci5zvr7lms7mvgbjgsjwaxcl4nq45n1g9pdwnqmx3rf0qkwxjf")))) + (build-system gnu-build-system) + (arguments + ;; XXX: Factorize python-sitedir with python-build-system. + `(#:imported-modules (,@%gnu-build-system-modules + (guix build python-build-system)) + #:configure-flags + (let* ((python (assoc-ref %build-inputs "python")) + (python-version ((@@ (guix build python-build-system) + get-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"))))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("python" ,python))) + (propagated-inputs + `(("gst-plugins-base" ,gst-plugins-base) + ("python-pygobject" ,python-pygobject))) + (home-page "http://gstreamer.freedesktop.org/") + (synopsis "GStreamer GObject Introspection overrides for Python") + (description + "This package contains GObject Introspection overrides for Python that can +be used by Python applications using GStreamer.") + (license lgpl2.1+) + (properties `((python2-variant . ,(delay python2-gst)))))) + +(define-public python2-gst + (package (inherit python-gst) + (name "python2-gst") + (native-inputs + `(("pkg-config" ,pkg-config) + ("python" ,python-2))) + (propagated-inputs + `(("gst-plugins-base" ,gst-plugins-base) + ("python-pygobject" ,python2-pygobject)))))