[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/74: gnu: libvpx: Use 'modify-phases'.
From: |
Mark H. Weaver |
Subject: |
10/74: gnu: libvpx: Use 'modify-phases'. |
Date: |
Mon, 22 Feb 2016 16:14:04 +0000 |
mhw pushed a commit to branch media-updates
in repository guix.
commit e80ce5cfe36fc6084b83ccd935dc80e51a0c7dd2
Author: Efraim Flashner <address@hidden>
Date: Tue Jan 19 07:24:28 2016 +0200
gnu: libvpx: Use 'modify-phases'.
* gnu/packages/video.scm (libvpx)[arguments]: Use 'modify-phases'.
---
gnu/packages/video.scm | 28 ++++++++++++++--------------
1 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 975102a..39f67e2 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -781,20 +781,20 @@ projects while introducing many more.")
"15v7qw0ydyxn08ksb6lxn1l51pxgpwgshdwd3275yrr5hs86fv9h"))))
(build-system gnu-build-system)
(arguments
- `(#:phases (alist-replace
- 'configure
- (lambda* (#:key outputs #:allow-other-keys)
- (setenv "CONFIG_SHELL" (which "bash"))
- (let ((out (assoc-ref outputs "out")))
- (setenv "LDFLAGS"
- (string-append "-Wl,-rpath=" out "/lib"))
- (zero? (system* "./configure"
- "--enable-shared"
- "--as=yasm"
- ;; Limit size to avoid CVE-2015-1258
- "--size-limit=16384x16384"
- (string-append "--prefix=" out)))))
- %standard-phases)
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'configure
+ (lambda* (#:key outputs #:allow-other-keys)
+ (setenv "CONFIG_SHELL" (which "bash"))
+ (let ((out (assoc-ref outputs "out")))
+ (setenv "LDFLAGS"
+ (string-append "-Wl,-rpath=" out "/lib"))
+ (zero? (system* "./configure"
+ "--enable-shared"
+ "--as=yasm"
+ ;; Limit size to avoid CVE-2015-1258
+ "--size-limit=16384x16384"
+ (string-append "--prefix=" out)))))))
#:tests? #f)) ; no check target
(native-inputs
`(("perl" ,perl)
- branch media-updates created (now 5b657b8), Mark H. Weaver, 2016/02/22
- 05/74: gnu: gst-plugins-ugly: Update to 1.6.3., Mark H. Weaver, 2016/02/22
- 02/74: gnu: gstreamer: Update to 1.6.3., Mark H. Weaver, 2016/02/22
- 06/74: gnu: gst-libav: Update to 1.6.3., Mark H. Weaver, 2016/02/22
- 03/74: gnu: gst-plugins-base: Update to 1.6.3., Mark H. Weaver, 2016/02/22
- 08/74: gnu: gst-plugins-base: Use 'modify-phases'., Mark H. Weaver, 2016/02/22
- 10/74: gnu: libvpx: Use 'modify-phases'.,
Mark H. Weaver <=
- 07/74: gnu: Add gst-plugins-bad., Mark H. Weaver, 2016/02/22
- 18/74: gnu: kbproto: Update to 1.0.7., Mark H. Weaver, 2016/02/22
- 12/74: gnu: mesa: Update to 11.0.9., Mark H. Weaver, 2016/02/22
- 17/74: gnu: iceauth: Update to 1.0.7., Mark H. Weaver, 2016/02/22
- 16/74: gnu: font-util: Update to 1.3.1., Mark H. Weaver, 2016/02/22
- 22/74: gnu: libxdmcp: Update to 1.1.2., Mark H. Weaver, 2016/02/22
- 21/74: gnu: libfs: Update to 1.0.7., Mark H. Weaver, 2016/02/22
- 15/74: gnu: bdftopcf: Update to 1.0.5., Mark H. Weaver, 2016/02/22
- 14/74: gnu: libinput: Update to 1.1.902., Mark H. Weaver, 2016/02/22
- 13/74: gnu: libwacom: Propagate glib input., Mark H. Weaver, 2016/02/22