Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/ffmpegsource/
Date: Mon, 29 Aug 2022 07:22:21
Message-Id: 1661757720.0e492d6522470f5e7d30beec99f5e16e5ad6ecb8.juippis@gentoo
1 commit: 0e492d6522470f5e7d30beec99f5e16e5ad6ecb8
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 29 07:15:58 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 07:22:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e492d65
7
8 media-libs/ffmpegsource: drop 2.23
9
10 Bug: https://bugs.gentoo.org/867139
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 media-libs/ffmpegsource/Manifest | 1 -
14 media-libs/ffmpegsource/ffmpegsource-2.23.ebuild | 46 ------------------------
15 2 files changed, 47 deletions(-)
16
17 diff --git a/media-libs/ffmpegsource/Manifest b/media-libs/ffmpegsource/Manifest
18 index e72577602b7a..58f673a2e731 100644
19 --- a/media-libs/ffmpegsource/Manifest
20 +++ b/media-libs/ffmpegsource/Manifest
21 @@ -1,2 +1 @@
22 -DIST ffmpegsource-2.23.tar.gz 488940 BLAKE2B 0e565a02606a73ea0b6ee7bce64fcaea825a2beb473127b4d9c768981519e92cf29bd792b1524369fb44344ce63cb0777adb672f6ee1ec5eae35d92ed549748e SHA512 dbbc3c53062f9b66beeea57b57250abbc331807aad9300966ace4ddd3603273c6345e20d105b668cd852442b494e047ade8b8b1d8340c464ca748f6b11a5292c
23 DIST ffmpegsource-2.40.tar.gz 140356 BLAKE2B 57fbc3d979f31108b257b6720045f4e157fca6714bf0f8601e8123c0026a14bb55d343549ff6b246b55a44b4f69c541c58f4b19f1051e338f1f97b2b7557b6de SHA512 407c4b0871f5046b9d364c2946eae88c46eec381b5748530d82918742fd4a36849de590024f8235af2785bd631c0299e591499dc43ae157ff2c6a6f2dab78b67
24
25 diff --git a/media-libs/ffmpegsource/ffmpegsource-2.23.ebuild b/media-libs/ffmpegsource/ffmpegsource-2.23.ebuild
26 deleted file mode 100644
27 index 4356ad9fb866..000000000000
28 --- a/media-libs/ffmpegsource/ffmpegsource-2.23.ebuild
29 +++ /dev/null
30 @@ -1,46 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit autotools flag-o-matic vcs-snapshot
37 -
38 -DESCRIPTION="A libav/ffmpeg based source library for easy frame accurate access"
39 -HOMEPAGE="https://github.com/FFMS/ffms2"
40 -SRC_URI="https://github.com/FFMS/ffms2/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0/4"
44 -KEYWORDS="amd64 x86"
45 -
46 -RDEPEND="
47 - sys-libs/zlib
48 - >=media-video/ffmpeg-2.4:0=
49 -"
50 -DEPEND="${RDEPEND}
51 - virtual/pkgconfig
52 -"
53 -
54 -ffms_check_compiler() {
55 - if [[ ${MERGE_TYPE} != "binary" ]] && ! test-flag-CXX -std=c++11; then
56 - die "Your compiler lacks C++11 support. Use GCC>=4.7.0 or Clang>=3.3."
57 - fi
58 -}
59 -
60 -pkg_pretend() {
61 - ffms_check_compiler
62 -}
63 -
64 -pkg_setup() {
65 - ffms_check_compiler
66 -}
67 -
68 -src_prepare() {
69 - default_src_prepare
70 - eautoreconf
71 -}
72 -
73 -src_install() {
74 - default_src_install
75 - find "${ED}" -name '*.la' -delete || die
76 -}