From: "Richard Farina" <zerochaos@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/gqrx/
Date: Sun, 18 Feb 2018 17:31:46 +0000 (UTC) [thread overview]
Message-ID: <1518975100.34ae9d26e9222adcac4e3cd0415ee0fb40519d8d.zerochaos@gentoo> (raw)
commit: 34ae9d26e9222adcac4e3cd0415ee0fb40519d8d
Author: Zero_Chaos <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 17:31:24 2018 +0000
Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 17:31:40 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34ae9d26
net-wireless/gqrx: bump
Package-Manager: Portage-2.3.24, Repoman-2.3.6
net-wireless/gqrx/Manifest | 3 +-
.../gqrx/{gqrx-2.7.ebuild => gqrx-2.10.ebuild} | 2 +-
net-wireless/gqrx/gqrx-2.9.ebuild | 61 ----------------------
3 files changed, 2 insertions(+), 64 deletions(-)
diff --git a/net-wireless/gqrx/Manifest b/net-wireless/gqrx/Manifest
index 81ed84669b6..b08c426b545 100644
--- a/net-wireless/gqrx/Manifest
+++ b/net-wireless/gqrx/Manifest
@@ -1,2 +1 @@
-DIST gqrx-2.7.tar.gz 1326826 BLAKE2B fc2b6d27952c688d43de756580d8ad00e5111c5bc74cb0f3d36ed69e4281110c921e51f313e899e747649f4e3e843a8c68df056a080de32e77ad5572bdf383fc SHA512 931f4751b2437ab2286a436ed842cd51203d69c7d6edf0c0125fcb1d9943a028175d8ae70dd62eb4d2f935e97419dc990537d90e2bf50c5d1924282fe0f5531d
-DIST gqrx-2.9.tar.gz 1327672 BLAKE2B f402ce7034b63b40240486129774f7c5cbf8270f1265d397b654a3d30a972f9cdb4eea28936a8befa1991c127677e683b0271ec488df99fb9160efc07c842958 SHA512 e7e51124087524ae2bd793109cbe488bedf703a93a9727aeb3b20e6a04e759252bd1b70fe94b63c86024ba76acf14406143bd7a7d1ddd70e7948d3feaf3f69c2
+DIST gqrx-2.10.tar.gz 1327015 BLAKE2B ee3e83825e5e7d165d991b6715435f924c6c2c8a9c045ebc3f0c9c2dec3f186b68ff0057e22a55fcc9222eeac173956778587df20fbdeb777aec41c3fbcae2d8 SHA512 662894326b5fd9527fb918cfb890e2cdbf248660201452d6c2adf105341650cd2a3dbd03561d055e182626a078fcd788aa401efaaa73f45d16f34f5f1ade97a9
diff --git a/net-wireless/gqrx/gqrx-2.7.ebuild b/net-wireless/gqrx/gqrx-2.10.ebuild
similarity index 97%
rename from net-wireless/gqrx/gqrx-2.7.ebuild
rename to net-wireless/gqrx/gqrx-2.10.ebuild
index d280c8f3e3c..f696cb12c53 100644
--- a/net-wireless/gqrx/gqrx-2.7.ebuild
+++ b/net-wireless/gqrx/gqrx-2.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
diff --git a/net-wireless/gqrx/gqrx-2.9.ebuild b/net-wireless/gqrx/gqrx-2.9.ebuild
deleted file mode 100644
index d280c8f3e3c..00000000000
--- a/net-wireless/gqrx/gqrx-2.9.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="Software defined radio receiver powered by GNU Radio and Qt"
-HOMEPAGE="http://gqrx.dk/"
-
-if [[ ${PV} == "9999" ]] ; then
- EGIT_REPO_URI="https://github.com/csete/gqrx.git"
- inherit git-r3
- KEYWORDS=""
-else
- SRC_URI="https://github.com/csete/gqrx/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="gr-audio portaudio pulseaudio"
-REQUIRED_USE="^^ ( pulseaudio portaudio gr-audio )"
-
-DEPEND=">=net-wireless/gnuradio-3.7_rc:=[audio,analog,filter]
- >=net-wireless/gr-osmosdr-0.1.0:=
- dev-libs/boost:=
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtsvg:5
- dev-qt/qtwidgets:5
- pulseaudio? ( media-sound/pulseaudio:= )
- portaudio? ( media-libs/portaudio:= )"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- if use pulseaudio; then
- LINUX_AUDIO_BACKEND=Pulseaudio
- elif use portaudio; then
- LINUX_AUDIO_BACKEND=Portaudio
- elif use gr-audio; then
- LINUX_AUDIO_BACKEND=Gr-audio
- fi
-
- local mycmakeargs=(
- "-DLINUX_AUDIO_BACKEND=${LINUX_AUDIO_BACKEND}"
- )
- cmake-utils_src_configure
-}
-
-src_prepare() {
- if use !pulseaudio; then
- sed -i 's/AUDIO_BACKEND = pulse/#AUDIO_BACKEND = pulse/' gqrx.pro || die
- fi
- eapply_user
-}
-
-src_install() {
- dobin "${BUILD_DIR}"/src/gqrx
-}
next reply other threads:[~2018-02-18 17:31 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-18 17:31 Richard Farina [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-22 17:33 [gentoo-commits] repo/gentoo:master commit in: net-wireless/gqrx/ Andreas Sturmlechner
2025-01-08 17:03 Andreas Sturmlechner
2025-01-08 17:03 Andreas Sturmlechner
2023-10-10 1:00 Rick Farina
2023-10-10 1:00 Rick Farina
2023-08-20 18:05 Rick Farina
2023-05-29 13:11 Andreas Sturmlechner
2023-05-29 13:00 Andreas Sturmlechner
2022-12-19 18:56 Rick Farina
2022-12-19 18:56 Rick Farina
2022-08-08 0:39 Rick Farina
2022-08-08 0:39 Rick Farina
2022-08-08 0:39 Rick Farina
2022-08-08 0:39 Rick Farina
2022-04-30 22:01 Marek Szuba
2022-01-28 3:29 Rick Farina
2021-10-07 16:42 Rick Farina
2021-02-17 15:53 Rick Farina
2020-12-18 19:41 Rick Farina
2020-12-17 15:53 Rick Farina
2020-12-04 18:22 Rick Farina
2020-11-25 0:13 Marek Szuba
2020-09-21 19:15 Rick Farina
2020-06-04 9:06 David Seifert
2020-01-27 21:41 Rick Farina
2019-01-11 18:29 Thomas Deutschmann
2018-08-16 20:45 Richard Farina
2018-08-16 20:45 Richard Farina
2017-12-20 2:28 Richard Farina
2017-10-04 9:15 Michał Górny
2017-01-24 22:25 Richard Farina
2017-01-24 21:54 Richard Farina
2016-06-03 2:39 Richard Farina
2016-03-30 20:30 Richard Farina
2016-01-01 10:47 Tobias Klausmann
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=1518975100.34ae9d26e9222adcac4e3cd0415ee0fb40519d8d.zerochaos@gentoo \
--to=zerochaos@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