From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-libav/
Date: Tue, 15 Mar 2022 19:47:43 +0000 (UTC) [thread overview]
Message-ID: <1647373653.b11c0db3e5c71771b390c582e26ddfcd2f4262cd.sam@gentoo> (raw)
commit: b11c0db3e5c71771b390c582e26ddfcd2f4262cd
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Sun Mar 6 20:41:34 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 19:47:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b11c0db3
media-plugins/gst-plugins-libav: Fix ffmpeg-5 compatibility with 1.18.4
Closes: https://bugs.gentoo.org/831604
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
Closes: https://github.com/gentoo/gentoo/pull/24426
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-plugins/gst-plugins-libav/Manifest | 1 +
.../gst-plugins-libav-1.18.4-r1.ebuild | 34 ++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/media-plugins/gst-plugins-libav/Manifest b/media-plugins/gst-plugins-libav/Manifest
index b9e661fe2e54..4bd7ffb7bbc1 100644
--- a/media-plugins/gst-plugins-libav/Manifest
+++ b/media-plugins/gst-plugins-libav/Manifest
@@ -1,3 +1,4 @@
DIST gst-libav-1.16.3.tar.xz 9472760 BLAKE2B 3e98381244d74aa695c737a898711b311518749c6f949af7bd03d08cdf383cbe1a78cea8e3f0268fdb2132bec930803f8fa31e919c6c268b6f8d58092f01fd04 SHA512 37fe621a8d45ac6bf51383a776f3091cc114faaf84b0097e86f33eb4e8c0b70b4cc6fa467aad63daca9b1b24db24c10a067c973ef8232c2965eedeba3d251b0b
DIST gst-libav-1.18.4.tar.xz 281576 BLAKE2B 5ce7b15163a0671744ca6920865b2e3be35ac9209f8b3b0e73202684fe4da2e16abdee2be2d3844170cd688b58b3eadf89b3f3b87b457dc939ae409fe42bc410 SHA512 4eb10af6698f724bbc8d5b7b215e7349e6ff3b52e24b3987ee4077db1ae27ae0d6f25309adc50f0fccdf5af4d617634a7339ad1e5466a737c40a25c52c0d023f
DIST gst-libav-1.20.0.tar.xz 277816 BLAKE2B 7e18e73ceeb67668ff8e327639fca235a261057061017e97064423c2dfe913690f44c935ff6e68d5c754f009cb9ffe76b2a4276c2b139943be71db6f93271999 SHA512 51cedfc3489915507d7640220aafe4f71ef3bbe5e7de9aa18187f211275a29917a893ee0375a89f256bda6c63e5103e1c4614f3e236ffe46e550ce518c9e7109
+DIST gst-plugins-libav-1.18.4_ffmpeg-5.patch.bz2 2454 BLAKE2B 7fd89996181f178b6597f3d445fb7b39b41e72173706b52e1b6aad28d35b54268a8aaeadcafebb002ed8264435cbfb7a0252713fc3f566dc002fdde71d6d6e70 SHA512 8da49c16fa2b4567016a16205b3be5830af2420ad8dfff0811f61237903751119be2a73a0953acdc0682c0c81de197af9196ba2abfc9f46bd2652b41f358db56
diff --git a/media-plugins/gst-plugins-libav/gst-plugins-libav-1.18.4-r1.ebuild b/media-plugins/gst-plugins-libav/gst-plugins-libav-1.18.4-r1.ebuild
new file mode 100644
index 000000000000..c07c905066d9
--- /dev/null
+++ b/media-plugins/gst-plugins-libav/gst-plugins-libav-1.18.4-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit gstreamer-meson
+
+MY_PN="gst-libav"
+MY_PV="$(ver_cut 1-3)"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="FFmpeg based gstreamer plugin"
+HOMEPAGE="https://gstreamer.freedesktop.org/modules/gst-libav.html"
+SRC_URI="https://gstreamer.freedesktop.org/src/${MY_PN}/${MY_P}.tar.xz"
+SRC_URI+=" https://cmpct.info/~sam/gentoo/distfiles/${CATEGORY}/${PN}/${P}_ffmpeg-5.patch.bz2"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="LGPL-2+"
+SLOT="1.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~x86"
+IUSE=""
+
+RDEPEND="
+ >=dev-libs/glib-2.40.0:2[${MULTILIB_USEDEP}]
+ >=media-libs/gstreamer-${MY_PV}:1.0[${MULTILIB_USEDEP}]
+ >=media-libs/gst-plugins-base-${MY_PV}:1.0[${MULTILIB_USEDEP}]
+ >=media-video/ffmpeg-4:0=[${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+ "${FILESDIR}/gst-plugins-libav-1.18.4_ffmpeg-4.4.patch"
+ "${WORKDIR}/${P}_ffmpeg-5.patch"
+)
next reply other threads:[~2022-03-15 21:04 UTC|newest]
Thread overview: 121+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-15 19:47 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-08 10:31 [gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-libav/ Arthur Zamarin
2025-02-08 10:28 Arthur Zamarin
2025-02-07 16:18 Arthur Zamarin
2025-01-15 19:54 Mart Raudsepp
2024-04-22 8:19 Arthur Zamarin
2024-04-19 14:23 Arthur Zamarin
2024-04-15 5:01 Arthur Zamarin
2024-04-01 19:55 Mart Raudsepp
2023-08-21 6:31 Arthur Zamarin
2023-07-25 18:07 Arthur Zamarin
2022-12-13 18:26 Arthur Zamarin
2022-11-24 12:12 WANG Xuerui
2022-11-02 5:50 WANG Xuerui
2022-09-16 8:53 Arthur Zamarin
2022-05-25 15:47 Jakov Smolić
2022-04-01 9:55 Sam James
2022-04-01 6:53 Arthur Zamarin
2022-03-15 19:48 Sam James
2021-09-16 18:55 Sam James
2021-09-16 1:46 Sam James
2021-08-10 13:36 Marek Szuba
2021-02-18 8:47 Sam James
2021-02-17 13:53 Sam James
2021-02-15 4:03 Sam James
2021-02-14 2:09 Sam James
2021-02-13 21:41 Mart Raudsepp
2020-09-14 19:31 Michał Górny
2020-08-08 3:23 Sam James
2020-06-21 21:59 Mart Raudsepp
2020-05-07 12:52 Mart Raudsepp
2020-05-03 19:12 Mart Raudsepp
2020-05-03 19:12 Mart Raudsepp
2019-10-13 17:50 Mart Raudsepp
2019-10-13 17:46 Matt Turner
2019-10-13 17:46 Matt Turner
2019-10-12 23:50 Matt Turner
2019-09-26 20:00 Mikle Kolyada
2019-07-28 13:53 Mikle Kolyada
2019-07-08 12:10 Thomas Deutschmann
2019-05-21 17:37 Aaron Bauman
2019-05-21 6:35 Aaron Bauman
2019-04-04 11:50 Mart Raudsepp
2019-04-04 11:50 Mart Raudsepp
2019-03-30 14:23 Mart Raudsepp
2019-02-19 13:24 Alexis Ballier
2019-02-05 23:18 Mart Raudsepp
2019-01-25 2:38 Matt Turner
2019-01-15 23:38 Mart Raudsepp
2019-01-09 6:40 Matt Turner
2018-12-23 3:25 Matt Turner
2018-11-24 16:00 Mart Raudsepp
2018-11-23 9:49 Mart Raudsepp
2018-11-23 9:49 Mart Raudsepp
2018-11-23 9:49 Mart Raudsepp
2018-11-06 21:38 Mart Raudsepp
2018-09-21 5:32 Mart Raudsepp
2018-09-19 8:42 Sergei Trofimovich
2018-09-17 22:54 Matt Turner
2018-08-22 5:12 Markus Meier
2018-07-31 8:46 Mart Raudsepp
2018-07-21 16:57 Tobias Klausmann
2018-07-16 13:49 Mikle Kolyada
2018-07-15 23:13 Mart Raudsepp
2018-06-16 18:27 Mart Raudsepp
2018-05-25 4:24 Matt Turner
2018-04-01 15:51 Tobias Klausmann
2018-03-28 19:24 Markus Meier
2018-03-18 19:36 Sergei Trofimovich
2018-03-17 17:44 Mikle Kolyada
2018-02-14 22:06 Mart Raudsepp
2018-02-14 22:06 Mart Raudsepp
2017-12-25 11:51 Markus Meier
2017-12-16 14:19 Mart Raudsepp
2017-11-11 21:49 Thomas Deutschmann
2017-11-08 20:50 Tobias Klausmann
2017-11-07 8:06 Sergei Trofimovich
2017-11-01 9:19 Sergei Trofimovich
2017-10-09 22:48 Thomas Deutschmann
2017-10-02 1:35 NP Hardass
2017-09-18 21:42 Mart Raudsepp
2017-09-18 21:42 Mart Raudsepp
2017-09-16 20:50 Mart Raudsepp
2017-09-02 4:29 Mart Raudsepp
2017-07-20 4:40 Markus Meier
2017-07-08 16:08 Sergei Trofimovich
2017-06-28 9:35 Alexis Ballier
2017-06-18 8:31 Mart Raudsepp
2017-06-10 20:14 Sergei Trofimovich
2017-04-05 14:07 Tobias Klausmann
2017-03-14 23:07 Michael Weber
2017-03-08 5:13 Jeroen Roovers
2017-02-28 17:33 Markus Meier
2017-02-25 9:58 Agostino Sarubbo
2017-02-25 9:57 Agostino Sarubbo
2017-02-25 8:22 Markus Meier
2017-02-24 19:51 Mart Raudsepp
2017-02-24 17:47 Markus Meier
2017-02-24 13:51 Agostino Sarubbo
2017-02-19 12:00 Jeroen Roovers
2017-01-22 18:03 Agostino Sarubbo
2017-01-22 17:45 Agostino Sarubbo
2016-12-06 21:34 Markus Meier
2016-09-26 10:10 Tobias Klausmann
2016-09-23 15:41 Tobias Klausmann
2016-07-09 15:09 Pacho Ramos
2016-06-11 11:30 Pacho Ramos
2016-05-03 20:47 Markus Meier
2016-03-06 19:39 Mikle Kolyada
2016-01-31 18:34 Pacho Ramos
2016-01-31 16:04 Gilles Dartiguelongue
2015-12-29 13:32 Pacho Ramos
2015-12-26 18:21 Gilles Dartiguelongue
2015-11-08 19:27 Gilles Dartiguelongue
2015-10-25 23:36 Gilles Dartiguelongue
2015-10-18 11:29 Mikle Kolyada
2015-10-03 8:49 Markus Meier
2015-09-28 4:44 Jeroen Roovers
2015-09-20 6:11 Jeroen Roovers
2015-09-16 8:43 Tobias Klausmann
2015-09-07 21:55 Mikle Kolyada
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=1647373653.b11c0db3e5c71771b390c582e26ddfcd2f4262cd.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox