all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Mathieu Othacehe <othacehe@gnu.org>
To: Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
Cc: 40677-done@debbugs.gnu.org
Subject: bug#40677: [PATCH v5] gnu: Add ffmpeg-jami.
Date: Fri, 15 May 2020 09:11:14 +0200	[thread overview]
Message-ID: <87mu69wu3x.fsf@gnu.org> (raw)
In-Reply-To: <20200515004705.11286-1-tona_kosmicznego_smiecia@interia.pl> (Jan Wielkiewicz's message of "Fri, 15 May 2020 02:47:05 +0200")


Pushed with minor modifications.

Thanks for your work,

Mathieu

Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> writes:

> This package is needed, because Jami uses a modified version
> of ffmpeg, which provides GPU hardware acceleration, automatical
> adapting of bitrate and extra codecs. Because of the configure flags
> list being long, it is better to keep them separated in variables,
> instead of littering the package definition.
>
> * gnu/packages/jami.scm (ffmpeg-jami, %ffmpeg-default-configure-flags,
> %ffmpeg-linux-configure-flags, %ffmpeg-linux-x86-configure-flags):
> New variables.
> (ffmpeg-compose-configure-flags): New procedure.
> (libring)[inputs]: Use ffmpeg-jami instead of ffmpeg.
> ---
>  gnu/packages/jami.scm | 248 +++++++++++++++++++++++++++++++++++++++++-
>  1 file changed, 246 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/jami.scm b/gnu/packages/jami.scm
> index dda787b3cd..dea5e7d3b8 100644
> --- a/gnu/packages/jami.scm
> +++ b/gnu/packages/jami.scm
> @@ -59,7 +59,8 @@
>    #:use-module (guix download)
>    #:use-module (guix git-download)
>    #:use-module (guix packages)
> -  #:use-module (guix utils))
> +  #:use-module (guix utils)
> +  #:use-module (srfi srfi-1))
>  
>  (define %jami-version "20200401.1.6f090de")
>  
> @@ -186,6 +187,249 @@
>                  "selftest: pjlib-test pjlib-util-test pjmedia-test"))
>               #t)))))))
>  
> +;; The following variables are configure flags used by ffmpeg-jami.
> +;; They're from the ring-project/daemon/contrib/src/ffmpeg/rules.mak
> +;; file. We try to keep it as close to the official Jami package as
> +;; possible to provide all the codecs and extra features that are
> +;; the effect of patching ffmpeg.
> +;;
> +;; Web view of the file:
> +;;https://review.jami.net/plugins/gitiles/ring-daemon/+/refs/heads/master/contrib/src/ffmpeg/rules.mak
> +(define %ffmpeg-default-configure-flags
> +  '(;; disable everything
> +    "--disable-everything"
> +    "--enable-zlib"
> +    "--enable-gpl"
> +    "--enable-swscale"
> +    "--enable-bsfs"
> +    "--disable-filters"
> +    "--disable-programs"
> +    "--disable-postproc"
> +    "--disable-protocols"
> +    "--enable-protocol=crypto"
> +    "--enable-protocol=file"
> +    "--enable-protocol=rtp"
> +    "--enable-protocol=srtp"
> +    "--enable-protocol=tcp"
> +    "--enable-protocol=udp"
> +    "--enable-protocol=unix"
> +    "--enable-protocol=pipe"
> +    ;; enable muxers/demuxers
> +    "--disable-demuxers"
> +    "--disable-muxers"
> +    "--enable-muxer=rtp"
> +    "--enable-muxer=g722"
> +    "--enable-muxer=h263"
> +    "--enable-muxer=h264"
> +    "--enable-muxer=hevc"
> +    "--enable-muxer=webm"
> +    "--enable-muxer=ogg"
> +    "--enable-muxer=pcm_s16be"
> +    "--enable-muxer=pcm_s16le"
> +    "--enable-demuxer=rtp"
> +    "--enable-demuxer=mjpeg"
> +    "--enable-demuxer=mjpeg_2000"
> +    "--enable-demuxer=mpegvideo"
> +    "--enable-demuxer=gif"
> +    "--enable-demuxer=image_jpeg_pipe"
> +    "--enable-demuxer=image_png_pipe"
> +    "--enable-demuxer=image_webp_pipe"
> +    "--enable-demuxer=matroska"
> +    "--enable-demuxer=m4v"
> +    "--enable-demuxer=mp3"
> +    "--enable-demuxer=ogg"
> +    "--enable-demuxer=flac"
> +    "--enable-demuxer=wav"
> +    "--enable-demuxer=ac3"
> +    "--enable-demuxer=g722"
> +    "--enable-demuxer=pcm_mulaw"
> +    "--enable-demuxer=pcm_alaw"
> +    "--enable-demuxer=pcm_s16be"
> +    "--enable-demuxer=pcm_s16le"
> +    "--enable-demuxer=h263"
> +    "--enable-demuxer=h264"
> +    "--enable-demuxer=hevc"
> +    ;; enable parsers
> +    "--enable-parser=h263"
> +    "--enable-parser=h264"
> +    "--enable-parser=hevc"
> +    "--enable-parser=mpeg4video"
> +    "--enable-parser=vp8"
> +    "--enable-parser=vp9"
> +    "--enable-parser=opus"
> +    ;; encoders/decoders
> +    "--enable-encoder=adpcm_g722"
> +    "--enable-decoder=adpcm_g722"
> +    "--enable-encoder=rawvideo"
> +    "--enable-decoder=rawvideo"
> +    "--enable-encoder=libx264"
> +    "--enable-decoder=h264"
> +    "--enable-encoder=pcm_alaw"
> +    "--enable-decoder=pcm_alaw"
> +    "--enable-encoder=pcm_mulaw"
> +    "--enable-decoder=pcm_mulaw"
> +    "--enable-encoder=mpeg4"
> +    "--enable-decoder=mpeg4"
> +    "--enable-encoder=libvpx_vp8"
> +    "--enable-decoder=vp8"
> +    "--enable-decoder=vp9"
> +    "--enable-encoder=h263"
> +    "--enable-encoder=h263p"
> +    "--enable-decoder=h263"
> +    "--enable-encoder=mjpeg"
> +    "--enable-decoder=mjpeg"
> +    "--enable-decoder=mjpegb"
> +    "--enable-libspeex"
> +    "--enable-libopus"
> +    "--enable-libvpx"
> +    "--enable-libx264"
> +    "--enable-encoder=libspeex"
> +    "--enable-decoder=libspeex"
> +    "--enable-encoder=libopus"
> +    "--enable-decoder=libopus"
> +    ;; decoders for ringtones and audio streaming
> +    "--enable-decoder=flac"
> +    "--enable-decoder=vorbis"
> +    "--enable-decoder=aac"
> +    "--enable-decoder=ac3"
> +    "--enable-decoder=eac3"
> +    "--enable-decoder=mp3"
> +    "--enable-decoder=pcm_u24be"
> +    "--enable-decoder=pcm_u24le"
> +    "--enable-decoder=pcm_u32be"
> +    "--enable-decoder=pcm_u32le"
> +    "--enable-decoder=pcm_u8"
> +    "--enable-decoder=pcm_f16le"
> +    "--enable-decoder=pcm_f24le"
> +    "--enable-decoder=pcm_f32be"
> +    "--enable-decoder=pcm_f32le"
> +    "--enable-decoder=pcm_f64be"
> +    "--enable-decoder=pcm_f64le"
> +    "--enable-decoder=pcm_s16be"
> +    "--enable-decoder=pcm_s16be_planar"
> +    "--enable-decoder=pcm_s16le"
> +    "--enable-decoder=pcm_s16le_planar"
> +    "--enable-decoder=pcm_s24be"
> +    "--enable-decoder=pcm_s24le"
> +    "--enable-decoder=pcm_s24le_planar"
> +    "--enable-decoder=pcm_s32be"
> +    "--enable-decoder=pcm_s32le"
> +    "--enable-decoder=pcm_s32le_planar"
> +    "--enable-decoder=pcm_s64be"
> +    "--enable-decoder=pcm_s64le"
> +    "--enable-decoder=pcm_s8"
> +    "--enable-decoder=pcm_s8_planar"
> +    "--enable-decoder=pcm_u16be"
> +    "--enable-decoder=pcm_u16le"
> +    ;; encoders/decoders for images
> +    "--enable-encoder=gif"
> +    "--enable-decoder=gif"
> +    "--enable-encoder=jpegls"
> +    "--enable-decoder=jpegls"
> +    "--enable-encoder=ljpeg"
> +    "--enable-decoder=jpeg2000"
> +    "--enable-encoder=png"
> +    "--enable-decoder=png"
> +    "--enable-encoder=bmp"
> +    "--enable-decoder=bmp"
> +    "--enable-encoder=tiff"
> +    "--enable-decoder=tiff"
> +    ;; filters
> +    "--enable-filter=scale"
> +    "--enable-filter=overlay"
> +    "--enable-filter=amix"
> +    "--enable-filter=amerge"
> +    "--enable-filter=aresample"
> +    "--enable-filter=format"
> +    "--enable-filter=aformat"
> +    "--enable-filter=fps"
> +    "--enable-filter=transpose"
> +    "--enable-filter=pad"))
> +
> +(define %ffmpeg-linux-configure-flags
> +  '("--enable-pic"
> +    "--extra-cxxflags=-fPIC"
> +    "--extra-cflags=-fPIC"
> +    "--target-os=linux"
> +    "--enable-indev=v4l2"
> +    "--enable-indev=xcbgrab"
> +    "--enable-vdpau"
> +    "--enable-hwaccel=h264_vdpau"
> +    "--enable-hwaccel=mpeg4_vdpau"
> +    "--enable-vaapi"
> +    "--enable-hwaccel=h264_vaapi"
> +    "--enable-hwaccel=mpeg4_vaapi"
> +    "--enable-hwaccel=h263_vaapi"
> +    "--enable-hwaccel=vp8_vaapi"
> +    "--enable-hwaccel=mjpeg_vaapi"
> +    "--enable-hwaccel=hevc_vaapi"
> +    "--enable-encoder=h264_vaapi"
> +    "--enable-encoder=vp8_vaapi"
> +    "--enable-encoder=mjpeg_vaapi"
> +    "--enable-encoder=hevc_vaapi"))
> +
> +;; ffnvcodec is not supported on ARM then we enable it here for i386 and x86_64
> +(define %ffmpeg-linux-x86-configure-flags
> +  '("--arch=x86"
> +    "--enable-cuvid"
> +    "--enable-ffnvcodec"
> +    "--enable-nvdec"
> +    "--enable-nvenc"
> +    "--enable-hwaccel=h264_nvdec"
> +    "--enable-hwaccel=hevc_nvdec"
> +    "--enable-hwaccel=vp8_nvdec"
> +    "--enable-hwaccel=mjpeg_nvdec"
> +    "--enable-encoder=h264_nvenc"
> +    "--enable-encoder=hevc_nvenc"))
> +
> +;; This procedure composes the configure flags list for ffmpeg-jami.
> +(define (ffmpeg-compose-configure-flags)
> +  (define (system=? s)
> +    (string-prefix? s (%current-system)))
> +  `(,@%ffmpeg-default-configure-flags
> +    ,@(if (string-contains (%current-system) "linux")
> +          (if (or (system=? "i686")
> +                  (system=? "x86_64"))
> +              (append %ffmpeg-linux-configure-flags
> +                      %ffmpeg-linux-x86-configure-flags)
> +              %ffmpeg-linux-configure-flags)
> +          '())))
> +
> +(define-public ffmpeg-jami
> +  (package
> +    (inherit ffmpeg)
> +    (name "ffmpeg-jami")
> +    (native-inputs
> +     `(("sfl-patches" ,(jami-source))
> +       ("libiconv" ,libiconv)
> +       ,@(package-native-inputs ffmpeg)))
> +    (supported-systems '("x86_64-linux" "i686-linux"
> +                         "aarch64-linux" "armhf-linux"))
> +    (arguments
> +     (append
> +      '(#:tests? #f)
> +      (substitute-keyword-arguments (package-arguments ffmpeg)
> +        ((#:configure-flags '())
> +         (ffmpeg-compose-configure-flags))
> +        ((#:phases phases)
> +         `(modify-phases ,phases
> +            (add-after 'unpack 'make-git-checkout-writable
> +              (lambda _
> +                (for-each make-file-writable (find-files "."))
> +                #t))
> +            (add-after 'unpack 'apply-patches
> +              (lambda* (#:key inputs #:allow-other-keys)
> +                (let ((jami-apply-dependency-patches ,jami-apply-dependency-patches))
> +                  ;; These patches come from:
> +                  ;; "ring-project/daemon/contrib/src/ffmpeg/rules.mak".
> +                  (jami-apply-dependency-patches #:inputs inputs
> +                                                 #:dep-name "ffmpeg"
> +                                                 #:patches
> +                                                 '("remove-mjpeg-log"
> +                                                   "change-RTCP-ratio"
> +                                                   "rtp_ext_abs_send_time"))
> +                  #t))))))))))
> +
>  (define-public libring
>    (package
>      (name "libring")
> @@ -197,7 +441,7 @@
>         ("boost" ,boost)
>         ("dbus-c++" ,dbus-c++)
>         ("eudev" ,eudev)
> -       ("ffmpeg" ,ffmpeg)
> +       ("ffmpeg" ,ffmpeg-jami)
>         ("flac" ,flac)
>         ("gmp" ,gmp)
>         ("gsm" ,gsm)




      reply	other threads:[~2020-05-15  7:12 UTC|newest]

Thread overview: 144+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-17  0:00 [bug#40677] Jami Jan Wielkiewicz
2020-04-17  0:34 ` [bug#40677] [PATCH 01/30] gnu: jami: Move Jami and its dependencies to jami.scm Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 02/30] gnu: jami: Bump to 20200203.1.5ee7e10 Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 03/30] gnu: jami: Fix downloading by changing the prefix to "jami_"; Use the "release" dir instead of the deprecated "ring-release" Jan Wielkiewicz
2020-04-18 12:16     ` Mathieu Othacehe
2020-04-17  0:34   ` [bug#40677] [PATCH 04/30] gnu: jami: Add a generalized procedure for applying patches made by Savoir-faire linux to Jami dependencies Jan Wielkiewicz
2020-04-18 12:24     ` Mathieu Othacehe
2020-04-17  0:34   ` [bug#40677] [PATCH 05/30] gnu: pjproject-jami: Use the jami-apply-dependency-patches procedure Jan Wielkiewicz
2020-04-18 12:27     ` Mathieu Othacehe
2020-04-17  0:34   ` [bug#40677] [PATCH 06/30] gnu: Add libnatpmp Jan Wielkiewicz
2020-04-18 12:30     ` Mathieu Othacehe
2020-04-17  0:34   ` [bug#40677] [PATCH 07/30] gnu: libring: Add libnatpmp as an optional dependency; remove unnecessary comment Jan Wielkiewicz
2020-04-18 12:33     ` Mathieu Othacehe
2020-04-17  0:34   ` [bug#40677] [PATCH 08/30] gnu: libupnp: Bump to 1.8.6; change the download method to git-fetch; add missing dependencies Jan Wielkiewicz
2020-04-18 12:37     ` Mathieu Othacehe
2020-04-17  0:34   ` [bug#40677] [PATCH 09/30] gnu: opendht: Bump to 2.0.0rc1 Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 10/30] gnu: Add ffmpeg-jami Jan Wielkiewicz
2020-04-18 12:49     ` Mathieu Othacehe
2020-04-19 20:03       ` Jan
2020-04-17  0:34   ` [bug#40677] [PATCH 11/30] gnu: libring: Use ffmpeg-jami instead of ffmpeg Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 12/30] gnu: restinio: Bump to 0.6.1.1 Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 13/30] gnu: pjproject: Add and apply a patch fixing the crash Jan Wielkiewicz
2020-04-18 12:54     ` Mathieu Othacehe
2020-04-19 22:26       ` Jan
2020-04-17  0:34   ` [bug#40677] [PATCH 14/30] gnu: jami.scm: Add a missing module Jan Wielkiewicz
2020-04-18 12:55     ` Mathieu Othacehe
2020-04-17  0:34   ` [bug#40677] [PATCH 15/30] gnu: jami: Bump to 20200206.2.996bf03 Jan Wielkiewicz
2020-04-18 12:56     ` Mathieu Othacehe
2020-04-19 19:49       ` Jan
2020-04-17  0:34   ` [bug#40677] [PATCH 16/30] gnu: pjproject-jami: Add a new SFL patch Jan Wielkiewicz
2020-04-18 13:00     ` Mathieu Othacehe
2020-04-19 19:49       ` Jan
2020-04-19 20:32         ` Michael Rohleder
2020-04-17  0:34   ` [bug#40677] [PATCH 17/30] gnu: pjproject: Fix formatting Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 18/30] gnu: jami: Make gettext a native input Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 19/30] gnu: jami.scm: Untabify by emacs Jan Wielkiewicz
2020-04-18 13:08     ` Mathieu Othacehe
2020-04-17  0:34   ` [bug#40677] [PATCH 20/30] gnu: jami: Bump to 20200214.1.7488e86 Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 21/30] gnu: opendht: Bump to 2.0.0rc2 Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 22/30] gnu: networking.scm: Add missing copyright year Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 23/30] gnu: pjproject, pjproject-jami: Remove broken pjproject package. Make pjproject-jami package stand-alone by moving package code from pjproject into it Jan Wielkiewicz
2020-04-18 13:03     ` Mathieu Othacehe
2020-04-19 19:44       ` Jan
2020-04-17  0:34   ` [bug#40677] [PATCH 24/30] gnu: jami: Bump to 20200326.1.f8d3d10 Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 25/30] gnu: pjproject-jami: Bump to 2.10; apply some cool patches Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 26/30] gnu: jami.scm: Indent code properly Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 27/30] gnu: opendht: Bump to 2.0.0 Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 28/30] gnu: jami: Bump to 20200401.1.6f090de Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 29/30] gnu: jami: Replace gnu-gettext with gettext-minimal, just like on master Jan Wielkiewicz
2020-04-17  0:34   ` [bug#40677] [PATCH 30/30] gnu: pjproject-jami: Add the missing "--enable-epoll" flag Jan Wielkiewicz
2020-04-18 13:13     ` Mathieu Othacehe
2020-04-18 12:13   ` [bug#40677] [PATCH 01/30] gnu: jami: Move Jami and its dependencies to jami.scm Mathieu Othacehe
2020-04-20 22:55 ` [bug#40677] Code review problems resolved Jan
2020-04-21  7:04   ` Christopher Baines
2020-04-21  7:28   ` Mathieu Othacehe
2020-04-21 16:10 ` [bug#40677] [PATCH 01/18] gnu: jami: Move Jami and its dependencies to jami.scm Jan Wielkiewicz
2020-04-21 16:10   ` [bug#40677] [PATCH 02/18] gnu: jami: Fix downloading Jan Wielkiewicz
2020-04-21 16:10   ` [bug#40677] [PATCH 03/18] gnu: jami.scm: Add and use a generalized procedure for applying patches made by Savoir-faire linux to Jami dependencies Jan Wielkiewicz
2020-04-22  9:07     ` Mathieu Othacehe
2020-04-21 16:10   ` [bug#40677] [PATCH 04/18] gnu: Add libnatpmp Jan Wielkiewicz
2020-04-22  9:27     ` Mathieu Othacehe
2020-04-27 22:55       ` Jan
2020-04-28  7:19         ` Mathieu Othacehe
2020-04-29 22:31           ` Jan
2020-04-30  7:04             ` Mathieu Othacehe
2020-04-21 16:10   ` [bug#40677] [PATCH 05/18] gnu: libring: Add libnatpmp as an optional dependency Jan Wielkiewicz
2020-04-21 16:10   ` [bug#40677] [PATCH 06/18] gnu: libupnp: Bump to 1.8.6; change the download method to git-fetch; add missing dependencies Jan Wielkiewicz
2020-04-21 16:10   ` [bug#40677] [PATCH 07/18] gnu: Add ffmpeg-jami Jan Wielkiewicz
2020-04-21 16:10   ` [bug#40677] [PATCH 08/18] gnu: libring: Use ffmpeg-jami instead of ffmpeg Jan Wielkiewicz
2020-04-21 16:10   ` [bug#40677] [PATCH 09/18] gnu: restinio: Bump to 0.6.1.1 Jan Wielkiewicz
2020-04-21 16:10   ` [bug#40677] [PATCH 10/18] gnu: pjproject-jami: Add a new SFL patch Jan Wielkiewicz
2020-04-21 16:10   ` [bug#40677] [PATCH 11/18] gnu: pjproject: Fix formatting Jan Wielkiewicz
2020-04-22  9:32     ` Mathieu Othacehe
2020-04-21 16:10   ` [bug#40677] [PATCH 12/18] gnu: jami: Make gettext a native input Jan Wielkiewicz
2020-04-21 16:10   ` [bug#40677] [PATCH 13/18] gnu: pjproject, pjproject-jami: Remove broken pjproject package. Make pjproject-jami package stand-alone by moving package code from pjproject into it Jan Wielkiewicz
2020-04-22  9:39     ` Mathieu Othacehe
2020-04-22 11:42       ` Jan
2020-04-21 16:10   ` [bug#40677] [PATCH 14/18] gnu: pjproject-jami: Bump to 2.10, apply new SFL patches Jan Wielkiewicz
2020-04-22  9:40     ` Mathieu Othacehe
2020-04-21 16:10   ` [bug#40677] [PATCH 15/18] gnu: opendht: Bump to 2.0.0 Jan Wielkiewicz
2020-04-21 16:10   ` [bug#40677] [PATCH 16/18] gnu: jami: Bump to 20200401.1.6f090de Jan Wielkiewicz
2020-04-21 16:10   ` [bug#40677] [PATCH 17/18] gnu: jami: Replace gnu-gettext with gettext-minimal, just like on master Jan Wielkiewicz
2020-04-21 16:10   ` [bug#40677] [PATCH 18/18] gnu: pjproject-jami: Add the missing, linux-only "--enable-epoll" flag Jan Wielkiewicz
2020-04-22  9:44     ` Mathieu Othacehe
2020-04-22  8:59   ` [bug#40677] [PATCH 01/18] gnu: jami: Move Jami and its dependencies to jami.scm Mathieu Othacehe
2020-04-22 10:42     ` Jan
2020-04-22 11:42       ` Mathieu Othacehe
2020-04-27 23:18         ` Jan
2020-04-28  7:14           ` Mathieu Othacehe
2020-04-22 16:08     ` Christopher Baines
2020-05-02  1:14 ` [bug#40677] [PATCH V3 00/15] Jami patches Jan Wielkiewicz
2020-05-02  1:14   ` [bug#40677] [PATCH V3 01/15] gnu: telephony.scm: Move Jami and its dependencies to jami.scm Jan Wielkiewicz
2020-05-02  8:45     ` Mathieu Othacehe
2020-05-02  1:14   ` [bug#40677] [PATCH V3 02/15] gnu: jami: Fix downloading Jan Wielkiewicz
2020-05-02  8:47     ` Mathieu Othacehe
2020-05-02  1:14   ` [bug#40677] [PATCH V3 03/15] gnu: jami.scm: Add and use a generalized procedure for applying patches to Jami dependencies Jan Wielkiewicz
2020-05-02  8:54     ` Mathieu Othacehe
2020-05-02  1:14   ` [bug#40677] [PATCH V3 04/15] gnu: Add libnatpmp Jan Wielkiewicz
2020-05-02  8:22     ` Mathieu Othacehe
2020-05-02  1:14   ` [bug#40677] [PATCH V3 05/15] gnu: libring: Add libnatpmp as an optional dependency Jan Wielkiewicz
2020-05-02  8:56     ` Mathieu Othacehe
2020-05-02  1:14   ` [bug#40677] [PATCH V3 06/15] gnu: libupnp: Bump to 1.8.6 Jan Wielkiewicz
2020-05-02  8:30     ` Mathieu Othacehe
2020-05-02  1:14   ` [bug#40677] [PATCH V3 07/15] gnu: Add ffmpeg-jami Jan Wielkiewicz
2020-05-02  9:36     ` Mathieu Othacehe
2020-05-02 11:31       ` Jan
2020-05-04 18:26       ` Jan
2020-05-05  7:18         ` Mathieu Othacehe
2020-05-07  0:22           ` Jan
2020-05-08  8:43             ` Mathieu Othacehe
2020-05-07 20:03           ` Jan
2020-05-08  8:35             ` Mathieu Othacehe
2020-05-13 14:57       ` Jan
2020-05-13 15:51         ` Mathieu Othacehe
2020-05-02  1:14   ` [bug#40677] [PATCH V3 08/15] gnu: libring: Use ffmpeg-jami instead of ffmpeg Jan Wielkiewicz
2020-05-02  1:14   ` [bug#40677] [PATCH V3 09/15] gnu: restinio: Bump to 0.6.1.1 Jan Wielkiewicz
2020-05-02  8:32     ` Mathieu Othacehe
2020-05-02  1:14   ` [bug#40677] [PATCH V3 10/15] gnu: jami: Make gettext a native input Jan Wielkiewicz
2020-05-02  8:58     ` Mathieu Othacehe
2020-05-02  1:14   ` [bug#40677] [PATCH V3 11/15] gnu: pjproject, pjproject-jami: Bump to 2.10, apply new SFL patches Jan Wielkiewicz
2020-05-02  9:14     ` Mathieu Othacehe
2020-05-02 15:17       ` Jan
2020-05-02  1:14   ` [bug#40677] [PATCH V3 12/15] gnu: jami: Bump to 20200401.1.6f090de Jan Wielkiewicz
2020-05-02  9:19     ` Mathieu Othacehe
2020-05-02 11:33       ` Jan
2020-05-02  9:25     ` Mathieu Othacehe
2020-05-02 15:04       ` Jan
2020-05-02  1:14   ` [bug#40677] [PATCH V3 13/15] gnu: jami: Replace gnu-gettext with gettext-minimal, just like on master Jan Wielkiewicz
2020-05-02  9:28     ` Mathieu Othacehe
2020-05-02  1:14   ` [bug#40677] [PATCH V3 14/15] gnu: pjproject-jami: Add the missing, linux-only "--enable-epoll" flag Jan Wielkiewicz
2020-05-02  9:32     ` Mathieu Othacehe
2020-05-02  1:14   ` [bug#40677] [PATCH V3 15/15] gnu: opendht: Bump to 2.0.0 Jan Wielkiewicz
2020-05-02  8:38     ` Mathieu Othacehe
2020-05-02  9:52   ` [bug#40677] [PATCH V3 00/15] Jami patches Mathieu Othacehe
2020-05-02 11:26     ` Jan
2020-05-03  7:34       ` Mathieu Othacehe
2020-05-03 14:32         ` Jan
2020-05-02 14:58     ` Jan
2020-05-13 18:12 ` [bug#40677] [PATCH v4] gnu: Add ffmpeg-jami Jan Wielkiewicz
2020-05-14  7:05   ` Mathieu Othacehe
2020-05-14 12:43     ` Jan
2020-05-15  6:59       ` Mathieu Othacehe
2020-05-15  0:47 ` [bug#40677] [PATCH v5] " Jan Wielkiewicz
2020-05-15  7:11   ` Mathieu Othacehe [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87mu69wu3x.fsf@gnu.org \
    --to=othacehe@gnu.org \
    --cc=40677-done@debbugs.gnu.org \
    --cc=tona_kosmicznego_smiecia@interia.pl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.