Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/dtv-scan-tables/
Date: Tue, 06 Jul 2021 21:22:22
Message-Id: 1625606524.62556ce989e0770378874e01d5986aa545d77e9e.chewi@gentoo
1 commit: 62556ce989e0770378874e01d5986aa545d77e9e
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 6 21:22:04 2021 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 6 21:22:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62556ce9
7
8 media-tv/dtv-scan-tables: Bump to 20210430 snapshot
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
12
13 media-tv/dtv-scan-tables/Manifest | 1 +
14 .../dtv-scan-tables-0_p20210430.ebuild | 32 ++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/media-tv/dtv-scan-tables/Manifest b/media-tv/dtv-scan-tables/Manifest
18 index f2344e5f834..5da33c88c82 100644
19 --- a/media-tv/dtv-scan-tables/Manifest
20 +++ b/media-tv/dtv-scan-tables/Manifest
21 @@ -1,2 +1,3 @@
22 DIST dtv-scan-tables-2017-10-03-c1986d5148d8.tar.bz2 168709 BLAKE2B fb4a7ad5b6892a7e7eed1d57ebb49b1f4493076f6f744953d2d5c51c0e1cf7fdaf864ad050c578c2697f5b11d72c245b96ee369522cb58d38a1a2cef035099a7 SHA512 e2b0cf8f52b536be6a532b4a2896421a8150fdc19613e92c92d0c8275fcfd306cb091db32fa26f97bbec0a51ef4ba61b5f98e8c974280a3f6dd36b67a3bf4aad
23 DIST dtv-scan-tables-2019-09-22-f07bde777d4d.tar.bz2 270211 BLAKE2B 76d5250a8eb7e9ce5c83eb9486ea1b398f3565ed027863057f143ae15c196fa01489f17fa71082ac878f49dac653da8967673872cb3e298f99cd59376c82ee39 SHA512 806fadcfc767d09dc9b474af089c2fa68ccafd91e110b74dc47f3a2ea90ebb74f80633831a20a51578fce3fbd4556a23c6bca9f7139be7c3de8eff79d2ee321c
24 +DIST dtv-scan-tables-2021-04-30-4181e93a30ab.tar.bz2 272870 BLAKE2B b9672235ad2ed826205278ffd06ed793126f743fe2b0b8af4369c1cb24825662e579f9246a287df1d61efad7985e2e18d59097d359fe84626149464bfc253bc5 SHA512 c15c07937cabefad731f4b3f8b6e9f993e500f7c59b17ef5e5c46f9bb86f9cbdf748f7d875c363c641ed9f3333a03b5033cc7d0272e96323d36be944ea35379d
25
26 diff --git a/media-tv/dtv-scan-tables/dtv-scan-tables-0_p20210430.ebuild b/media-tv/dtv-scan-tables/dtv-scan-tables-0_p20210430.ebuild
27 new file mode 100644
28 index 00000000000..55e947d46ec
29 --- /dev/null
30 +++ b/media-tv/dtv-scan-tables/dtv-scan-tables-0_p20210430.ebuild
31 @@ -0,0 +1,32 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +if [[ ${PV#9999} != ${PV} ]]; then
38 + inherit git-r3
39 + EGIT_REPO_URI="https://git.linuxtv.org/dtv-scan-tables.git"
40 +else
41 + COMMIT="4181e93a30ab"
42 + SRC_URI="https://linuxtv.org/downloads/dtv-scan-tables/dtv-scan-tables-${PV:3:4}-${PV:7:2}-${PV:9:2}-${COMMIT}.tar.bz2"
43 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
44 + S="${WORKDIR}/usr/share/dvb"
45 +fi
46 +
47 +DESCRIPTION="Digital TV scan tables in v3 and v5 format"
48 +HOMEPAGE="https://linuxtv.org/"
49 +LICENSE="GPL-2 LGPL-2.1"
50 +SLOT="0"
51 +
52 +BDEPEND=">=media-tv/v4l-utils-1.4[dvb(+)]"
53 +
54 +DOCS=( README )
55 +
56 +src_compile() {
57 + emake dvbv3 dvbv5
58 +}
59 +
60 +src_install() {
61 + emake PREFIX="${ED}/usr" install install_v3
62 + einstalldocs
63 +}