Merge ~mkukri/ubuntu/+source/libvpx:merge into ubuntu/+source/libvpx:debian/sid

Proposed by Mate Kukri
Status: Merged
Merge reported by: Mate Kukri
Merged at revision: b1eecb19ccddbe7b8fbf9eacb2b97a4428238b50
Proposed branch: ~mkukri/ubuntu/+source/libvpx:merge
Merge into: ubuntu/+source/libvpx:debian/sid
Diff against target: 108 lines (+56/-1)
3 files modified
debian/changelog (+51/-0)
debian/control (+2/-1)
debian/rules (+3/-0)
Reviewer Review Type Date Requested Status
Simon Quigley (community) Approve
git-ubuntu import Pending
Review via email: mp+455773@code.launchpad.net

Commit message

Merge libvpx with Debian sid.

Tested to ensure patch to disable LTO still needed on noble.

To post a comment you must log in.
Revision history for this message
Simon Quigley (tsimonq2) wrote :

                                 .........
                               .'------.' |
                              | .-----. | |
                              | | | | |
                            __| | | | |;. _______________
                           / |*`-----'.|.' `; //
                          / `---------' .;' //
                    /| / .''''////////;' //
                   |=| .../ ######### /;/ //|
                   |/ / / ######### // //||
                      / `-----------' // ||
                     /________________________________//| ||
                     `--------------------------------' | ||
                      : | || | || |__LL__|| || | ||
                      : | || | || | || `""'
                      n | || `""' | ||
                      M | || | ||
                        | || | ||
                        `""' `""'

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/debian/changelog b/debian/changelog
2index 32e4c82..835b12c 100644
3--- a/debian/changelog
4+++ b/debian/changelog
5@@ -1,3 +1,10 @@
6+libvpx (1.13.1-2ubuntu1) noble; urgency=medium
7+
8+ * Merge with Debian unstable. Remaining changes:
9+ - d/rules: Disable LTO
10+
11+ -- Mate Kukri <mate.kukri@canonical.com> Fri, 17 Nov 2023 09:45:41 +0000
12+
13 libvpx (1.13.1-2) unstable; urgency=medium
14
15 * Upload to unstable
16@@ -25,6 +32,29 @@ libvpx (1.12.0-1.1) unstable; urgency=high
17
18 -- Salvatore Bonaccorso <carnil@debian.org> Thu, 28 Sep 2023 23:07:11 +0200
19
20+libvpx (1.12.0-1ubuntu2) mantic; urgency=medium
21+
22+ * SECURITY UPDATE: Heap buffer overflow in vp8 encoding
23+ - debian/patches/CVE-2023-5217-1.patch: add ConfigResizeChangeThreadCount
24+ to test/encode_api_test.cc.
25+ - debian/patches/CVE-2023-5217-2.patch: disallow thread count changes
26+ in test/encode_api_test.cc, vp8/encoder/onyx_if.c.
27+ - CVE-2023-5217
28+ * SECURITY UPDATE: Width mishandling in vp9 encoding
29+ - debian/patches/CVE-2023-44488.patch: fix bug with smaller width
30+ bigger size in test/resize_test.cc, vp9/common/vp9_alloccommon.c,
31+ vp9/encoder/vp9_encoder.c.
32+ - CVE-2023-44488
33+
34+ -- Marc Deslauriers <marc.deslauriers@ubuntu.com> Mon, 02 Oct 2023 06:43:10 -0400
35+
36+libvpx (1.12.0-1ubuntu1) kinetic; urgency=medium
37+
38+ * Merge with Debian unstable (LP: #1987051). Remaining changes:
39+ - d/rules: Disable LTO
40+
41+ -- Simon Chopin <schopin@ubuntu.com> Fri, 19 Aug 2022 10:59:05 +0200
42+
43 libvpx (1.12.0-1) unstable; urgency=medium
44
45 * Team upload
46@@ -34,6 +64,20 @@ libvpx (1.12.0-1) unstable; urgency=medium
47
48 -- Sebastian Ramacher <sramacher@debian.org> Sat, 09 Jul 2022 15:20:25 +0200
49
50+libvpx (1.11.0-2ubuntu2) jammy; urgency=high
51+
52+ * No change rebuild for ppc64el baseline bump.
53+
54+ -- Julian Andres Klode <juliank@ubuntu.com> Thu, 24 Mar 2022 17:21:29 +0100
55+
56+libvpx (1.11.0-2ubuntu1) jammy; urgency=medium
57+
58+ * Merge with Debian, reamining Ubuntu changes:
59+ * debian/rules:
60+ - Disable LTO and fix FTBFS when building with GCC 11.
61+
62+ -- Robert Ancell <robert.ancell@canonical.com> Wed, 17 Nov 2021 10:11:05 +1300
63+
64 libvpx (1.11.0-2) unstable; urgency=medium
65
66 * Team upload
67@@ -79,6 +123,13 @@ libvpx (1.10.0-1) unstable; urgency=medium
68
69 -- Sebastian Ramacher <sramacher@debian.org> Tue, 24 Aug 2021 22:56:11 +0200
70
71+libvpx (1.9.0-1ubuntu1) impish; urgency=medium
72+
73+ * d/rules: Disable LTO and fix FTBFS when building with GCC 11.
74+ (LP: #1939640)
75+
76+ -- Sergio Durigan Junior <sergio.durigan@canonical.com> Wed, 11 Aug 2021 22:25:45 -0400
77+
78 libvpx (1.9.0-1) unstable; urgency=medium
79
80 * Team upload
81diff --git a/debian/control b/debian/control
82index f440b17..aadc121 100644
83--- a/debian/control
84+++ b/debian/control
85@@ -1,7 +1,8 @@
86 Source: libvpx
87 Section: video
88 Priority: optional
89-Maintainer: Debian Multimedia Maintainers <debian-multimedia@lists.debian.org>
90+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
91+XSBC-Original-Maintainer: Debian Multimedia Maintainers <debian-multimedia@lists.debian.org>
92 Uploaders: Sebastian Dröge <slomo@debian.org>,
93 Ondřej Nový <onovy@debian.org>,
94 Sebastian Ramacher <sramacher@debian.org>,
95diff --git a/debian/rules b/debian/rules
96index 1723117..3b6354c 100755
97--- a/debian/rules
98+++ b/debian/rules
99@@ -4,6 +4,9 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
100 export DEB_CFLAGS_MAINT_APPEND = -Wall
101 export DEB_CXXFLAGS_MAINT_APPEND = -Wall
102
103+# The build fails with GCC 11 when using LTO.
104+export DEB_BUILD_MAINT_OPTIONS = optimize=-lto
105+
106 include /usr/share/dpkg/architecture.mk
107
108 configure_flags += \

Subscribers

People subscribed via source and target branches