* [gentoo-commits] repo/gentoo:master commit in: media-radio/fsync-mdc1200-decode/
@ 2019-03-27 14:53 Rick Farina
0 siblings, 0 replies; 8+ messages in thread
From: Rick Farina @ 2019-03-27 14:53 UTC (permalink / raw
To: gentoo-commits
commit: 1417b917d13ddf8eb72279a3ed3499444eb9d4bb
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 27 14:53:08 2019 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Wed Mar 27 14:53:23 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1417b917
media-radio/fsync-mdc1200-decode: initial commit
this tool decodes fsync and mdc1200 data transmissions in analog radio
streams
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
.../fsync-mdc1200-decode-9999.ebuild | 34 ++++++++++++++++++++++
media-radio/fsync-mdc1200-decode/metadata.xml | 15 ++++++++++
2 files changed, 49 insertions(+)
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
new file mode 100644
index 00000000000..00ae9f5dee3
--- /dev/null
+++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Linux Fleetsync / MCD1200 decoder"
+HOMEPAGE="https://github.com/russinnes/fsync-mdc1200-decode"
+
+LICENSE="GPL-2+"
+SLOT="0"
+
+if [ "${PV}" = 9999 ]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/russinnes/fsync-mdc1200-decode.git"
+else
+ KEYWORDS=""
+ SRC_URI=""
+fi
+
+IUSE=""
+
+DEPEND="media-sound/pulseaudio:="
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_compile() {
+ $(tc-getCC) -o fsync-mdc1200-decode ${CFLAGS} ${LDFLAGS} demod.c fsync_decode.c mdc_decode.c $(pkg-config --cflags --libs libpulse-simple)
+}
+
+src_install() {
+ dobin fsync-mdc1200-decode
+}
diff --git a/media-radio/fsync-mdc1200-decode/metadata.xml b/media-radio/fsync-mdc1200-decode/metadata.xml
new file mode 100644
index 00000000000..2a9199f84ec
--- /dev/null
+++ b/media-radio/fsync-mdc1200-decode/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+ <email>zerochaos@gentoo.org</email>
+ <name>Rick Farina</name>
+</maintainer>
+<maintainer type="project">
+ <email>radio@gentoo.org</email>
+ <name>Radio</name>
+</maintainer>
+<upstream>
+ <remote-id type="github">russinnes/fsync-mdc1200-decode</remote-id>
+</upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-radio/fsync-mdc1200-decode/
@ 2019-03-28 2:51 Rick Farina
0 siblings, 0 replies; 8+ messages in thread
From: Rick Farina @ 2019-03-28 2:51 UTC (permalink / raw
To: gentoo-commits
commit: 6f583461ad516c5cc2a8142514c20f247db11614
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 28 01:39:07 2019 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Thu Mar 28 01:39:07 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f583461
media-radio/fsync-mdc1200-decode: add tagged release
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
media-radio/fsync-mdc1200-decode/Manifest | 1 +
...ync-mdc1200-decode-9999.ebuild => fsync-mdc1200-decode-1.0.ebuild} | 4 ++--
media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild | 4 ++--
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/media-radio/fsync-mdc1200-decode/Manifest b/media-radio/fsync-mdc1200-decode/Manifest
new file mode 100644
index 00000000000..3c867ee5380
--- /dev/null
+++ b/media-radio/fsync-mdc1200-decode/Manifest
@@ -0,0 +1 @@
+DIST fsync-mdc1200-decode-1.0.tar.gz 19791 BLAKE2B 86000b3b6a71895c211ae123eedfd54ba0dfa9bfc8619a28effb1f5187349aa33968acf6a24fd4e7b10e07a5693cf3410d5242d9719f34bec0a847794098196a SHA512 94525b88800f285816d6c76f0474854543a805f85a3156cd516a3c952ce05e40c9c845dfb799eb5aea9cd2e659713c468e35407804b42db98981dff91d08fb92
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
similarity index 84%
copy from media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
copy to media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
index 00ae9f5dee3..eaf4b75afef 100644
--- a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
+++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
@@ -15,8 +15,8 @@ if [ "${PV}" = 9999 ]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/russinnes/fsync-mdc1200-decode.git"
else
- KEYWORDS=""
- SRC_URI=""
+ KEYWORDS="~amd64 ~x86"
+ SRC_URI="https://github.com/russinnes/fsync-mdc1200-decode/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
IUSE=""
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
index 00ae9f5dee3..eaf4b75afef 100644
--- a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
+++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
@@ -15,8 +15,8 @@ if [ "${PV}" = 9999 ]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/russinnes/fsync-mdc1200-decode.git"
else
- KEYWORDS=""
- SRC_URI=""
+ KEYWORDS="~amd64 ~x86"
+ SRC_URI="https://github.com/russinnes/fsync-mdc1200-decode/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
IUSE=""
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-radio/fsync-mdc1200-decode/
@ 2019-05-14 19:37 Rick Farina
0 siblings, 0 replies; 8+ messages in thread
From: Rick Farina @ 2019-05-14 19:37 UTC (permalink / raw
To: gentoo-commits
commit: 1396364bc727e25e2aceaeed89653f8ec5ba000b
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Tue May 14 19:37:30 2019 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Tue May 14 19:37:46 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1396364b
media-radio/fsync-mdc1200-decode: fix typo
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild | 2 +-
media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
index eaf4b75afef..a452f744773 100644
--- a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
+++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
@@ -5,7 +5,7 @@ EAPI=7
inherit toolchain-funcs
-DESCRIPTION="Linux Fleetsync / MCD1200 decoder"
+DESCRIPTION="Linux Fleetsync / MDC1200 decoder"
HOMEPAGE="https://github.com/russinnes/fsync-mdc1200-decode"
LICENSE="GPL-2+"
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
index eaf4b75afef..a452f744773 100644
--- a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
+++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
@@ -5,7 +5,7 @@ EAPI=7
inherit toolchain-funcs
-DESCRIPTION="Linux Fleetsync / MCD1200 decoder"
+DESCRIPTION="Linux Fleetsync / MDC1200 decoder"
HOMEPAGE="https://github.com/russinnes/fsync-mdc1200-decode"
LICENSE="GPL-2+"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-radio/fsync-mdc1200-decode/
@ 2021-04-13 0:26 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2021-04-13 0:26 UTC (permalink / raw
To: gentoo-commits
commit: d395bde2f5229da8bb5835fcc1f1c2ea202adfdd
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 7 05:13:24 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 13 00:26:19 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d395bde2
media-radio/fsync-mdc1200-decode: call pkg-config via toolchain-funcs.eclass helper
This ensures we call the correct pkg-config in e.g. cross.
Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild | 4 ++--
media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
index a452f744773..2316114ab76 100644
--- a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
+++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -26,7 +26,7 @@ RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
- $(tc-getCC) -o fsync-mdc1200-decode ${CFLAGS} ${LDFLAGS} demod.c fsync_decode.c mdc_decode.c $(pkg-config --cflags --libs libpulse-simple)
+ $(tc-getCC) -o fsync-mdc1200-decode ${CFLAGS} ${LDFLAGS} demod.c fsync_decode.c mdc_decode.c $($(tc-getPKG_CONFIG) --cflags --libs libpulse-simple)
}
src_install() {
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
index a452f744773..2316114ab76 100644
--- a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
+++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -26,7 +26,7 @@ RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
- $(tc-getCC) -o fsync-mdc1200-decode ${CFLAGS} ${LDFLAGS} demod.c fsync_decode.c mdc_decode.c $(pkg-config --cflags --libs libpulse-simple)
+ $(tc-getCC) -o fsync-mdc1200-decode ${CFLAGS} ${LDFLAGS} demod.c fsync_decode.c mdc_decode.c $($(tc-getPKG_CONFIG) --cflags --libs libpulse-simple)
}
src_install() {
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-radio/fsync-mdc1200-decode/
@ 2023-05-29 13:00 Andreas Sturmlechner
0 siblings, 0 replies; 8+ messages in thread
From: Andreas Sturmlechner @ 2023-05-29 13:00 UTC (permalink / raw
To: gentoo-commits
commit: 1a19a442fb35f660dc268ea588d5303e3430f495
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 09:44:37 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon May 29 13:00:39 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a19a442
media-radio/fsync-mdc1200-decode: EAPI 8 bump, use media-libs/libpulse
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
.../fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
index 050d3b649115..7295b4089511 100644
--- a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
+++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
@@ -1,17 +1,14 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit toolchain-funcs
DESCRIPTION="Linux Fleetsync / MDC1200 decoder"
HOMEPAGE="https://github.com/russinnes/fsync-mdc1200-decode"
-LICENSE="GPL-2+"
-SLOT="0"
-
-if [ "${PV}" = 9999 ]; then
+if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/russinnes/fsync-mdc1200-decode.git"
else
@@ -19,9 +16,11 @@ else
SRC_URI="https://github.com/russinnes/fsync-mdc1200-decode/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
+LICENSE="GPL-2+"
+SLOT="0"
IUSE=""
-DEPEND="media-sound/pulseaudio:="
+DEPEND="media-libs/libpulse"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-radio/fsync-mdc1200-decode/
@ 2023-08-19 13:20 Rick Farina
0 siblings, 0 replies; 8+ messages in thread
From: Rick Farina @ 2023-08-19 13:20 UTC (permalink / raw
To: gentoo-commits
commit: 3cb57b1a7a42e2b716b49436dea2f23bdb0e0b16
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 19 13:13:51 2023 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Sat Aug 19 13:13:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cb57b1a
media-radio/fsync-mdc1200-decode: revbump for dep change
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
...fsync-mdc1200-decode-1.0.ebuild => fsync-mdc1200-decode-1.0-r1.ebuild} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0-r1.ebuild
similarity index 100%
rename from media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
rename to media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0-r1.ebuild
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-radio/fsync-mdc1200-decode/
@ 2023-08-19 13:20 Rick Farina
0 siblings, 0 replies; 8+ messages in thread
From: Rick Farina @ 2023-08-19 13:20 UTC (permalink / raw
To: gentoo-commits
commit: 9492389cf609fd2c50faed61da038fd4b12c24e0
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 19 13:12:52 2023 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Sat Aug 19 13:13:00 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9492389c
media-radio/fsync-mdc1200-decode: update EAPI 7 -> 8
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
Finishing work started in 1a19a442fb35f660dc268ea588d5303e3430f495
.../fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild | 16 ++++++++--------
.../fsync-mdc1200-decode-9999.ebuild | 3 ++-
2 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
index 050d3b649115..f484d5a429ac 100644
--- a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
+++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0.ebuild
@@ -1,17 +1,14 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit toolchain-funcs
DESCRIPTION="Linux Fleetsync / MDC1200 decoder"
HOMEPAGE="https://github.com/russinnes/fsync-mdc1200-decode"
-LICENSE="GPL-2+"
-SLOT="0"
-
-if [ "${PV}" = 9999 ]; then
+if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/russinnes/fsync-mdc1200-decode.git"
else
@@ -19,14 +16,17 @@ else
SRC_URI="https://github.com/russinnes/fsync-mdc1200-decode/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
+LICENSE="GPL-2+"
+SLOT="0"
IUSE=""
-DEPEND="media-sound/pulseaudio:="
+DEPEND="media-libs/libpulse"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
src_compile() {
- $(tc-getCC) -o fsync-mdc1200-decode ${CFLAGS} ${LDFLAGS} demod.c fsync_decode.c mdc_decode.c $($(tc-getPKG_CONFIG) --cflags --libs libpulse-simple)
+ $(tc-getCC) -o fsync-mdc1200-decode ${CFLAGS} ${LDFLAGS} demod.c fsync_decode.c \
+ mdc_decode.c $($(tc-getPKG_CONFIG) --cflags --libs libpulse-simple)
}
src_install() {
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
index 7295b4089511..f484d5a429ac 100644
--- a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
+++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
@@ -25,7 +25,8 @@ RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
src_compile() {
- $(tc-getCC) -o fsync-mdc1200-decode ${CFLAGS} ${LDFLAGS} demod.c fsync_decode.c mdc_decode.c $($(tc-getPKG_CONFIG) --cflags --libs libpulse-simple)
+ $(tc-getCC) -o fsync-mdc1200-decode ${CFLAGS} ${LDFLAGS} demod.c fsync_decode.c \
+ mdc_decode.c $($(tc-getPKG_CONFIG) --cflags --libs libpulse-simple)
}
src_install() {
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-radio/fsync-mdc1200-decode/
@ 2024-08-07 6:50 Thomas Beierlein
0 siblings, 0 replies; 8+ messages in thread
From: Thomas Beierlein @ 2024-08-07 6:50 UTC (permalink / raw
To: gentoo-commits
commit: d23228085af4609ca5ae0cf263bbbca15113c55c
Author: Filip Kobierski <fkobi <AT> pm <DOT> me>
AuthorDate: Wed Jul 31 20:37:52 2024 +0000
Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Wed Aug 7 06:43:41 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2322808
media-radio/fsync-mdc1200-decode: fix pkgcheck issues
Signed-off-by: Filip Kobierski <fkobi <AT> pm.me>
Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0-r1.ebuild | 5 ++---
media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild | 5 ++---
2 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0-r1.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0-r1.ebuild
index f484d5a429ac..9c64790346f9 100644
--- a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0-r1.ebuild
+++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-1.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -12,13 +12,12 @@ if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/russinnes/fsync-mdc1200-decode.git"
else
- KEYWORDS="~amd64 ~x86"
SRC_URI="https://github.com/russinnes/fsync-mdc1200-decode/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-2+"
SLOT="0"
-IUSE=""
DEPEND="media-libs/libpulse"
RDEPEND="${DEPEND}"
diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
index f484d5a429ac..9c64790346f9 100644
--- a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
+++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -12,13 +12,12 @@ if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/russinnes/fsync-mdc1200-decode.git"
else
- KEYWORDS="~amd64 ~x86"
SRC_URI="https://github.com/russinnes/fsync-mdc1200-decode/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-2+"
SLOT="0"
-IUSE=""
DEPEND="media-libs/libpulse"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-08-07 6:50 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-07 6:50 [gentoo-commits] repo/gentoo:master commit in: media-radio/fsync-mdc1200-decode/ Thomas Beierlein
-- strict thread matches above, loose matches on Subject: below --
2023-08-19 13:20 Rick Farina
2023-08-19 13:20 Rick Farina
2023-05-29 13:00 Andreas Sturmlechner
2021-04-13 0:26 Sam James
2019-05-14 19:37 Rick Farina
2019-03-28 2:51 Rick Farina
2019-03-27 14:53 Rick Farina
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox