Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libltc/
Date: Tue, 06 Sep 2022 04:24:33
Message-Id: 1662438265.95095b102be082c99e4c6ed615a33710c57c7554.fordfrog@gentoo
1 commit: 95095b102be082c99e4c6ed615a33710c57c7554
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 6 04:24:25 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 6 04:24:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95095b10
7
8 media-libs/libltc: bump to 1.3.2
9
10 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
11
12 media-libs/libltc/Manifest | 1 +
13 media-libs/libltc/libltc-1.3.2.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/media-libs/libltc/Manifest b/media-libs/libltc/Manifest
17 index 97ae3d630a04..1daead03a70e 100644
18 --- a/media-libs/libltc/Manifest
19 +++ b/media-libs/libltc/Manifest
20 @@ -1 +1,2 @@
21 DIST libltc-1.3.1.tar.gz 440790 BLAKE2B 881a237a23e6f4a9d058d69b26cad78c96a9dc0f90bb5b5ffc2d08f4b894d039b57e53cb70844d89b0defa5795d252e3afef07d43bfd4dc8b10a34066b6c1efe SHA512 e4ba96560f04155d022d2c975fa36d4bb77efb9a877344041e1bd12bd5e7d04dccb452f3a4e061aba961bd0c3c0d1d53dc98ac469e04e61a934feeedc20e09b3
22 +DIST libltc-1.3.2.tar.gz 449921 BLAKE2B 8a6b3452245f72e918b4a105854d751ca66780ce4627aca54bb0d1342c5a1e77e614103da15037f71b89d44c62b35230a6240e42af287c442e6049c2ad9c85a6 SHA512 3b29b7da1ad9f85c62068b927abec9b3963a77558b46b3ee7681f360642570935becedcf95436574a8a7b456c7e0b414131571d71c6903139f9e7565968278a6
23
24 diff --git a/media-libs/libltc/libltc-1.3.2.ebuild b/media-libs/libltc/libltc-1.3.2.ebuild
25 new file mode 100644
26 index 000000000000..a713d30f5e04
27 --- /dev/null
28 +++ b/media-libs/libltc/libltc-1.3.2.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DESCRIPTION="Linear/Logitudinal Time Code (LTC) Library"
36 +HOMEPAGE="https://github.com/x42/libltc.git"
37 +if [[ ${PV} == *9999 ]]; then
38 + inherit git-r3 autotools
39 + EGIT_REPO_URI="https://github.com/x42/libltc.git"
40 +else
41 + SRC_URI="https://github.com/x42/libltc/releases/download/v${PV}/${P}.tar.gz"
42 + KEYWORDS="~amd64"
43 +fi
44 +LICENSE="LGPL-3"
45 +SLOT="0"
46 +RESTRICT="mirror"
47 +
48 +src_prepare() {
49 + default
50 +
51 + [[ ${PV} == *9999 ]] && eautoreconf
52 +}
53 +
54 +src_install() {
55 + default
56 + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
57 +}