Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libdvbpsi/
Date: Sat, 26 May 2018 21:46:27
Message-Id: 1527371161.733cdb192906d1c2d40ce77ff15ec6d97e735afe.asturm@gentoo
1 commit: 733cdb192906d1c2d40ce77ff15ec6d97e735afe
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 26 21:45:02 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat May 26 21:46:01 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=733cdb19
7
8 media-libs/libdvbpsi: Drop 1.3.0-r1
9
10 Package-Manager: Portage-2.3.38, Repoman-2.3.9
11
12 media-libs/libdvbpsi/Manifest | 1 -
13 media-libs/libdvbpsi/libdvbpsi-1.3.0-r1.ebuild | 44 --------------------------
14 2 files changed, 45 deletions(-)
15
16 diff --git a/media-libs/libdvbpsi/Manifest b/media-libs/libdvbpsi/Manifest
17 index 4b83429bceb..f8eb1255bac 100644
18 --- a/media-libs/libdvbpsi/Manifest
19 +++ b/media-libs/libdvbpsi/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST libdvbpsi-1.3.0.tar.bz2 459083 BLAKE2B 50e8e1780ddaf9a07bd8121d1e179464a6105eaad3d0aa162f9b217863cfc63168a84f60be9de071cf5ee8389a671fcd1375629d452ed77727bb3eaed19a7b19 SHA512 59f097a1032e8cf461210128c7468da4204f077a61f68f2be3310e60004774157335cd7cba82271fcc89b7b6b17a12a06b6214357227ec9976281d9b50565c54
22 DIST libdvbpsi-1.3.1.tar.bz2 479964 BLAKE2B a29522d39544d90b34915e2ca9fc9ca455a556097c63639d7604679275b57378822adfb4c022478884c897cdde2c0e5f84355fdecf35fd6bb305d1fc275eed8b SHA512 015d586d1ef1fd35fc4b6a5b79d1ce4570e07070840d7070938c38be64853fb987172ad225f000156166559709061de6f901237bfc0f7f26f219b5950b57c27a
23 DIST libdvbpsi-1.3.2.tar.bz2 487807 BLAKE2B ea8d1e121e47d2257d8537beac792e3a420ac957dbf3ec6d89f0c4d063e249616bbc8f3e14ed37769b676ed18d5d4c3c6a33e2a706217854eb2ded91e7c503db SHA512 cb59c2e66a214cad7bb96aa1f80a178399fcd80da9fc05b22c72763f2cd818bfab3724d36eee4c6467fb8bc8bae18b1d8afec64c02e8e47cd7a6e887f0230309
24
25 diff --git a/media-libs/libdvbpsi/libdvbpsi-1.3.0-r1.ebuild b/media-libs/libdvbpsi/libdvbpsi-1.3.0-r1.ebuild
26 deleted file mode 100644
27 index bfe3dc8a5cb..00000000000
28 --- a/media-libs/libdvbpsi/libdvbpsi-1.3.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,44 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -DESCRIPTION="library for MPEG TS/DVB PSI tables decoding and generation"
37 -HOMEPAGE="https://www.videolan.org/libdvbpsi"
38 -SRC_URI="https://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2"
39 -
40 -LICENSE="LGPL-2.1"
41 -# Sublot == libdvbpsi.so major
42 -SLOT="0/10"
43 -KEYWORDS="alpha amd64 arm ~arm64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
44 -IUSE="doc static-libs"
45 -
46 -RDEPEND=""
47 -DEPEND="
48 - doc? (
49 - app-doc/doxygen
50 - >=media-gfx/graphviz-2.26
51 - )" # Require recent enough graphviz wrt #181147
52 -
53 -DOCS=( AUTHORS ChangeLog NEWS README )
54 -
55 -src_prepare() {
56 - sed -e '/CFLAGS/s:-O2::' -e '/CFLAGS/s:-O6::' -e '/CFLAGS/s:-Werror::' -i configure || die
57 -}
58 -
59 -src_configure() {
60 - econf \
61 - $(use_enable static-libs static) \
62 - --enable-release
63 -}
64 -
65 -src_compile() {
66 - emake
67 - use doc && emake doc
68 -}
69 -
70 -src_install() {
71 - default
72 - use doc && dohtml doc/doxygen/html/*
73 - rm -f "${ED}"usr/lib*/${PN}.la
74 -}