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-libs/libv4l/
Date: Sat, 02 Apr 2022 13:55:40
Message-Id: 1648907688.0cf711fd910d618b0fbbc40a082702f37d049291.chewi@gentoo
1 commit: 0cf711fd910d618b0fbbc40a082702f37d049291
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 2 13:54:48 2022 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 2 13:54:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cf711fd
7
8 media-libs/libv4l: Drop old 1.20.0
9
10 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
11
12 media-libs/libv4l/Manifest | 1 -
13 media-libs/libv4l/libv4l-1.20.0.ebuild | 78 ----------------------------------
14 2 files changed, 79 deletions(-)
15
16 diff --git a/media-libs/libv4l/Manifest b/media-libs/libv4l/Manifest
17 index b7cae8ef2396..eaca215a25f2 100644
18 --- a/media-libs/libv4l/Manifest
19 +++ b/media-libs/libv4l/Manifest
20 @@ -1,2 +1 @@
21 -DIST v4l-utils-1.20.0.tar.bz2 2030419 BLAKE2B 218082b88c42dcb9da3dbdd81b184c0e7402ca7ba35678a2905e16c11db1fe7065a19ec84b5fd57e2ed4718965c3e8097f8e8bdd04a38a485716efe3ec62e42a SHA512 179ca8dbbf7af5fa4870b70f17645d7834fe6ba52670ae6b58473efa257db0cd812ce14f16574cc4491c0bcb218835e4c29f1354882a151687eecec97852fc63
22 DIST v4l-utils-1.22.1.tar.bz2 2086238 BLAKE2B a3f01a17ea7c8925c74dd883d30b42f54b7926d253dac79e4cadaba43abc33672804257b3b92e5aa640ead6b5aaaa2458f05e21642044d7dea77e5580a8dbe9a SHA512 8a634d8995d13f453dfaf90ca5d0dfb26f2f4b10a0d200d76a949c46f77040d12fc0a5b35e05d7b1ba68bcfc85a445be5a5ab1d4a7d4eabfe3a254038ccc6170
23
24 diff --git a/media-libs/libv4l/libv4l-1.20.0.ebuild b/media-libs/libv4l/libv4l-1.20.0.ebuild
25 deleted file mode 100644
26 index 653db36f66ce..000000000000
27 --- a/media-libs/libv4l/libv4l-1.20.0.ebuild
28 +++ /dev/null
29 @@ -1,78 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit autotools linux-info multilib-minimal
36 -
37 -MY_P="v4l-utils-${PV}"
38 -
39 -DESCRIPTION="Separate libraries ebuild from upstream v4l-utils package"
40 -HOMEPAGE="https://git.linuxtv.org/v4l-utils.git"
41 -SRC_URI="https://linuxtv.org/downloads/v4l-utils/${MY_P}.tar.bz2"
42 -
43 -LICENSE="LGPL-2.1+"
44 -SLOT="0/0"
45 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
46 -IUSE="dvb jpeg"
47 -
48 -RDEPEND="
49 - dvb? ( virtual/libudev[${MULTILIB_USEDEP}] )
50 - !elibc_glibc? ( sys-libs/argp-standalone )
51 - jpeg? ( >=virtual/jpeg-0-r2:0=[${MULTILIB_USEDEP}] )
52 - !media-tv/v4l2-ctl
53 - !<media-tv/ivtv-utils-1.4.0-r2
54 -"
55 -
56 -DEPEND="
57 - ${RDEPEND}
58 -"
59 -
60 -BDEPEND="
61 - sys-devel/gettext
62 - virtual/pkgconfig
63 -"
64 -
65 -S="${WORKDIR}/${MY_P}"
66 -
67 -PATCHES=(
68 - "${FILESDIR}"/${P}-automagic.patch
69 -)
70 -
71 -pkg_setup() {
72 - CONFIG_CHECK="~SHMEM"
73 - linux-info_pkg_setup
74 -}
75 -
76 -src_prepare() {
77 - default
78 - eautoreconf
79 -}
80 -
81 -multilib_src_configure() {
82 - # Hard disable the flags that apply only to the utils.
83 - ECONF_SOURCE=${S} \
84 - econf \
85 - --disable-static \
86 - $(use_enable dvb libdvbv5) \
87 - --disable-qv4l2 \
88 - --disable-qvidcap \
89 - --disable-v4l-utils \
90 - $(use_with jpeg) \
91 - $(use_with dvb libudev)
92 -}
93 -
94 -multilib_src_compile() {
95 - emake -C lib
96 -}
97 -
98 -multilib_src_install() {
99 - emake -j1 -C lib DESTDIR="${D}" install
100 -}
101 -
102 -multilib_src_install_all() {
103 - dodoc ChangeLog README.lib* TODO
104 -
105 - # no static archives
106 - find "${D}" -name '*.la' -delete || die
107 -}