public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/multimode/
@ 2015-11-08  3:21 Brian Evans
  0 siblings, 0 replies; 6+ messages in thread
From: Brian Evans @ 2015-11-08  3:21 UTC (permalink / raw
  To: gentoo-commits

commit:     6f3c1455a6bbb0402230f44786ed37a552b99490
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  8 03:16:59 2015 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Sun Nov  8 03:16:59 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f3c1455

net-wireless/multimode: Fix syntax error where PYTHON_COMPAT was not an array

Package-Manager: portage-2.2.20.1

 net-wireless/multimode/multimode-1.00-r2.ebuild          | 4 ++--
 net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild | 4 ++--
 net-wireless/multimode/multimode-9999.ebuild             | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-wireless/multimode/multimode-1.00-r2.ebuild b/net-wireless/multimode/multimode-1.00-r2.ebuild
index 13df49f..3070694 100644
--- a/net-wireless/multimode/multimode-1.00-r2.ebuild
+++ b/net-wireless/multimode/multimode-1.00-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT="python2_7"
+PYTHON_COMPAT=( python2_7 )
 
 inherit python-single-r1
 

diff --git a/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild b/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild
index 97a8fbd..7cf7761 100644
--- a/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild
+++ b/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT="python2_7"
+PYTHON_COMPAT=( python2_7 )
 
 inherit python-single-r1
 

diff --git a/net-wireless/multimode/multimode-9999.ebuild b/net-wireless/multimode/multimode-9999.ebuild
index 26b61e0..61c42ca 100644
--- a/net-wireless/multimode/multimode-9999.ebuild
+++ b/net-wireless/multimode/multimode-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT="python2_7"
+PYTHON_COMPAT=( python2_7 )
 
 inherit python-single-r1
 


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-wireless/multimode/
@ 2017-04-23 21:01 David Seifert
  0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2017-04-23 21:01 UTC (permalink / raw
  To: gentoo-commits

commit:     98728d1ba9d2ee8d5cace60796ffd2b93c6c8e12
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 23 20:45:05 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Apr 23 21:00:41 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98728d1b

net-wireless/multimode: [QA] Add missing python metadata variables

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 net-wireless/multimode/multimode-1.00-r2.ebuild          | 8 +++++---
 net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild | 9 ++++++---
 net-wireless/multimode/multimode-9999.ebuild             | 9 ++++++---
 3 files changed, 17 insertions(+), 9 deletions(-)

diff --git a/net-wireless/multimode/multimode-1.00-r2.ebuild b/net-wireless/multimode/multimode-1.00-r2.ebuild
index 2427560f389..aaa5a053442 100644
--- a/net-wireless/multimode/multimode-1.00-r2.ebuild
+++ b/net-wireless/multimode/multimode-1.00-r2.ebuild
@@ -1,28 +1,30 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
+
 PYTHON_COMPAT=( python2_7 )
 
 inherit python-single-r1
 
 DESCRIPTION="multimode radio decoder for rtl-sdr devices using gnuradio"
 HOMEPAGE="https://www.cgran.org/browser/projects/multimode/trunk"
+
 LICENSE="BSD"
 SLOT="0"
 IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 if [[ ${PV} == "9999" ]] ; then
 	ESVN_REPO_URI="https://www.cgran.org/svn/projects/multimode/trunk"
 	inherit subversion
-	KEYWORDS=""
 else
 	SRC_URI="http://www.sbrac.org/files/${PN}-r${PV}.tar.gz"
 	KEYWORDS="~amd64 ~arm ~x86"
 	S="${WORKDIR}"
 fi
 
-DEPEND=""
+DEPEND="${PYTHON_DEPS}"
 RDEPEND="${DEPEND}
 	>=net-wireless/gr-osmosdr-0.0.1
 	<net-wireless/gnuradio-3.7:=[grc,utils,${PYTHON_USEDEP}]

diff --git a/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild b/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild
index 4706ae3f612..b8a3b0feeac 100644
--- a/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild
+++ b/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild
@@ -1,28 +1,31 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
+
 PYTHON_COMPAT=( python2_7 )
 
 inherit python-single-r1
 
 DESCRIPTION="multimode radio decoder for rtl-sdr devices using gnuradio"
 HOMEPAGE="https://www.cgran.org/browser/projects/multimode/trunk"
+
 LICENSE="BSD"
 SLOT="0"
 IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 if [[ ${PV} == "9999" ]] ; then
 	ESVN_REPO_URI="https://www.cgran.org/svn/projects/multimode/trunk"
 	inherit subversion
-	KEYWORDS=""
 else
 	#SRC_URI="http://www.sbrac.org/files/${PN}-r${PV}.tar.gz"
 	SRC_URI="https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm ~x86"
 fi
 
-DEPEND=">=net-wireless/gnuradio-3.7:=[grc,utils,${PYTHON_USEDEP}]
+DEPEND="${PYTHON_DEPS}
+	>=net-wireless/gnuradio-3.7:=[grc,utils,${PYTHON_USEDEP}]
 	>=net-wireless/gr-osmosdr-0.1.0:="
 RDEPEND="${DEPEND}"
 

diff --git a/net-wireless/multimode/multimode-9999.ebuild b/net-wireless/multimode/multimode-9999.ebuild
index f9a9e9eb6e3..b6713c20413 100644
--- a/net-wireless/multimode/multimode-9999.ebuild
+++ b/net-wireless/multimode/multimode-9999.ebuild
@@ -1,28 +1,31 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
+
 PYTHON_COMPAT=( python2_7 )
 
 inherit python-single-r1
 
 DESCRIPTION="multimode radio decoder for rtl-sdr devices using gnuradio"
 HOMEPAGE="https://www.cgran.org/browser/projects/multimode/trunk"
+
 LICENSE="BSD"
 SLOT="0"
 IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 if [[ ${PV} == "9999" ]] ; then
 	ESVN_REPO_URI="https://www.cgran.org/svn/projects/multimode/trunk"
 	inherit subversion
-	KEYWORDS=""
 else
 	#SRC_URI="http://www.sbrac.org/files/${PN}-r${PV}.tar.gz"
 	SRC_URI="https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm ~x86"
 fi
 
-DEPEND="=net-wireless/gnuradio-9999:=[grc,utils,${PYTHON_USEDEP}]
+DEPEND="${PYTHON_DEPS}
+	=net-wireless/gnuradio-9999:=[grc,utils,${PYTHON_USEDEP}]
 	=net-wireless/gr-osmosdr-9999:="
 RDEPEND="${DEPEND}"
 


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-wireless/multimode/
@ 2017-10-04  9:15 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2017-10-04  9:15 UTC (permalink / raw
  To: gentoo-commits

commit:     1131606980323f7162fcc2d5b44675fc95064bcd
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  4 07:31:29 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct  4 09:14:59 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11316069

net-wireless/multimode: Strip empty metadata.xml elements

 net-wireless/multimode/metadata.xml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/net-wireless/multimode/metadata.xml b/net-wireless/multimode/metadata.xml
index 6158e092633..8a3f9407356 100644
--- a/net-wireless/multimode/metadata.xml
+++ b/net-wireless/multimode/metadata.xml
@@ -9,6 +9,4 @@
 	<email>radio@gentoo.org</email>
 	<name>Radio</name>
 </maintainer>
-<longdescription lang="en">
-</longdescription>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-wireless/multimode/
@ 2019-01-07 23:01 Andreas Sturmlechner
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas Sturmlechner @ 2019-01-07 23:01 UTC (permalink / raw
  To: gentoo-commits

commit:     dfcda8fcb1675e9279c31fea0ee23b49c74af432
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  1 01:06:12 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=dfcda8fc

net-wireless/multimode: Drop 1.00-r2

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-wireless/multimode/Manifest                 |  1 -
 net-wireless/multimode/multimode-1.00-r2.ebuild | 44 -------------------------
 2 files changed, 45 deletions(-)

diff --git a/net-wireless/multimode/Manifest b/net-wireless/multimode/Manifest
index 8a629813c86..eef9dda6f5b 100644
--- a/net-wireless/multimode/Manifest
+++ b/net-wireless/multimode/Manifest
@@ -1,2 +1 @@
 DIST multimode-1.4_p20140831.tar.xz 7648 BLAKE2B 1efec8c12e46b63f5501f1cf28f2e1f57d378c578656ecae771f0b98b873bbc1f119652a9f4607c9c0f3c5f3ca4f7109c48509f8339a1b22b8e3ef2af7214407 SHA512 891428e6c049cfd94787bd7580a59b3a9eb488dbf97cd21a1d82be04648e5423c3ce73983d38c5a3c280519ebea73c9572e9b0cdc7df453114e6aa220a58eaff
-DIST multimode-r1.00.tar.gz 13931 BLAKE2B cb6c147af3eb5cbded77446155b5322ba8df8cedc43b4891f730cb542e03df1acbe7905105d4c8c2acdc0ffafa797f0734194458b3617f3b7fe6713dbf33a0ca SHA512 9c224794139592622bc441a8d17265963eda56d691f45ebc0220ee3e3907e53b113dae0c8452330753fafd94964663d70bad2dce43cbe05a3abcd477112f3c98

diff --git a/net-wireless/multimode/multimode-1.00-r2.ebuild b/net-wireless/multimode/multimode-1.00-r2.ebuild
deleted file mode 100644
index aaa5a053442..00000000000
--- a/net-wireless/multimode/multimode-1.00-r2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-single-r1
-
-DESCRIPTION="multimode radio decoder for rtl-sdr devices using gnuradio"
-HOMEPAGE="https://www.cgran.org/browser/projects/multimode/trunk"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-if [[ ${PV} == "9999" ]] ; then
-	ESVN_REPO_URI="https://www.cgran.org/svn/projects/multimode/trunk"
-	inherit subversion
-else
-	SRC_URI="http://www.sbrac.org/files/${PN}-r${PV}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~x86"
-	S="${WORKDIR}"
-fi
-
-DEPEND="${PYTHON_DEPS}"
-RDEPEND="${DEPEND}
-	>=net-wireless/gr-osmosdr-0.0.1
-	<net-wireless/gnuradio-3.7:=[grc,utils,${PYTHON_USEDEP}]
-	>=net-wireless/rtl-sdr-0.5.0"
-
-src_compile() {
-	PYTHONPATH="${S}":"${PYTHONPATH}" emake
-}
-
-src_install() {
-	newbin ${PN}.py ${PN}
-	insinto $(python_get_sitedir)
-	doins ${PN}_helper.py
-	insinto /usr/share/${PN}
-	doins ${PN}.grc
-	python_fix_shebang "${ED}"/usr/bin
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-wireless/multimode/
@ 2019-08-29 10:05 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2019-08-29 10:05 UTC (permalink / raw
  To: gentoo-commits

commit:     b1d7ea1f610f32bac5f9ceeb4dc55948ba71fb7f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 29 05:32:18 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Aug 29 10:05:42 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1d7ea1f

net-wireless/multimode: Fix DoublePrefixInPath

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild | 5 ++---
 net-wireless/multimode/multimode-9999.ebuild             | 5 ++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild b/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild
index b8a3b0feeac..b57130054c5 100644
--- a/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild
+++ b/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -35,8 +35,7 @@ src_compile() {
 
 src_install() {
 	newbin ${PN}.py ${PN}
-	insinto $(python_get_sitedir)
-	doins ${PN}_helper.py
+	python_domodule ${PN}_helper.py
 	insinto /usr/share/${PN}
 	doins ${PN}.grc
 	python_fix_shebang "${ED}"/usr/bin

diff --git a/net-wireless/multimode/multimode-9999.ebuild b/net-wireless/multimode/multimode-9999.ebuild
index b6713c20413..8de909cb340 100644
--- a/net-wireless/multimode/multimode-9999.ebuild
+++ b/net-wireless/multimode/multimode-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -35,8 +35,7 @@ src_compile() {
 
 src_install() {
 	newbin ${PN}.py ${PN}
-	insinto $(python_get_sitedir)
-	doins ${PN}_helper.py
+	python_domodule ${PN}_helper.py
 	insinto /usr/share/${PN}
 	doins ${PN}.grc
 	python_fix_shebang "${ED}"/usr/bin


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-wireless/multimode/
@ 2020-02-09 16:34 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2020-02-09 16:34 UTC (permalink / raw
  To: gentoo-commits

commit:     91c02cc5bb8f4d417c207820c9b152408b397c8c
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  7 17:48:04 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb  9 16:34:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91c02cc5

net-wireless/multimode: Switch to PYTHON_SINGLE_USEDEP

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 ...mode-1.4_p20140831-r1.ebuild => multimode-1.4_p20140831-r2.ebuild} | 4 ++--
 net-wireless/multimode/multimode-9999.ebuild                          | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild b/net-wireless/multimode/multimode-1.4_p20140831-r2.ebuild
similarity index 89%
rename from net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild
rename to net-wireless/multimode/multimode-1.4_p20140831-r2.ebuild
index b57130054c5..3cdc6cd432c 100644
--- a/net-wireless/multimode/multimode-1.4_p20140831-r1.ebuild
+++ b/net-wireless/multimode/multimode-1.4_p20140831-r2.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=5
@@ -25,7 +25,7 @@ else
 fi
 
 DEPEND="${PYTHON_DEPS}
-	>=net-wireless/gnuradio-3.7:=[grc,utils,${PYTHON_USEDEP}]
+	>=net-wireless/gnuradio-3.7:=[grc,utils,${PYTHON_SINGLE_USEDEP}]
 	>=net-wireless/gr-osmosdr-0.1.0:="
 RDEPEND="${DEPEND}"
 

diff --git a/net-wireless/multimode/multimode-9999.ebuild b/net-wireless/multimode/multimode-9999.ebuild
index 8de909cb340..e8614f1c94d 100644
--- a/net-wireless/multimode/multimode-9999.ebuild
+++ b/net-wireless/multimode/multimode-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=5
@@ -25,7 +25,7 @@ else
 fi
 
 DEPEND="${PYTHON_DEPS}
-	=net-wireless/gnuradio-9999:=[grc,utils,${PYTHON_USEDEP}]
+	=net-wireless/gnuradio-9999:=[grc,utils,${PYTHON_SINGLE_USEDEP}]
 	=net-wireless/gr-osmosdr-9999:="
 RDEPEND="${DEPEND}"
 


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-02-09 16:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-04  9:15 [gentoo-commits] repo/gentoo:master commit in: net-wireless/multimode/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2020-02-09 16:34 Michał Górny
2019-08-29 10:05 Michał Górny
2019-01-07 23:01 Andreas Sturmlechner
2017-04-23 21:01 David Seifert
2015-11-08  3:21 Brian Evans

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox