* [gentoo-commits] repo/gentoo:master commit in: media-tv/ivtv-utils/
@ 2022-09-30 23:24 Sam James
0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2022-09-30 23:24 UTC (permalink / raw
To: gentoo-commits
commit: 490f4be16cea5a223b76a614befb57c93783490e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 30 23:09:55 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 30 23:24:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=490f4be1
media-tv/ivtv-utils: fix StaticSrcUri
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild b/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild
index 637e4c6bad13..f08f749298c0 100644
--- a/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild
+++ b/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -7,7 +7,7 @@ inherit toolchain-funcs
DESCRIPTION="IVTV utilities for Hauppauge PVR PCI cards"
HOMEPAGE="http://www.ivtvdriver.org/"
-SRC_URI="http://dl.ivtvdriver.org/ivtv/archive/1.4.x/${P}.tar.gz"
+SRC_URI="http://dl.ivtvdriver.org/ivtv/archive/$(ver_cut 1-2).x/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-tv/ivtv-utils/
@ 2023-12-12 17:22 James Le Cuirot
0 siblings, 0 replies; 5+ messages in thread
From: James Le Cuirot @ 2023-12-12 17:22 UTC (permalink / raw
To: gentoo-commits
commit: 98acc6f89fe4bdfee68ff2f52c4deeb952460bd8
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 12 16:55:12 2023 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Tue Dec 12 17:22:01 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98acc6f8
media-tv/ivtv-utils: Revbump to use libv4l[utils] instead of v4l-utils
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild | 44 ++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild b/media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild
new file mode 100644
index 000000000000..a7df5a2e2c84
--- /dev/null
+++ b/media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="IVTV utilities for Hauppauge PVR PCI cards"
+HOMEPAGE="http://www.ivtvdriver.org/"
+SRC_URI="http://dl.ivtvdriver.org/ivtv/archive/$(ver_cut 1-2).x/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="perl"
+
+RDEPEND="
+ media-libs/libv4l[utils(-)]
+ perl? (
+ dev-perl/Video-Frequencies
+ dev-perl/Video-ivtv
+ dev-perl/Config-IniFiles
+ dev-perl/Tk
+ virtual/perl-Getopt-Long
+ )"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-1.4.0-gentoo.patch
+ "${FILESDIR}"/${PN}-1.4.1-overflow.patch
+)
+
+src_configure() {
+ tc-export CC CXX
+}
+
+src_install() {
+ emake DESTDIR="${D}" PREFIX="/usr" install
+ dodoc -r ChangeLog README doc/.
+
+ if use perl; then
+ dobin utils/perl/*.pl
+ dodoc utils/perl/README.ptune
+ fi
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-tv/ivtv-utils/
@ 2024-03-03 18:27 Andreas K. Hüttel
0 siblings, 0 replies; 5+ messages in thread
From: Andreas K. Hüttel @ 2024-03-03 18:27 UTC (permalink / raw
To: gentoo-commits
commit: 75483c7da238cb22860ee368352d8324b6cbc290
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 3 18:27:16 2024 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Mar 3 18:27:41 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75483c7d
media-tv/ivtv-utils: Apply musl-1.2.4 largefile workaround
Bug: https://bugs.gentoo.org/907679
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild | 7 +++++--
media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild | 7 +++++--
2 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild b/media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild
index a7df5a2e2c84..14068ad3896f 100644
--- a/media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild
+++ b/media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
DESCRIPTION="IVTV utilities for Hauppauge PVR PCI cards"
HOMEPAGE="http://www.ivtvdriver.org/"
@@ -31,6 +31,9 @@ PATCHES=(
src_configure() {
tc-export CC CXX
+
+ # bug 907679
+ use elibc_musl && append-flags -D_LARGEFILE64_SOURCE
}
src_install() {
diff --git a/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild b/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild
index f08f749298c0..57a6fc766ab5 100644
--- a/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild
+++ b/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
DESCRIPTION="IVTV utilities for Hauppauge PVR PCI cards"
HOMEPAGE="http://www.ivtvdriver.org/"
@@ -32,6 +32,9 @@ PATCHES=(
src_configure() {
tc-export CC CXX
+
+ # bug 907679
+ use elibc_musl && append-flags -D_LARGEFILE64_SOURCE
}
src_install() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-tv/ivtv-utils/
@ 2024-07-29 21:39 James Le Cuirot
0 siblings, 0 replies; 5+ messages in thread
From: James Le Cuirot @ 2024-07-29 21:39 UTC (permalink / raw
To: gentoo-commits
commit: b00fd7b7d40e92959caba66de44a22c71d4f4ba4
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 29 21:28:12 2024 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Mon Jul 29 21:31:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b00fd7b7
media-tv/ivtv-utils: Stabilise 1.4.1-r1 on amd64 and x86
The changes are trivial and no issues have been reported.
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild b/media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild
index 804c80293f10..d1f7bc8fbbe3 100644
--- a/media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild
+++ b/media-tv/ivtv-utils/ivtv-utils-1.4.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://dl.ivtvdriver.org/ivtv/archive/$(ver_cut 1-2).x/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
IUSE="perl"
RDEPEND="
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-tv/ivtv-utils/
@ 2024-07-29 21:39 James Le Cuirot
0 siblings, 0 replies; 5+ messages in thread
From: James Le Cuirot @ 2024-07-29 21:39 UTC (permalink / raw
To: gentoo-commits
commit: dd878a1c43e324b9e51d94fd5845b8a082cb95ef
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 29 21:29:12 2024 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Mon Jul 29 21:32:04 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd878a1c
media-tv/ivtv-utils: Drop old 1.4.1
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild | 48 -----------------------------
1 file changed, 48 deletions(-)
diff --git a/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild b/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild
deleted file mode 100644
index 57a6fc766ab5..000000000000
--- a/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="IVTV utilities for Hauppauge PVR PCI cards"
-HOMEPAGE="http://www.ivtvdriver.org/"
-SRC_URI="http://dl.ivtvdriver.org/ivtv/archive/$(ver_cut 1-2).x/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="perl"
-
-DEPEND="!media-tv/ivtv"
-RDEPEND="${DEPEND}
- media-tv/v4l-utils
- perl? (
- dev-perl/Video-Frequencies
- dev-perl/Video-ivtv
- dev-perl/Config-IniFiles
- dev-perl/Tk
- virtual/perl-Getopt-Long
- )"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.4.0-gentoo.patch
- "${FILESDIR}"/${PN}-1.4.1-overflow.patch
-)
-
-src_configure() {
- tc-export CC CXX
-
- # bug 907679
- use elibc_musl && append-flags -D_LARGEFILE64_SOURCE
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" install
- dodoc -r ChangeLog README doc/.
-
- if use perl; then
- dobin utils/perl/*.pl
- dodoc utils/perl/README.ptune
- fi
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-07-29 21:39 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-29 21:39 [gentoo-commits] repo/gentoo:master commit in: media-tv/ivtv-utils/ James Le Cuirot
-- strict thread matches above, loose matches on Subject: below --
2024-07-29 21:39 James Le Cuirot
2024-03-03 18:27 Andreas K. Hüttel
2023-12-12 17:22 James Le Cuirot
2022-09-30 23:24 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox