From: "James Le Cuirot" <chewi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/v4l-utils/
Date: Sat, 2 Apr 2022 13:55:35 +0000 (UTC) [thread overview]
Message-ID: <1648907620.cb1a0753a132eabe58242eb9acefc3a7ab57642c.chewi@gentoo> (raw)
commit: cb1a0753a132eabe58242eb9acefc3a7ab57642c
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 2 13:53:40 2022 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Apr 2 13:53:40 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb1a0753
media-tv/v4l-utils: Drop old 1.20.0
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
media-tv/v4l-utils/Manifest | 1 -
media-tv/v4l-utils/v4l-utils-1.20.0.ebuild | 116 -----------------------------
2 files changed, 117 deletions(-)
diff --git a/media-tv/v4l-utils/Manifest b/media-tv/v4l-utils/Manifest
index b7cae8ef2396..eaca215a25f2 100644
--- a/media-tv/v4l-utils/Manifest
+++ b/media-tv/v4l-utils/Manifest
@@ -1,2 +1 @@
-DIST v4l-utils-1.20.0.tar.bz2 2030419 BLAKE2B 218082b88c42dcb9da3dbdd81b184c0e7402ca7ba35678a2905e16c11db1fe7065a19ec84b5fd57e2ed4718965c3e8097f8e8bdd04a38a485716efe3ec62e42a SHA512 179ca8dbbf7af5fa4870b70f17645d7834fe6ba52670ae6b58473efa257db0cd812ce14f16574cc4491c0bcb218835e4c29f1354882a151687eecec97852fc63
DIST v4l-utils-1.22.1.tar.bz2 2086238 BLAKE2B a3f01a17ea7c8925c74dd883d30b42f54b7926d253dac79e4cadaba43abc33672804257b3b92e5aa640ead6b5aaaa2458f05e21642044d7dea77e5580a8dbe9a SHA512 8a634d8995d13f453dfaf90ca5d0dfb26f2f4b10a0d200d76a949c46f77040d12fc0a5b35e05d7b1ba68bcfc85a445be5a5ab1d4a7d4eabfe3a254038ccc6170
diff --git a/media-tv/v4l-utils/v4l-utils-1.20.0.ebuild b/media-tv/v4l-utils/v4l-utils-1.20.0.ebuild
deleted file mode 100644
index d10a82913bc4..000000000000
--- a/media-tv/v4l-utils/v4l-utils-1.20.0.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools flag-o-matic udev xdg
-
-DESCRIPTION="Separate utilities ebuild from upstream v4l-utils package"
-HOMEPAGE="https://git.linuxtv.org/v4l-utils.git"
-SRC_URI="https://linuxtv.org/downloads/v4l-utils/${P}.tar.bz2"
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ppc ~ppc64 ~sparc x86"
-IUSE="+bpf dvb opengl qt5 +udev"
-
-RDEPEND="
- >=media-libs/libv4l-${PV}[dvb?,jpeg]
- >=virtual/jpeg-0-r2:0=
- bpf? ( virtual/libelf:= )
- udev? ( virtual/libudev )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- opengl? ( dev-qt/qtopengl:5[-gles2(-)] virtual/opengl )
- media-libs/alsa-lib
- )
- !media-tv/v4l2-ctl
- !<media-tv/ivtv-utils-1.4.0-r2
-"
-
-DEPEND="
- ${RDEPEND}
-"
-
-BDEPEND="
- sys-devel/gettext
- virtual/pkgconfig
- bpf? ( sys-devel/clang:*[llvm_targets_BPF] )
-"
-
-PATCHES=(
- "${FILESDIR}"/${P}-automagic.patch
-)
-
-# Not really prebuilt but BPF objects make our QA checks go crazy.
-QA_PREBUILT="*/rc_keymaps/protocols/*.o"
-
-check_llvm() {
- if [[ ${MERGE_TYPE} != binary ]] && use bpf; then
- local clang=${ac_cv_prog_CLANG:-${CLANG:-clang}}
- ${clang} -target bpf -print-supported-cpus &>/dev/null ||
- die "${clang} does not support the BPF target. Please check LLVM_TARGETS."
- fi
-}
-
-pkg_pretend() {
- has_version -b sys-devel/clang && check_llvm
-}
-
-pkg_setup() {
- check_llvm
-}
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- append-cxxflags -std=c++14
-
- if use qt5; then
- local qt5_paths=( \
- MOC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/moc" \
- UIC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/uic" \
- RCC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/rcc" \
- )
- if ! use opengl; then
- sed -e 's/Qt5OpenGL/DiSaBlEd/g' -i configure || die
- fi
- fi
-
- # Hard disable the flags that apply only to the libs.
- econf \
- --disable-static \
- $(use_enable dvb libdvbv5) \
- $(use_enable qt5 qv4l2) \
- $(use_enable qt5 qvidcap) \
- $(use_enable bpf) \
- --with-jpeg \
- $(use_with udev libudev) \
- --with-udevdir="$(get_udevdir)" \
- "${qt5_paths[@]}"
-}
-
-src_install() {
- emake -C utils DESTDIR="${D}" install
- emake -C contrib DESTDIR="${D}" install
-
- dodoc README
- newdoc utils/libv4l2util/TODO TODO.libv4l2util
- newdoc utils/libmedia_dev/README README.libmedia_dev
- newdoc utils/dvb/README README.dvb
- newdoc utils/v4l2-compliance/fixme.txt fixme.txt.v4l2-compliance
-}
-
-pkg_postinst() {
- xdg_pkg_postinst
-
- if [[ -n ${REPLACING_VERSIONS} ]] && ver_test 1.20.0 -ge ${REPLACING_VERSIONS%% *}; then
- ewarn "WARNING! ir-keytable has changed significantly from version 1.20.0 so"
- ewarn "you may need to take action to avoid breakage. See"
- ewarn "https://bugs.gentoo.org/767175 for more details."
- fi
-}
next reply other threads:[~2022-04-02 13:55 UTC|newest]
Thread overview: 59+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-02 13:55 James Le Cuirot [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-07-26 19:19 [gentoo-commits] repo/gentoo:master commit in: media-tv/v4l-utils/ Sam James
2024-07-26 19:19 Sam James
2024-07-26 19:19 Sam James
2024-07-26 19:19 Sam James
2024-07-26 19:19 Sam James
2023-12-19 23:09 James Le Cuirot
2023-03-18 23:38 James Le Cuirot
2022-08-25 21:53 James Le Cuirot
2022-05-29 10:34 James Le Cuirot
2022-04-02 12:04 Arthur Zamarin
2022-04-01 6:53 Arthur Zamarin
2022-03-31 19:37 Arthur Zamarin
2022-03-30 11:48 Agostino Sarubbo
2022-03-30 11:47 Agostino Sarubbo
2022-03-30 11:47 Agostino Sarubbo
2022-03-30 11:46 Agostino Sarubbo
2021-10-24 20:22 James Le Cuirot
2021-10-24 20:22 James Le Cuirot
2021-08-01 18:27 Sam James
2021-04-13 0:26 Sam James
2021-01-17 10:29 James Le Cuirot
2021-01-05 20:51 Sam James
2021-01-03 11:51 Sergei Trofimovich
2020-12-29 23:15 Sam James
2020-12-29 21:47 James Le Cuirot
2020-12-27 22:58 Sam James
2020-12-27 21:43 James Le Cuirot
2020-09-05 13:04 James Le Cuirot
2020-08-23 16:42 James Le Cuirot
2020-05-28 22:24 James Le Cuirot
2020-03-20 21:53 Matt Turner
2020-03-13 23:16 Andrey Utkin
2020-03-11 23:50 Andrey Utkin
2019-08-19 11:37 Agostino Sarubbo
2019-08-14 17:59 Aaron Bauman
2019-08-14 8:53 Agostino Sarubbo
2019-08-12 18:22 Andrey Utkin
2019-08-12 18:22 Andrey Utkin
2019-06-06 7:14 Agostino Sarubbo
2019-05-13 17:25 Andrey Utkin
2019-04-09 14:36 Mikle Kolyada
2019-03-11 18:05 Andrey Utkin
2019-03-04 17:21 Alexis Ballier
2019-02-27 16:37 Alexis Ballier
2019-02-27 16:30 Alexis Ballier
2019-02-27 16:30 Alexis Ballier
2019-02-27 16:30 Alexis Ballier
2019-02-26 18:36 Alexis Ballier
2018-01-18 15:04 Mikle Kolyada
2018-01-18 15:03 Mikle Kolyada
2017-12-16 10:31 Tobias Klausmann
2017-11-27 19:46 Sergei Trofimovich
2017-11-23 11:54 Tobias Klausmann
2017-05-30 10:54 Alexis Ballier
2017-04-25 12:58 Alexis Ballier
2016-09-28 18:30 Michael Palimaka
2016-06-18 0:57 Alexandre Rostovtsev
2016-06-18 0:57 Alexandre Rostovtsev
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1648907620.cb1a0753a132eabe58242eb9acefc3a7ab57642c.chewi@gentoo \
--to=chewi@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox