* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/
@ 2016-09-12 17:40 Jason Donenfeld
0 siblings, 0 replies; 10+ messages in thread
From: Jason Donenfeld @ 2016-09-12 17:40 UTC (permalink / raw
To: gentoo-commits
commit: 6a38782b25fbf524e95cf7cc6c48f3355d547317
Author: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 12 17:40:03 2016 +0000
Commit: Jason Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Mon Sep 12 17:40:03 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a38782b
net-wireless/gr-air-modes: import ebuild
Package-Manager: portage-2.3.0
net-wireless/gr-air-modes/gr-air-modes-9999.ebuild | 41 ++++++++++++++++++++++
net-wireless/gr-air-modes/metadata.xml | 14 ++++++++
2 files changed, 55 insertions(+)
diff --git a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
new file mode 100644
index 00000000..130d60d
--- /dev/null
+++ b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+inherit python cmake-utils git-2
+
+DESCRIPTION="This module implements a complete Mode S and ADS-B receiver for Gnuradio"
+HOMEPAGE="https://www.cgran.org/wiki/gr-air-modes"
+
+EGIT_REPO_URI="https://github.com/bistromath/gr-air-modes.git"
+EGIT_BRANCH="master"
+
+KEYWORDS=""
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="rtlsdr fgfs +gui uhd"
+DEPEND=">=net-wireless/gnuradio-3.7.0:=
+ net-wireless/gr-osmosdr
+ dev-python/pyzmq
+ fgfs? ( sci-libs/scipy
+ games-simulation/flightgear )
+ rtlsdr? ( net-wireless/rtl-sdr )
+ uhd? ( >=net-wireless/uhd-3.4.0 )
+ gui? ( dev-python/pyqwt )"
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+ python_set_active_version 2
+ python_pkg_setup
+}
+
+src_compile() {
+ cmake-utils_src_compile -j1
+}
+
+src_install() {
+ cmake-utils_src_install
+ python_convert_shebangs 2 "${ED}"usr/bin/*
+}
diff --git a/net-wireless/gr-air-modes/metadata.xml b/net-wireless/gr-air-modes/metadata.xml
new file mode 100644
index 00000000..759e8cf
--- /dev/null
+++ b/net-wireless/gr-air-modes/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>radio@gentoo.org</email>
+ <name>Radio</name>
+ </maintainer>
+<use>
+ <flag name="rtlsdr">Build with Realtek RTL2832U (rtlsdr) support</flag>
+ <flag name="uhd">Build with Ettus Research USRP Hardware Driver support</flag>
+ <flag name="fgfs">Support FlightGear</flag>
+ <flag name="gui">Build the GUI</flag>
+</use>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/
@ 2017-02-20 17:43 Michał Górny
0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2017-02-20 17:43 UTC (permalink / raw
To: gentoo-commits
commit: 5458c6d9da6bbb3b4009a4ff9d9ab17737d07849
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 20 16:43:24 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Feb 20 17:43:03 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5458c6d9
net-wireless/gr-air-modes: python-single-r1
net-wireless/gr-air-modes/gr-air-modes-9999.ebuild | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
index 130d60dfad..6b9482d54e 100644
--- a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
+++ b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
-inherit python cmake-utils git-2
+inherit python-single-r1 cmake-utils git-2
DESCRIPTION="This module implements a complete Mode S and ADS-B receiver for Gnuradio"
HOMEPAGE="https://www.cgran.org/wiki/gr-air-modes"
@@ -18,18 +18,16 @@ SLOT="0"
IUSE="rtlsdr fgfs +gui uhd"
DEPEND=">=net-wireless/gnuradio-3.7.0:=
net-wireless/gr-osmosdr
- dev-python/pyzmq
+ dev-python/pyzmq[${PYTHON_USEDEP}]
fgfs? ( sci-libs/scipy
games-simulation/flightgear )
rtlsdr? ( net-wireless/rtl-sdr )
uhd? ( >=net-wireless/uhd-3.4.0 )
- gui? ( dev-python/pyqwt )"
+ gui? ( dev-python/pyqwt[${PYTHON_USEDEP}] )
+ ${PYTHON_DEPS}"
RDEPEND="${DEPEND}"
-pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
-}
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
src_compile() {
cmake-utils_src_compile -j1
@@ -37,5 +35,5 @@ src_compile() {
src_install() {
cmake-utils_src_install
- python_convert_shebangs 2 "${ED}"usr/bin/*
+ python_fix_shebang "${ED}"usr/bin
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/
@ 2017-02-20 18:19 Mike Gilbert
0 siblings, 0 replies; 10+ messages in thread
From: Mike Gilbert @ 2017-02-20 18:19 UTC (permalink / raw
To: gentoo-commits
commit: f646f2595ba32c1acb68cd7e1d96bc20bc0e1f44
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 20 18:19:39 2017 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon Feb 20 18:19:39 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f646f259
net-wireless/gr-air-modes: set PYTHON_COMPAT
Package-Manager: Portage-2.3.3_p56, Repoman-2.3.1_p49
net-wireless/gr-air-modes/gr-air-modes-9999.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
index 6b9482d54e..e8627718c7 100644
--- a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
+++ b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
@@ -3,6 +3,7 @@
# $Header: $
EAPI=5
+PYTHON_COMPAT=( python2_7 )
inherit python-single-r1 cmake-utils git-2
DESCRIPTION="This module implements a complete Mode S and ADS-B receiver for Gnuradio"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/
@ 2018-03-04 12:38 Andreas Sturmlechner
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2018-03-04 12:38 UTC (permalink / raw
To: gentoo-commits
commit: 6d40df5d65ef598071ea49571143013d762dcff7
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 4 12:17:10 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Mar 4 12:38:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d40df5d
net-wireless/gr-air-modes: Drop broken USE=gui
Closes: https://bugs.gentoo.org/649220
Package-Manager: Portage-2.3.24, Repoman-2.3.6
net-wireless/gr-air-modes/gr-air-modes-9999.ebuild | 5 ++---
net-wireless/gr-air-modes/metadata.xml | 1 -
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
index 61b17370d94..355f3c208e6 100644
--- a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
+++ b/net-wireless/gr-air-modes/gr-air-modes-9999.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=5
@@ -15,7 +15,7 @@ KEYWORDS=""
LICENSE="GPL-3"
SLOT="0"
-IUSE="rtlsdr fgfs +gui uhd"
+IUSE="rtlsdr fgfs uhd"
DEPEND=">=net-wireless/gnuradio-3.7.0:=
net-wireless/gr-osmosdr
dev-python/pyzmq[${PYTHON_USEDEP}]
@@ -23,7 +23,6 @@ DEPEND=">=net-wireless/gnuradio-3.7.0:=
games-simulation/flightgear )
rtlsdr? ( net-wireless/rtl-sdr )
uhd? ( >=net-wireless/uhd-3.4.0 )
- gui? ( dev-python/pyqwt[${PYTHON_USEDEP}] )
${PYTHON_DEPS}"
RDEPEND="${DEPEND}"
diff --git a/net-wireless/gr-air-modes/metadata.xml b/net-wireless/gr-air-modes/metadata.xml
index 759e8cf8027..5ede75ce7e7 100644
--- a/net-wireless/gr-air-modes/metadata.xml
+++ b/net-wireless/gr-air-modes/metadata.xml
@@ -9,6 +9,5 @@
<flag name="rtlsdr">Build with Realtek RTL2832U (rtlsdr) support</flag>
<flag name="uhd">Build with Ettus Research USRP Hardware Driver support</flag>
<flag name="fgfs">Support FlightGear</flag>
- <flag name="gui">Build the GUI</flag>
</use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/
@ 2018-06-05 17:27 Richard Farina
0 siblings, 0 replies; 10+ messages in thread
From: Richard Farina @ 2018-06-05 17:27 UTC (permalink / raw
To: gentoo-commits
commit: 32c3035ba46f46c521acef4e184d9649150de921
Author: Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Fri Jun 1 14:42:47 2018 +0000
Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Tue Jun 5 17:26:56 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32c3035b
net-wireless/gr-air-modes: git-2->git-r3
Package-Manager: Portage-2.3.40, Repoman-2.3.9
net-wireless/gr-air-modes/gr-air-modes-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
index 355f3c208e6..fe5fbccf440 100644
--- a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
+++ b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=5
PYTHON_COMPAT=( python2_7 )
-inherit python-single-r1 cmake-utils git-2
+inherit python-single-r1 cmake-utils git-r3
DESCRIPTION="This module implements a complete Mode S and ADS-B receiver for Gnuradio"
HOMEPAGE="https://www.cgran.org/wiki/gr-air-modes"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/
@ 2019-01-07 23:01 Andreas Sturmlechner
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2019-01-07 23:01 UTC (permalink / raw
To: gentoo-commits
commit: e72292d0cf0ec3ab9cf54d563901a18dff2f1d35
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 1 00:02:59 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jan 7 22:59:53 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e72292d0
net-wireless/gr-air-modes: EAPI-7 bump
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
net-wireless/gr-air-modes/gr-air-modes-9999.ebuild | 40 +++++++++++++---------
1 file changed, 24 insertions(+), 16 deletions(-)
diff --git a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
index fe5fbccf440..2f1f6b27be3 100644
--- a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
+++ b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
@@ -1,33 +1,41 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
+
PYTHON_COMPAT=( python2_7 )
-inherit python-single-r1 cmake-utils git-r3
+
+if [[ ${PV} == 9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/bistromath/gr-air-modes.git"
+ EGIT_BRANCH="master"
+else
+ KEYWORDS=""
+fi
+inherit cmake-utils python-single-r1
DESCRIPTION="This module implements a complete Mode S and ADS-B receiver for Gnuradio"
HOMEPAGE="https://www.cgran.org/wiki/gr-air-modes"
-EGIT_REPO_URI="https://github.com/bistromath/gr-air-modes.git"
-EGIT_BRANCH="master"
-
-KEYWORDS=""
-
LICENSE="GPL-3"
SLOT="0"
-IUSE="rtlsdr fgfs uhd"
-DEPEND=">=net-wireless/gnuradio-3.7.0:=
- net-wireless/gr-osmosdr
+IUSE="fgfs rtlsdr uhd"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
dev-python/pyzmq[${PYTHON_USEDEP}]
- fgfs? ( sci-libs/scipy
- games-simulation/flightgear )
+ >=net-wireless/gnuradio-3.7.0:=
+ net-wireless/gr-osmosdr
+ fgfs? (
+ games-simulation/flightgear
+ sci-libs/scipy
+ )
rtlsdr? ( net-wireless/rtl-sdr )
uhd? ( >=net-wireless/uhd-3.4.0 )
- ${PYTHON_DEPS}"
+"
RDEPEND="${DEPEND}"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
src_compile() {
cmake-utils_src_compile -j1
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/
@ 2019-01-10 18:01 Andreas Sturmlechner
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2019-01-10 18:01 UTC (permalink / raw
To: gentoo-commits
commit: d5dc1b8c9a44761d732ad7c2c735a369bb932437
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 10 17:58:19 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jan 10 18:01:21 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5dc1b8c
net-wireless/gr-air-modes: Fix src_install
Thanks-to: hangglider <AT> gmx.de
Closes: https://bugs.gentoo.org/675112
Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
net-wireless/gr-air-modes/gr-air-modes-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
index 2f1f6b27be3..4c153278971 100644
--- a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
+++ b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
@@ -42,5 +42,5 @@ src_compile() {
src_install() {
cmake-utils_src_install
- python_fix_shebang "${ED}"usr/bin
+ python_fix_shebang "${ED}"/usr/bin
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/
@ 2020-01-28 21:30 Michał Górny
0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2020-01-28 21:30 UTC (permalink / raw
To: gentoo-commits
commit: fb78c745c9e9a4e5a0e11f7cf900d7058a5374f9
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 28 20:56:39 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jan 28 21:30:13 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb78c745
net-wireless/gr-air-modes: Permit scipy-python2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
net-wireless/gr-air-modes/gr-air-modes-9999.ebuild | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
index 4c153278971..5f10964933f 100644
--- a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
+++ b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -29,7 +29,10 @@ DEPEND="${PYTHON_DEPS}
net-wireless/gr-osmosdr
fgfs? (
games-simulation/flightgear
- sci-libs/scipy
+ || (
+ sci-libs/scipy-python2[${PYTHON_USEDEP}]
+ sci-libs/scipy[${PYTHON_USEDEP}]
+ )
)
rtlsdr? ( net-wireless/rtl-sdr )
uhd? ( >=net-wireless/uhd-3.4.0 )
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/
@ 2020-02-09 16:34 Michał Górny
0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2020-02-09 16:34 UTC (permalink / raw
To: gentoo-commits
commit: e849bd6cd05b80a84459084fa1dde6a90c030aaf
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 7 17:41:16 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb 9 16:34:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e849bd6c
net-wireless/gr-air-modes: Switch to PYTHON_MULTI_USEDEP API
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
net-wireless/gr-air-modes/gr-air-modes-9999.ebuild | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
index 5f10964933f..c0aad83ffd8 100644
--- a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
+++ b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
@@ -24,16 +24,18 @@ IUSE="fgfs rtlsdr uhd"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="${PYTHON_DEPS}
- dev-python/pyzmq[${PYTHON_USEDEP}]
>=net-wireless/gnuradio-3.7.0:=
net-wireless/gr-osmosdr
- fgfs? (
- games-simulation/flightgear
- || (
- sci-libs/scipy-python2[${PYTHON_USEDEP}]
- sci-libs/scipy[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep '
+ dev-python/pyzmq[${PYTHON_MULTI_USEDEP}]
+ fgfs? (
+ games-simulation/flightgear
+ || (
+ sci-libs/scipy-python2[${PYTHON_MULTI_USEDEP}]
+ sci-libs/scipy[${PYTHON_MULTI_USEDEP}]
+ )
)
- )
+ ')
rtlsdr? ( net-wireless/rtl-sdr )
uhd? ( >=net-wireless/uhd-3.4.0 )
"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/
@ 2020-02-28 7:35 Mikle Kolyada
0 siblings, 0 replies; 10+ messages in thread
From: Mikle Kolyada @ 2020-02-28 7:35 UTC (permalink / raw
To: gentoo-commits
commit: ee792946d8ec4afaa366cc7c5a6eecbb214f44ed
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 28 07:35:05 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Feb 28 07:35:05 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee792946
net-wireless/gr-air-modes: remove last-rited package
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
net-wireless/gr-air-modes/gr-air-modes-9999.ebuild | 51 ----------------------
net-wireless/gr-air-modes/metadata.xml | 13 ------
2 files changed, 64 deletions(-)
diff --git a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
deleted file mode 100644
index c0aad83ffd8..00000000000
--- a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 )
-
-if [[ ${PV} == 9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/bistromath/gr-air-modes.git"
- EGIT_BRANCH="master"
-else
- KEYWORDS=""
-fi
-inherit cmake-utils python-single-r1
-
-DESCRIPTION="This module implements a complete Mode S and ADS-B receiver for Gnuradio"
-HOMEPAGE="https://www.cgran.org/wiki/gr-air-modes"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="fgfs rtlsdr uhd"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
- >=net-wireless/gnuradio-3.7.0:=
- net-wireless/gr-osmosdr
- $(python_gen_cond_dep '
- dev-python/pyzmq[${PYTHON_MULTI_USEDEP}]
- fgfs? (
- games-simulation/flightgear
- || (
- sci-libs/scipy-python2[${PYTHON_MULTI_USEDEP}]
- sci-libs/scipy[${PYTHON_MULTI_USEDEP}]
- )
- )
- ')
- rtlsdr? ( net-wireless/rtl-sdr )
- uhd? ( >=net-wireless/uhd-3.4.0 )
-"
-RDEPEND="${DEPEND}"
-
-src_compile() {
- cmake-utils_src_compile -j1
-}
-
-src_install() {
- cmake-utils_src_install
- python_fix_shebang "${ED}"/usr/bin
-}
diff --git a/net-wireless/gr-air-modes/metadata.xml b/net-wireless/gr-air-modes/metadata.xml
deleted file mode 100644
index 5ede75ce7e7..00000000000
--- a/net-wireless/gr-air-modes/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>radio@gentoo.org</email>
- <name>Radio</name>
- </maintainer>
-<use>
- <flag name="rtlsdr">Build with Realtek RTL2832U (rtlsdr) support</flag>
- <flag name="uhd">Build with Ettus Research USRP Hardware Driver support</flag>
- <flag name="fgfs">Support FlightGear</flag>
-</use>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2020-02-28 7:35 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-20 18:19 [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/ Mike Gilbert
-- strict thread matches above, loose matches on Subject: below --
2020-02-28 7:35 Mikle Kolyada
2020-02-09 16:34 Michał Górny
2020-01-28 21:30 Michał Górny
2019-01-10 18:01 Andreas Sturmlechner
2019-01-07 23:01 Andreas Sturmlechner
2018-06-05 17:27 Richard Farina
2018-03-04 12:38 Andreas Sturmlechner
2017-02-20 17:43 Michał Górny
2016-09-12 17:40 Jason Donenfeld
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox