From 9e586b162792bcf92e7a3584eb797a56827d4d36 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 26 Nov 2020 21:12:22 +0100 Subject: gnu: libass: Update to 0.15.0. [fixes CVE-2020-26682] * gnu/packages/video.scm (libass): Update to 0.15.0. --- gnu/packages/video.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/video.scm') diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index f1b724e54c..ebb9678f54 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1191,7 +1191,7 @@ designed to encode video or images into an H.265 / HEVC encoded bitstream.") (define-public libass (package (name "libass") - (version "0.14.0") + (version "0.15.0") (source (origin (method url-fetch) (uri (string-append @@ -1199,7 +1199,7 @@ designed to encode video or images into an H.265 / HEVC encoded bitstream.") version "/libass-" version ".tar.xz")) (sha256 (base32 - "18iqznl4mabhj9ywfsz4kwvbsplcv1jjxq50nxssvbj8my1267w8")))) + "0cz8v6kh3f2j5rdjrra2z0h715fa16vjm7kambvqx9hak86262cz")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) -- cgit v1.2.3 From 79d7f35a297a105af2f88863f6ed91a896977b87 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 26 Nov 2020 21:15:01 +0100 Subject: gnu: libass: Remove unused input. * gnu/packages/video.scm (libass)[propagated-inputs]: Remove ENCA. --- gnu/packages/video.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gnu/packages/video.scm') diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index ebb9678f54..9026b710f5 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1208,8 +1208,7 @@ designed to encode video or images into an H.265 / HEVC encoded bitstream.") `(("freetype" ,freetype) ("fribidi" ,fribidi) ("fontconfig" ,fontconfig) - ("harfbuzz" ,harfbuzz) - ("enca" ,enca))) + ("harfbuzz" ,harfbuzz))) (home-page "https://github.com/libass/libass") (synopsis "Subtitle rendering library for the ASS/SSA format") (description "libass is a subtitle rendering library for the -- cgit v1.2.3 From 845ba68d21ef549be0212d775e5d0f9c202d1af3 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 26 Nov 2020 21:15:32 +0100 Subject: gnu: libass: Omit the static library. * gnu/packages/video.scm (libass)[arguments]: New field. --- gnu/packages/video.scm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gnu/packages/video.scm') diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 9026b710f5..e52ce7a28f 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1201,6 +1201,8 @@ designed to encode video or images into an H.265 / HEVC encoded bitstream.") (base32 "0cz8v6kh3f2j5rdjrra2z0h715fa16vjm7kambvqx9hak86262cz")))) (build-system gnu-build-system) + (arguments + '(#:configure-flags '("--disable-static"))) (native-inputs `(("pkg-config" ,pkg-config) ("nasm" ,nasm))) -- cgit v1.2.3