diff options
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 42 |
1 files changed, 32 insertions, 10 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 6e711e0046..838dfe7aab 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1501,17 +1501,17 @@ quality and performance.") (define-public libva (package (name "libva") - (version "2.16.0") + (version "2.17.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/intel/libva/releases/download/" version "/libva-" version ".tar.bz2")) (sha256 - (base32 "070aj9nw681a4m7f5xb662hhyib0w9q0i0s9v8vplh9cvfhaqpqi")))) + (base32 "1b2f1hik4x3n4n8217sg1k602wqjba8x20r7nsdmmq05qckyprgk")))) (build-system gnu-build-system) (native-inputs - (list pkg-config)) + (list config pkg-config)) (inputs (list libdrm libx11 @@ -1533,6 +1533,14 @@ quality and performance.") #~(list (string-append "dummy_drv_video_ladir=" #$output "/lib/dri")) #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'update-config-scripts + (lambda* (#:key native-inputs inputs #:allow-other-keys) + (for-each (lambda (file) + (install-file + (search-input-file + (or native-inputs inputs) + (string-append "/bin/" file)) ".")) + '("config.guess" "config.sub")))) (add-before 'build 'fix-dlopen-paths (lambda _ (substitute* "va/drm/va_drm_auth_x11.c" @@ -3153,7 +3161,7 @@ and custom quantization matrices.") (list python-pysocks python-websocket-client python-isodate - python-lxml-4.7 + python-lxml python-pycountry python-pycryptodome python-requests @@ -3590,7 +3598,7 @@ application with @code{obs-gamecapture}.") (define-public libvdpau (package (name "libvdpau") - (version "1.4") + (version "1.5") (source (origin (method git-fetch) @@ -3600,7 +3608,7 @@ application with @code{obs-gamecapture}.") (file-name (git-file-name name version)) (sha256 (base32 - "1hc4mcrbr1yhfiy4zfd8wc2iiqbp90z6jswap0jia20vmyk5lqld")))) + "1zfbh5q9adzlydpgwq7hl5w1j2b29j7zns6dxf9fp9pvkj23fz5l")))) (build-system meson-build-system) (native-inputs (list pkg-config)) @@ -4149,7 +4157,7 @@ practically any type of media.") (define-public libmediainfo (package (name "libmediainfo") - (version "22.03") + (version "23.03") (source (origin (method url-fetch) (uri (string-append "https://mediaarea.net/download/source/" @@ -4157,7 +4165,7 @@ practically any type of media.") name "_" version ".tar.xz")) (sha256 (base32 - "1fc0ihj17cdv9zb346llwvbv0hn3sl3ax398ankgp74fcaxvll7w")))) + "1660lsilm02324c65sxxi41fn225hg78yxqyxff5dyf6fvyzyypm")))) ;; TODO add a Big Buck Bunny webm for tests. (native-inputs (list autoconf automake libtool pkg-config)) @@ -4175,6 +4183,13 @@ practically any type of media.") (add-after 'unpack 'change-to-build-dir (lambda _ (chdir "Project/GNU/Library") + ;; XXX Add a shebang to the script to avoid an error like: + ;; "In execvp of ./autogen.sh: Exec format error" + ;; The string replaced is just a code comment. + ;; See the similar substitution made in mediainfo. + (substitute* "autogen.sh" + (("#libtoolize") + "#!/bin/sh")) #t))))) (home-page "https://mediaarea.net/en/MediaInfo") (synopsis "Library for retrieving media metadata") @@ -4205,7 +4220,7 @@ MPEG-2, MPEG-4, DVD (VOB)... (define-public mediainfo (package (name "mediainfo") - (version "22.03") + (version "23.03") (source (origin (method url-fetch) ;; Warning: This source has proved unreliable 1 time at least. @@ -4216,7 +4231,7 @@ MPEG-2, MPEG-4, DVD (VOB)... name "_" version ".tar.xz")) (sha256 (base32 - "1r1bh1lk2dsiv0j84whgca7qslxbibg6vsih7x5iga2p3lmgjdk2")))) + "1654pal4x753pcha8h939a70q5z3jzaddgb39cinlrv5fljs8qgh")))) (native-inputs (list autoconf automake libtool pkg-config)) (inputs @@ -4230,6 +4245,13 @@ MPEG-2, MPEG-4, DVD (VOB)... (add-after 'unpack 'change-to-build-dir (lambda _ (chdir "Project/GNU/CLI") + ;; XXX Add a shebang to the script to avoid an error like: + ;; "In execvp of ./autogen.sh: Exec format error" + ;; The string replaced is just a code comment. + ;; See the similar substitution made in libmediainfo. + (substitute* "autogen.sh" + (("#libtoolize") + "#!/bin/sh")) #t))))) (home-page "https://mediaarea.net/en/MediaInfo") (synopsis "Utility for reading media metadata") |