* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-rds/
@ 2019-01-07 23:01 Andreas Sturmlechner
0 siblings, 0 replies; 11+ messages in thread
From: Andreas Sturmlechner @ 2019-01-07 23:01 UTC (permalink / raw
To: gentoo-commits
commit: c1691dcd4fe253a6d93a958d69909f04e95cb44f
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 1 00:19:01 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jan 7 22:59:55 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1691dcd
net-wireless/gr-rds: EAPI-7 bump, add missing cmake-utils_src_prepare
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
net-wireless/gr-rds/gr-rds-9999.ebuild | 42 ++++++++++++++++++----------------
1 file changed, 22 insertions(+), 20 deletions(-)
diff --git a/net-wireless/gr-rds/gr-rds-9999.ebuild b/net-wireless/gr-rds/gr-rds-9999.ebuild
index 39a3b5f3f6f..7a3bffd7a3f 100644
--- a/net-wireless/gr-rds/gr-rds-9999.ebuild
+++ b/net-wireless/gr-rds/gr-rds-9999.ebuild
@@ -1,44 +1,46 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils python-single-r1
+EAPI=7
-DESCRIPTION="gnuradio FM RDS Receiver"
-HOMEPAGE="https://github.com/bastibl/gr-rds"
+PYTHON_COMPAT=( python2_7 )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/bastibl/${PN}"
+else
KEYWORDS=""
-#else
-# SRC_URI=""
-# KEYWORDS=""
fi
+inherit cmake-utils python-single-r1
+
+DESCRIPTION="GNU Radio FM RDS Receiver"
+HOMEPAGE="https://github.com/bastibl/gr-rds"
LICENSE="GPL-3"
SLOT="0/${PV}"
-RDEPEND=">=net-wireless/gnuradio-3.7_rc:0=[${PYTHON_USEDEP}]
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
dev-libs/boost:=[${PYTHON_USEDEP}]
- ${PYTHON_DEPS}"
-DEPEND="${RDEPEND}
- dev-lang/swig:0"
+ >=net-wireless/gnuradio-3.7_rc:0=[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ dev-lang/swig:0
+"
#cppunit is listed in cmake, but only needed for tests and there are no tests
# dev-util/cppunit"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
src_prepare() {
+ cmake-utils_src_prepare
#although cppunit is not used, it fails if it isn't there, fix it
- sed -i 's#FATAL_ERROR "CppUnit#MESSAGE "CppUnit#' CMakeLists.txt
- sed -i '/${CPPUNIT_INCLUDE_DIRS}/d' CMakeLists.txt
- sed -i '/${CPPUNIT_LIBRARY_DIRS}/d' CMakeLists.txt
+ sed -i 's#FATAL_ERROR "CppUnit#MESSAGE "CppUnit#' CMakeLists.txt || die
+ sed -i '/${CPPUNIT_INCLUDE_DIRS}/d' CMakeLists.txt || die
+ sed -i '/${CPPUNIT_LIBRARY_DIRS}/d' CMakeLists.txt || die
}
src_configure() {
- mycmakeargs=( -DPYTHON_EXECUTABLE="${PYTHON}" )
+ local mycmakeargs=( -DPYTHON_EXECUTABLE="${PYTHON}" )
cmake-utils_src_configure
}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-rds/
@ 2020-02-09 16:34 Michał Górny
0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2020-02-09 16:34 UTC (permalink / raw
To: gentoo-commits
commit: 9f739a9f2fed5a00fadbb811d9c64c81fee22988
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 7 17:45:02 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb 9 16:34:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f739a9f
net-wireless/gr-rds: Switch to PYTHON_MULTI_USEDEP API
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
net-wireless/gr-rds/gr-rds-9999.ebuild | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/net-wireless/gr-rds/gr-rds-9999.ebuild b/net-wireless/gr-rds/gr-rds-9999.ebuild
index 7a3bffd7a3f..10e9f43865d 100644
--- a/net-wireless/gr-rds/gr-rds-9999.ebuild
+++ b/net-wireless/gr-rds/gr-rds-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
@@ -22,8 +22,10 @@ SLOT="0/${PV}"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
- dev-libs/boost:=[${PYTHON_USEDEP}]
- >=net-wireless/gnuradio-3.7_rc:0=[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep '
+ dev-libs/boost:=[${PYTHON_MULTI_USEDEP}]
+ ')
+ >=net-wireless/gnuradio-3.7_rc:0=[${PYTHON_SINGLE_USEDEP}]
"
DEPEND="${RDEPEND}"
BDEPEND="
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-rds/
@ 2020-08-30 2:13 Rick Farina
0 siblings, 0 replies; 11+ messages in thread
From: Rick Farina @ 2020-08-30 2:13 UTC (permalink / raw
To: gentoo-commits
commit: fdf6a54d73c0ae20a6f1de8d68c60e74d3d52af9
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 30 02:12:38 2020 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Sun Aug 30 02:12:52 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdf6a54d
net-wireless/gr-rds: update
support new python
support new gnuradio
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
net-wireless/gr-rds/Manifest | 1 +
...-rds-9999.ebuild => gr-rds-0.0_p20200807.ebuild} | 21 +++++++++++++++------
net-wireless/gr-rds/gr-rds-9999.ebuild | 21 +++++++++++++++------
3 files changed, 31 insertions(+), 12 deletions(-)
diff --git a/net-wireless/gr-rds/Manifest b/net-wireless/gr-rds/Manifest
new file mode 100644
index 00000000000..73715037939
--- /dev/null
+++ b/net-wireless/gr-rds/Manifest
@@ -0,0 +1 @@
+DIST gr-rds-0.0_p20200807.tar.gz 210730 BLAKE2B be2ded79a744d97572f754458fbab6c4091eb9096fa01238e09cfb1703d50fc1f228000b973826456fe4fae7577ef4dcc871edb4f72bd4e2daacdf3d01330d03 SHA512 d04944db7c02d3a004beae5be96a42274dcc4503d94bd22b726c664fb49103c41479ce49f7b4f2e6fb86d7b6bdd01873375fd6a7a7cc4b04ec9bf033235743a2
diff --git a/net-wireless/gr-rds/gr-rds-9999.ebuild b/net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild
similarity index 69%
copy from net-wireless/gr-rds/gr-rds-9999.ebuild
copy to net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild
index 10e9f43865d..e4b42b14c55 100644
--- a/net-wireless/gr-rds/gr-rds-9999.ebuild
+++ b/net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild
@@ -3,15 +3,19 @@
EAPI=7
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python3_{7,8} )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/bastibl/${PN}"
+ EGIT_BRANCH="maint-3.8"
else
- KEYWORDS=""
+ KEYWORDS="~amd64 ~x86"
+ COMMIT="ffbe3ea302c32a621f14329b7fcc09e868305e78"
+ SRC_URI="https://github.com/bastibl/gr-rds/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+ S="${WORKDIR}/${PN}-${COMMIT}"
fi
-inherit cmake-utils python-single-r1
+inherit cmake python-single-r1
DESCRIPTION="GNU Radio FM RDS Receiver"
HOMEPAGE="https://github.com/bastibl/gr-rds"
@@ -25,7 +29,7 @@ RDEPEND="${PYTHON_DEPS}
$(python_gen_cond_dep '
dev-libs/boost:=[${PYTHON_MULTI_USEDEP}]
')
- >=net-wireless/gnuradio-3.7_rc:0=[${PYTHON_SINGLE_USEDEP}]
+ =net-wireless/gnuradio-3.8*:0=[${PYTHON_SINGLE_USEDEP}]
"
DEPEND="${RDEPEND}"
BDEPEND="
@@ -35,7 +39,7 @@ BDEPEND="
# dev-util/cppunit"
src_prepare() {
- cmake-utils_src_prepare
+ cmake_src_prepare
#although cppunit is not used, it fails if it isn't there, fix it
sed -i 's#FATAL_ERROR "CppUnit#MESSAGE "CppUnit#' CMakeLists.txt || die
sed -i '/${CPPUNIT_INCLUDE_DIRS}/d' CMakeLists.txt || die
@@ -44,5 +48,10 @@ src_prepare() {
src_configure() {
local mycmakeargs=( -DPYTHON_EXECUTABLE="${PYTHON}" )
- cmake-utils_src_configure
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+ python_optimize
}
diff --git a/net-wireless/gr-rds/gr-rds-9999.ebuild b/net-wireless/gr-rds/gr-rds-9999.ebuild
index 10e9f43865d..e4b42b14c55 100644
--- a/net-wireless/gr-rds/gr-rds-9999.ebuild
+++ b/net-wireless/gr-rds/gr-rds-9999.ebuild
@@ -3,15 +3,19 @@
EAPI=7
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python3_{7,8} )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/bastibl/${PN}"
+ EGIT_BRANCH="maint-3.8"
else
- KEYWORDS=""
+ KEYWORDS="~amd64 ~x86"
+ COMMIT="ffbe3ea302c32a621f14329b7fcc09e868305e78"
+ SRC_URI="https://github.com/bastibl/gr-rds/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+ S="${WORKDIR}/${PN}-${COMMIT}"
fi
-inherit cmake-utils python-single-r1
+inherit cmake python-single-r1
DESCRIPTION="GNU Radio FM RDS Receiver"
HOMEPAGE="https://github.com/bastibl/gr-rds"
@@ -25,7 +29,7 @@ RDEPEND="${PYTHON_DEPS}
$(python_gen_cond_dep '
dev-libs/boost:=[${PYTHON_MULTI_USEDEP}]
')
- >=net-wireless/gnuradio-3.7_rc:0=[${PYTHON_SINGLE_USEDEP}]
+ =net-wireless/gnuradio-3.8*:0=[${PYTHON_SINGLE_USEDEP}]
"
DEPEND="${RDEPEND}"
BDEPEND="
@@ -35,7 +39,7 @@ BDEPEND="
# dev-util/cppunit"
src_prepare() {
- cmake-utils_src_prepare
+ cmake_src_prepare
#although cppunit is not used, it fails if it isn't there, fix it
sed -i 's#FATAL_ERROR "CppUnit#MESSAGE "CppUnit#' CMakeLists.txt || die
sed -i '/${CPPUNIT_INCLUDE_DIRS}/d' CMakeLists.txt || die
@@ -44,5 +48,10 @@ src_prepare() {
src_configure() {
local mycmakeargs=( -DPYTHON_EXECUTABLE="${PYTHON}" )
- cmake-utils_src_configure
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+ python_optimize
}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-rds/
@ 2021-02-15 2:19 Rick Farina
0 siblings, 0 replies; 11+ messages in thread
From: Rick Farina @ 2021-02-15 2:19 UTC (permalink / raw
To: gentoo-commits
commit: b58a99930e5a8a5252d13017d2d3befcb0c894ae
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 15 02:13:22 2021 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Mon Feb 15 02:19:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b58a9993
net-wireless/gr-rds: python bump
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild | 4 ++--
net-wireless/gr-rds/gr-rds-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild b/net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild
index e4b42b14c55..326e694c008 100644
--- a/net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild
+++ b/net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
diff --git a/net-wireless/gr-rds/gr-rds-9999.ebuild b/net-wireless/gr-rds/gr-rds-9999.ebuild
index e4b42b14c55..326e694c008 100644
--- a/net-wireless/gr-rds/gr-rds-9999.ebuild
+++ b/net-wireless/gr-rds/gr-rds-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-rds/
@ 2022-06-14 11:06 Thomas Beierlein
0 siblings, 0 replies; 11+ messages in thread
From: Thomas Beierlein @ 2022-06-14 11:06 UTC (permalink / raw
To: gentoo-commits
commit: 5ec2b2c4979afc15db8f9007b3b8e49b7b2cc147
Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 14 11:05:59 2022 +0000
Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Tue Jun 14 11:05:59 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ec2b2c4
net-wireless/gr-rds: Add Python3.10 support
Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild | 6 +++---
net-wireless/gr-rds/gr-rds-9999.ebuild | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild b/net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild
index 2f2eb3797c78..8006fb8a3380 100644
--- a/net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild
+++ b/net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_{8,9} )
+PYTHON_COMPAT=( python3_{8..10} )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
diff --git a/net-wireless/gr-rds/gr-rds-9999.ebuild b/net-wireless/gr-rds/gr-rds-9999.ebuild
index 2f2eb3797c78..8006fb8a3380 100644
--- a/net-wireless/gr-rds/gr-rds-9999.ebuild
+++ b/net-wireless/gr-rds/gr-rds-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_{8,9} )
+PYTHON_COMPAT=( python3_{8..10} )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-rds/
@ 2022-09-01 15:50 Rick Farina
0 siblings, 0 replies; 11+ messages in thread
From: Rick Farina @ 2022-09-01 15:50 UTC (permalink / raw
To: gentoo-commits
commit: 621a9ee5b0e88e0d2d6f4479a0bdb8189944819e
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 1 15:44:50 2022 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Thu Sep 1 15:50:21 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=621a9ee5
net-wireless/gr-rds: new snapshot
update for gnuradio 3.10
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
net-wireless/gr-rds/Manifest | 2 +-
.../{gr-rds-0.0_p20200807.ebuild => gr-rds-0.0_p20220804.ebuild} | 8 ++++----
net-wireless/gr-rds/gr-rds-9999.ebuild | 8 ++++----
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/net-wireless/gr-rds/Manifest b/net-wireless/gr-rds/Manifest
index 737150379392..a6de4e1ee9bf 100644
--- a/net-wireless/gr-rds/Manifest
+++ b/net-wireless/gr-rds/Manifest
@@ -1 +1 @@
-DIST gr-rds-0.0_p20200807.tar.gz 210730 BLAKE2B be2ded79a744d97572f754458fbab6c4091eb9096fa01238e09cfb1703d50fc1f228000b973826456fe4fae7577ef4dcc871edb4f72bd4e2daacdf3d01330d03 SHA512 d04944db7c02d3a004beae5be96a42274dcc4503d94bd22b726c664fb49103c41479ce49f7b4f2e6fb86d7b6bdd01873375fd6a7a7cc4b04ec9bf033235743a2
+DIST gr-rds-0.0_p20220804.tar.gz 271652 BLAKE2B 5735f985d3e91c1194545f3e92786e8dd8ac8834a475df11c489673d8bbdfd918fe6b924eb3ce2765e7ec4913a09b4fe390627ba645b8130a81d4b045c98a2d5 SHA512 22e64c1d626a22c76fc71f6b23bfc47abf91adeaad3ce84cc4be688a510a90b69a1490a7a588f23204852e8bb1434882a88f8e496aa50cf944a945aa9f043e5c
diff --git a/net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild b/net-wireless/gr-rds/gr-rds-0.0_p20220804.ebuild
similarity index 88%
rename from net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild
rename to net-wireless/gr-rds/gr-rds-0.0_p20220804.ebuild
index 8006fb8a3380..76779613215c 100644
--- a/net-wireless/gr-rds/gr-rds-0.0_p20200807.ebuild
+++ b/net-wireless/gr-rds/gr-rds-0.0_p20220804.ebuild
@@ -3,15 +3,15 @@
EAPI=8
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{9..10} )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/bastibl/${PN}"
- EGIT_BRANCH="maint-3.8"
+ EGIT_BRANCH="maint-3.10"
else
KEYWORDS="~amd64 ~x86"
- COMMIT="ffbe3ea302c32a621f14329b7fcc09e868305e78"
+ COMMIT="f3646d04c138dc3279528808dcf6f847887e4a4f"
SRC_URI="https://github.com/bastibl/gr-rds/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT}"
fi
@@ -29,7 +29,7 @@ RDEPEND="${PYTHON_DEPS}
$(python_gen_cond_dep '
dev-libs/boost:=[${PYTHON_USEDEP}]
')
- =net-wireless/gnuradio-3.8*:0=[${PYTHON_SINGLE_USEDEP}]
+ net-wireless/gnuradio:0=[${PYTHON_SINGLE_USEDEP}]
"
DEPEND="${RDEPEND}"
BDEPEND="
diff --git a/net-wireless/gr-rds/gr-rds-9999.ebuild b/net-wireless/gr-rds/gr-rds-9999.ebuild
index 8006fb8a3380..76779613215c 100644
--- a/net-wireless/gr-rds/gr-rds-9999.ebuild
+++ b/net-wireless/gr-rds/gr-rds-9999.ebuild
@@ -3,15 +3,15 @@
EAPI=8
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{9..10} )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/bastibl/${PN}"
- EGIT_BRANCH="maint-3.8"
+ EGIT_BRANCH="maint-3.10"
else
KEYWORDS="~amd64 ~x86"
- COMMIT="ffbe3ea302c32a621f14329b7fcc09e868305e78"
+ COMMIT="f3646d04c138dc3279528808dcf6f847887e4a4f"
SRC_URI="https://github.com/bastibl/gr-rds/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT}"
fi
@@ -29,7 +29,7 @@ RDEPEND="${PYTHON_DEPS}
$(python_gen_cond_dep '
dev-libs/boost:=[${PYTHON_USEDEP}]
')
- =net-wireless/gnuradio-3.8*:0=[${PYTHON_SINGLE_USEDEP}]
+ net-wireless/gnuradio:0=[${PYTHON_SINGLE_USEDEP}]
"
DEPEND="${RDEPEND}"
BDEPEND="
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-rds/
@ 2022-09-04 12:12 David Seifert
0 siblings, 0 replies; 11+ messages in thread
From: David Seifert @ 2022-09-04 12:12 UTC (permalink / raw
To: gentoo-commits
commit: d4c617c8b857d62132d0eed77278f71546bea27e
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 4 12:12:11 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Sep 4 12:12:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4c617c8
net-wireless/gr-rds: [QA] correct boost python usedep
Signed-off-by: David Seifert <soap <AT> gentoo.org>
.../{gr-rds-0.0_p20220804.ebuild => gr-rds-0.0_p20220804-r1.ebuild} | 2 +-
net-wireless/gr-rds/gr-rds-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-wireless/gr-rds/gr-rds-0.0_p20220804.ebuild b/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
similarity index 96%
rename from net-wireless/gr-rds/gr-rds-0.0_p20220804.ebuild
rename to net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
index 76779613215c..c43fa001798e 100644
--- a/net-wireless/gr-rds/gr-rds-0.0_p20220804.ebuild
+++ b/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
@@ -27,7 +27,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
$(python_gen_cond_dep '
- dev-libs/boost:=[${PYTHON_USEDEP}]
+ dev-libs/boost:=[python,${PYTHON_USEDEP}]
')
net-wireless/gnuradio:0=[${PYTHON_SINGLE_USEDEP}]
"
diff --git a/net-wireless/gr-rds/gr-rds-9999.ebuild b/net-wireless/gr-rds/gr-rds-9999.ebuild
index 76779613215c..c43fa001798e 100644
--- a/net-wireless/gr-rds/gr-rds-9999.ebuild
+++ b/net-wireless/gr-rds/gr-rds-9999.ebuild
@@ -27,7 +27,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
$(python_gen_cond_dep '
- dev-libs/boost:=[${PYTHON_USEDEP}]
+ dev-libs/boost:=[python,${PYTHON_USEDEP}]
')
net-wireless/gnuradio:0=[${PYTHON_SINGLE_USEDEP}]
"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-rds/
@ 2023-04-04 23:55 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2023-04-04 23:55 UTC (permalink / raw
To: gentoo-commits
commit: 12e67008a0759dbdae154a65dcbdd7f9beb42a44
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 4 23:54:24 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 4 23:54:24 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12e67008
net-wireless/gr-rds: drop python3_9
gnuradio (and soapysdr) lack python 3.9 now.
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild | 4 ++--
net-wireless/gr-rds/gr-rds-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild b/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
index c43fa001798e..252ae7a9e850 100644
--- a/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
+++ b/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_10 )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
diff --git a/net-wireless/gr-rds/gr-rds-9999.ebuild b/net-wireless/gr-rds/gr-rds-9999.ebuild
index c43fa001798e..252ae7a9e850 100644
--- a/net-wireless/gr-rds/gr-rds-9999.ebuild
+++ b/net-wireless/gr-rds/gr-rds-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_10 )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-rds/
@ 2023-04-06 2:18 Rick Farina
0 siblings, 0 replies; 11+ messages in thread
From: Rick Farina @ 2023-04-06 2:18 UTC (permalink / raw
To: gentoo-commits
commit: ae5d073181df631db4166b3f63ff58c357c4432e
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 6 02:07:18 2023 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Thu Apr 6 02:07:26 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae5d0731
net-wireless/gr-rds: enable py3.11, py3.9
Closes: https://bugs.gentoo.org/897176
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild | 2 +-
net-wireless/gr-rds/gr-rds-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild b/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
index 252ae7a9e850..4c255107627b 100644
--- a/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
+++ b/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{9..11} )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
diff --git a/net-wireless/gr-rds/gr-rds-9999.ebuild b/net-wireless/gr-rds/gr-rds-9999.ebuild
index 252ae7a9e850..4c255107627b 100644
--- a/net-wireless/gr-rds/gr-rds-9999.ebuild
+++ b/net-wireless/gr-rds/gr-rds-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{9..11} )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-rds/
@ 2023-07-28 18:23 Rick Farina
0 siblings, 0 replies; 11+ messages in thread
From: Rick Farina @ 2023-07-28 18:23 UTC (permalink / raw
To: gentoo-commits
commit: 94c3821a92bdc2603f9c73a15c1c04b9ab106229
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 28 16:46:29 2023 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Fri Jul 28 18:23:28 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94c3821a
net-wireless/gr-rds: remove unneeded sed
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild | 10 ----------
net-wireless/gr-rds/gr-rds-9999.ebuild | 10 ----------
2 files changed, 20 deletions(-)
diff --git a/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild b/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
index 4c255107627b..5004055f9d05 100644
--- a/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
+++ b/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
@@ -35,16 +35,6 @@ DEPEND="${RDEPEND}"
BDEPEND="
dev-lang/swig:0
"
-#cppunit is listed in cmake, but only needed for tests and there are no tests
-# dev-util/cppunit"
-
-src_prepare() {
- cmake_src_prepare
- #although cppunit is not used, it fails if it isn't there, fix it
- sed -i 's#FATAL_ERROR "CppUnit#MESSAGE "CppUnit#' CMakeLists.txt || die
- sed -i '/${CPPUNIT_INCLUDE_DIRS}/d' CMakeLists.txt || die
- sed -i '/${CPPUNIT_LIBRARY_DIRS}/d' CMakeLists.txt || die
-}
src_configure() {
local mycmakeargs=( -DPYTHON_EXECUTABLE="${PYTHON}" )
diff --git a/net-wireless/gr-rds/gr-rds-9999.ebuild b/net-wireless/gr-rds/gr-rds-9999.ebuild
index 4c255107627b..5004055f9d05 100644
--- a/net-wireless/gr-rds/gr-rds-9999.ebuild
+++ b/net-wireless/gr-rds/gr-rds-9999.ebuild
@@ -35,16 +35,6 @@ DEPEND="${RDEPEND}"
BDEPEND="
dev-lang/swig:0
"
-#cppunit is listed in cmake, but only needed for tests and there are no tests
-# dev-util/cppunit"
-
-src_prepare() {
- cmake_src_prepare
- #although cppunit is not used, it fails if it isn't there, fix it
- sed -i 's#FATAL_ERROR "CppUnit#MESSAGE "CppUnit#' CMakeLists.txt || die
- sed -i '/${CPPUNIT_INCLUDE_DIRS}/d' CMakeLists.txt || die
- sed -i '/${CPPUNIT_LIBRARY_DIRS}/d' CMakeLists.txt || die
-}
src_configure() {
local mycmakeargs=( -DPYTHON_EXECUTABLE="${PYTHON}" )
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-rds/
@ 2024-05-31 11:11 Thomas Beierlein
0 siblings, 0 replies; 11+ messages in thread
From: Thomas Beierlein @ 2024-05-31 11:11 UTC (permalink / raw
To: gentoo-commits
commit: e774a2e74119491a1f0e552918c22443df11337f
Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Fri May 31 11:10:26 2024 +0000
Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Fri May 31 11:10:36 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e774a2e7
net-wireless/gr-rds: Add Python 3.12 support
Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
...{gr-rds-0.0_p20220804-r1.ebuild => gr-rds-0.0_p20220804-r2.ebuild} | 4 ++--
net-wireless/gr-rds/gr-rds-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild b/net-wireless/gr-rds/gr-rds-0.0_p20220804-r2.ebuild
similarity index 92%
rename from net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
rename to net-wireless/gr-rds/gr-rds-0.0_p20220804-r2.ebuild
index 5004055f9d05..ef3954a77e83 100644
--- a/net-wireless/gr-rds/gr-rds-0.0_p20220804-r1.ebuild
+++ b/net-wireless/gr-rds/gr-rds-0.0_p20220804-r2.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=8
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{9..12} )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
diff --git a/net-wireless/gr-rds/gr-rds-9999.ebuild b/net-wireless/gr-rds/gr-rds-9999.ebuild
index 5004055f9d05..ef3954a77e83 100644
--- a/net-wireless/gr-rds/gr-rds-9999.ebuild
+++ b/net-wireless/gr-rds/gr-rds-9999.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=8
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{9..12} )
if [[ ${PV} == 9999* ]]; then
inherit git-r3
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-05-31 11:11 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-15 2:19 [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-rds/ Rick Farina
-- strict thread matches above, loose matches on Subject: below --
2024-05-31 11:11 Thomas Beierlein
2023-07-28 18:23 Rick Farina
2023-04-06 2:18 Rick Farina
2023-04-04 23:55 Sam James
2022-09-04 12:12 David Seifert
2022-09-01 15:50 Rick Farina
2022-06-14 11:06 Thomas Beierlein
2020-08-30 2:13 Rick Farina
2020-02-09 16:34 Michał Górny
2019-01-07 23:01 Andreas Sturmlechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox