Gentoo Archives: gentoo-commits

From: John Helmert III <ajak@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mediainfo/
Date: Tue, 16 Aug 2022 21:21:04
Message-Id: 1660684714.7ee603b147399d045f2f7c55fe1e16a83fcb78d1.ajak@gentoo
1 commit: 7ee603b147399d045f2f7c55fe1e16a83fcb78d1
2 Author: John Helmert III <ajak <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 16 21:18:34 2022 +0000
4 Commit: John Helmert III <ajak <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 16 21:18:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ee603b1
7
8 media-video/mediainfo: drop 20.09, 20.09-r1
9
10 Bug: https://bugs.gentoo.org/778992
11 Signed-off-by: John Helmert III <ajak <AT> gentoo.org>
12
13 media-video/mediainfo/Manifest | 1 -
14 media-video/mediainfo/mediainfo-20.09-r1.ebuild | 82 -------------------------
15 media-video/mediainfo/mediainfo-20.09.ebuild | 81 ------------------------
16 3 files changed, 164 deletions(-)
17
18 diff --git a/media-video/mediainfo/Manifest b/media-video/mediainfo/Manifest
19 index 9cea8804ec20..77ec6ca7f101 100644
20 --- a/media-video/mediainfo/Manifest
21 +++ b/media-video/mediainfo/Manifest
22 @@ -1,3 +1,2 @@
23 -DIST mediainfo_20.09.tar.xz 1984148 BLAKE2B 6926d9ce787b9f9e5c07fe0ddf98e186139ea25c7ab6b3573dc1732850a7f98aeefdeca2157fdcad83d652332705028df12a1cf1e6377f9c1e23b7865578cfd8 SHA512 b6c8bf661585fa6b8e82c7f4bafacae8505078c5c57bc1c703ed16ac237dad0829569dd33fdaaadccd394bdd93088d9b71e5ad2c2294f75aa641004ec91feca9
24 DIST mediainfo_21.09.tar.xz 1992000 BLAKE2B 8deb996c84ededd390a4fb91f77a4dd0ba60f3a165aefde2fe862720a7a3158888ba56f911533c347703e0a722f05b94edc5f649edef26031b519fc7bd4012cd SHA512 81545c936ec5f17f94246b2cd5343afd105d0b0791f151689fbecdb084778dd4e84da79f47529f16b8383542894819af995ec608588fc6d9f45e9be38a4304db
25 DIST mediainfo_22.03.tar.xz 2005340 BLAKE2B 232f077a1e202271de8c0d07f1f2a27efac38c998cb5b7f465bf5e8e44c24d6dad9fcafc1a6d981863c13822bd8cbe921b4a06adf3b1f3ac7c8690de4026b597 SHA512 981c9fe410cf6fff1a87ecfe250216977e036e8606034621c18bbf66cc75261c2e0f411bbbf298a409b5b306f7f7ee993a1e24e70040cf48a7728550ef7d830b
26
27 diff --git a/media-video/mediainfo/mediainfo-20.09-r1.ebuild b/media-video/mediainfo/mediainfo-20.09-r1.ebuild
28 deleted file mode 100644
29 index cb4768702f87..000000000000
30 --- a/media-video/mediainfo/mediainfo-20.09-r1.ebuild
31 +++ /dev/null
32 @@ -1,82 +0,0 @@
33 -# Copyright 1999-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -WX_GTK_VER="3.0-gtk3"
39 -inherit xdg-utils autotools wxwidgets
40 -
41 -DESCRIPTION="MediaInfo supplies technical and tag information about media files"
42 -HOMEPAGE="https://mediaarea.net/mediainfo/ https://github.com/MediaArea/MediaInfo"
43 -SRC_URI="https://mediaarea.net/download/source/${PN}/${PV}/${P/-/_}.tar.xz"
44 -
45 -LICENSE="BSD-2"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86"
48 -IUSE="curl mms wxwidgets"
49 -
50 -RDEPEND="
51 - ~media-libs/libmediainfo-${PV}[curl=,mms=]
52 - >=media-libs/libzen-0.4.37
53 - sys-libs/zlib
54 - wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )
55 -"
56 -DEPEND="${RDEPEND}"
57 -BDEPEND="virtual/pkgconfig"
58 -
59 -S="${WORKDIR}/MediaInfo"
60 -
61 -pkg_setup() {
62 - TARGETS="CLI"
63 - if use wxwidgets; then
64 - TARGETS+=" GUI"
65 - setup-wxwidgets
66 - fi
67 -}
68 -
69 -src_prepare() {
70 - default
71 -
72 - local target
73 - for target in ${TARGETS}; do
74 - cd "${S}"/Project/GNU/${target} || die
75 - sed -i -e "s:-O2::" configure.ac || die
76 - eautoreconf
77 - done
78 -}
79 -
80 -src_configure() {
81 - local target
82 - for target in ${TARGETS}; do
83 - cd "${S}"/Project/GNU/${target} || die
84 - local args=""
85 - [[ ${target} == "GUI" ]] && args="--with-wxwidgets --with-wx-gui"
86 - econf ${args}
87 - done
88 -}
89 -
90 -src_compile() {
91 - local target
92 - for target in ${TARGETS}; do
93 - cd "${S}"/Project/GNU/${target} || die
94 - default
95 - done
96 -}
97 -src_install() {
98 - local target
99 - for target in ${TARGETS}; do
100 - cd "${S}"/Project/GNU/${target} || die
101 - default
102 - dodoc "${S}"/History_${target}.txt
103 - done
104 -}
105 -
106 -pkg_postinst() {
107 - xdg_icon_cache_update
108 - xdg_desktop_database_update
109 -}
110 -
111 -pkg_postrm() {
112 - xdg_icon_cache_update
113 - xdg_desktop_database_update
114 -}
115
116 diff --git a/media-video/mediainfo/mediainfo-20.09.ebuild b/media-video/mediainfo/mediainfo-20.09.ebuild
117 deleted file mode 100644
118 index be6db587456b..000000000000
119 --- a/media-video/mediainfo/mediainfo-20.09.ebuild
120 +++ /dev/null
121 @@ -1,81 +0,0 @@
122 -# Copyright 1999-2021 Gentoo Authors
123 -# Distributed under the terms of the GNU General Public License v2
124 -
125 -EAPI=7
126 -
127 -WX_GTK_VER="3.0"
128 -inherit xdg-utils autotools wxwidgets
129 -
130 -DESCRIPTION="MediaInfo supplies technical and tag information about media files"
131 -HOMEPAGE="https://mediaarea.net/mediainfo/ https://github.com/MediaArea/MediaInfo"
132 -SRC_URI="https://mediaarea.net/download/source/${PN}/${PV}/${P/-/_}.tar.xz"
133 -
134 -LICENSE="BSD-2"
135 -SLOT="0"
136 -KEYWORDS="amd64 x86"
137 -IUSE="curl mms wxwidgets"
138 -
139 -RDEPEND="
140 - ~media-libs/libmediainfo-${PV}[curl=,mms=]
141 - >=media-libs/libzen-0.4.37
142 - sys-libs/zlib
143 - wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )"
144 -DEPEND="${RDEPEND}"
145 -BDEPEND="virtual/pkgconfig"
146 -
147 -S=${WORKDIR}/MediaInfo
148 -
149 -pkg_setup() {
150 - TARGETS="CLI"
151 - if use wxwidgets; then
152 - TARGETS+=" GUI"
153 - setup-wxwidgets
154 - fi
155 -}
156 -
157 -src_prepare() {
158 - default
159 -
160 - local target
161 - for target in ${TARGETS}; do
162 - cd "${S}"/Project/GNU/${target} || die
163 - sed -i -e "s:-O2::" configure.ac || die
164 - eautoreconf
165 - done
166 -}
167 -
168 -src_configure() {
169 - local target
170 - for target in ${TARGETS}; do
171 - cd "${S}"/Project/GNU/${target} || die
172 - local args=""
173 - [[ ${target} == "GUI" ]] && args="--with-wxwidgets --with-wx-gui"
174 - econf ${args}
175 - done
176 -}
177 -
178 -src_compile() {
179 - local target
180 - for target in ${TARGETS}; do
181 - cd "${S}"/Project/GNU/${target} || die
182 - default
183 - done
184 -}
185 -src_install() {
186 - local target
187 - for target in ${TARGETS}; do
188 - cd "${S}"/Project/GNU/${target} || die
189 - default
190 - dodoc "${S}"/History_${target}.txt
191 - done
192 -}
193 -
194 -pkg_postinst() {
195 - xdg_icon_cache_update
196 - xdg_desktop_database_update
197 -}
198 -
199 -pkg_postrm() {
200 - xdg_icon_cache_update
201 - xdg_desktop_database_update
202 -}