aboutsummaryrefslogtreecommitdiff
path: root/build-aux/cuirass/evaluate.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-01-10 16:26:44 -0500
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-01-11 09:22:13 -0500
commit3dd8bf94a9d1a2eddb6eda9da7d4a3d422b9dfe9 (patch)
tree2e0828ab99c8f10153126977e01ac79b47765bb7 /build-aux/cuirass/evaluate.scm
parent002102983f465587e2bab29ed9611f204ff16a7b (diff)
downloadguix-3dd8bf94a9d1a2eddb6eda9da7d4a3d422b9dfe9.tar.gz
guix-3dd8bf94a9d1a2eddb6eda9da7d4a3d422b9dfe9.zip
gnu: ffmpeg-jami: Sync configure flags with upstream Jami.
After discovering that video didn't work with Jami, a closer look to the configuration flags used by its ffmpeg fork found some discrepancies. * gnu/packages/video.scm (ffmpeg-jami) [configure-flags]: Order the same way as in the upstream rules.mk file, to ease comparison. Add "--disable-doc" and "--enable-muxer=g723_1" flags. Change-Id: I02efef9c434cf3150212e0a8eb9b615980242757
Diffstat (limited to 'build-aux/cuirass/evaluate.scm')
0 files changed, 0 insertions, 0 deletions
td>gnu-maintenance: Support // URLs in latest-html-release....This makes "./pre-inst-env guix refresh -u" download the release tarball from the right place -- previously, it downloaded from https://www.libreoffice.org//download.documentfoundation.org/libreoffice/src/7.4.0/libreoffice-7.4.0.3.tar.xz?idx=1 whereas it should download from https://download.documentfoundation.org/libreoffice/src/7.4.0/libreoffice-7.4.0.3.tar.xz?idx=1 instead. * guix/gnu-maintenance.scm (latest-html-release)[url-release]: Adjust computation in the case of an absolute URI-reference without a scheme. * tests/gnu-maintenance.scm ("latest-html-release, scheme-less URIs"): Test it. Signed-off-by: Christopher Baines <mail@cbaines.net> Maxime Devos 2021-05-28gnu-maintenance: 'release-file?' accepts 'v' prefix as in "PKG-v1.2.tgz"....* guix/gnu-maintenance.scm (%tarball-rx, %package-name-rx): Accept 'v' and 'V' prefixes. Accept ".tgz" extension. * tests/gnu-maintenance.scm ("release-file?"): Add test. Ludovic Courtès