Package: gr-framework / 0.73.14+dfsg-2

Metadata

Package Version Patches format
gr-framework 0.73.14+dfsg-2 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
tweak grdir.patch | (download)

CMakeLists.txt | 2 2 + 0 - 0 !
lib/gks/font.c | 5 5 + 0 - 0 !
lib/gks/ft.c | 5 5 + 0 - 0 !
lib/gks/plugin.c | 5 5 + 0 - 0 !
lib/gks/socket.c | 5 5 + 0 - 0 !
lib/gks/util.c | 6 6 + 0 - 0 !
lib/gr/mathtex2_kerning.c | 5 5 + 0 - 0 !
lib/gr/stream.c | 6 6 + 0 - 0 !
lib/gr3/gr3_glx.c | 10 10 + 0 - 0 !
9 files changed, 49 insertions(+)

 tweak grdir for debian package
add soversion.patch | (download)

CMakeLists.txt | 8 8 + 0 - 0 !
1 file changed, 8 insertions(+)

 add debian specific soversion=0
enable gksm.patch | (download)

CMakeLists.txt | 11 11 + 0 - 0 !
1 file changed, 11 insertions(+)

 add missing gksm
disable needless runpath.patch | (download)

CMakeLists.txt | 18 6 + 12 - 0 !
1 file changed, 6 insertions(+), 12 deletions(-)

 disable needless runpath
fix ftbfs with ffmpeg8.patch | (download)

lib/gks/plugin/vc.c | 2 0 + 2 - 0 !
1 file changed, 2 deletions(-)

 do not call `avcodec_close` anymore

`avcodec_close` is deprecated in ffmpeg 7 and removed in major relase 8.
`avcodec_close` can be safely removed if `avcodec_free_context` is
called on the same context (even in open state). See
<https://github.com/FFmpeg/FFmpeg/commit/
1cc24d749569a42510399a29b034f7a77bdec34e> for more details.

This commit fixes GitHub issue
[#197](https://github.com/sciapp/gr/issues/197).