diff options
Diffstat (limited to 'net-wireless/gr-paint')
-rw-r--r-- | net-wireless/gr-paint/Manifest | 3 | ||||
-rw-r--r-- | net-wireless/gr-paint/gr-paint-0.0_p20200517-r1.ebuild | 6 | ||||
-rw-r--r-- | net-wireless/gr-paint/gr-paint-9999.ebuild | 59 |
3 files changed, 4 insertions, 64 deletions
diff --git a/net-wireless/gr-paint/Manifest b/net-wireless/gr-paint/Manifest index 967ece787431..16c89530eed4 100644 --- a/net-wireless/gr-paint/Manifest +++ b/net-wireless/gr-paint/Manifest @@ -1,4 +1,3 @@ DIST gr-paint-0.0_p20200517.tar.gz 1588114 BLAKE2B dffae6fdd6832ef7a39911b5f20d385e1691021e49659c36244c4aa1086fa74f4f59aceb4f208a24dd76854455183644c8f7db7e6ed0600664dc02f08e6682c5 SHA512 00b508b08baafd02e69197028a6408da81f5d1bf3dfe6d3229f248d60503ccec48f3fa0491bb785ed1ece40ea90d34544bc3b62e4506459488d56540b9d519c2 -EBUILD gr-paint-0.0_p20200517-r1.ebuild 1215 BLAKE2B 2347a73a629950690c73f75d1109b57ce8cb6021f7a3f0a6fdfbbd2f818248eb9e4c9436a20c1912acf2d84ccb4b9988ae96fab50fde30c2059a9acdd831fc1e SHA512 19a03122b29777231f3654cd1c048b9c7a086d530e0ada160bc59b71fbd70e1fe24ebfa2acb3ffef12756bc2f555672e637d2109839c8d5d5d41aef70d5dbdc7 -EBUILD gr-paint-9999.ebuild 1215 BLAKE2B 2347a73a629950690c73f75d1109b57ce8cb6021f7a3f0a6fdfbbd2f818248eb9e4c9436a20c1912acf2d84ccb4b9988ae96fab50fde30c2059a9acdd831fc1e SHA512 19a03122b29777231f3654cd1c048b9c7a086d530e0ada160bc59b71fbd70e1fe24ebfa2acb3ffef12756bc2f555672e637d2109839c8d5d5d41aef70d5dbdc7 +EBUILD gr-paint-0.0_p20200517-r1.ebuild 1218 BLAKE2B 344f5286fe19450909ac69c8c5860cf556a554c10083dea24239ab71b179fe799fc7abd2f78cbc7167c1a530b1ecfccb94554f643d9ccb9ecd3e491fcc9ceb5f SHA512 1689c034fc09e496398fd4083ab05c7e86c9c86c188c109333c3427d2bd8e8aaecce8bee1a9a96ff216e5193968513142b0c50ad4d70b160daed31dbb95be761 MISC metadata.xml 427 BLAKE2B 1a5880d32b5456304e782a308f10c9d3a566d660cb77aa7434fb9ddead7c20ab83824dd4a723221bec93adb2d700c1ae88726ad1dc28f3134570e312cbfa781e SHA512 decc8d4245a466a7517ffafdfabf1f62c747e40bc8df140c9fed39cf387cb64a183a3c97a128a0db101fa4a485331f086bebff46f92321fd0ed1ac0b9e433729 diff --git a/net-wireless/gr-paint/gr-paint-0.0_p20200517-r1.ebuild b/net-wireless/gr-paint/gr-paint-0.0_p20200517-r1.ebuild index aad1eb07b45d..29e3d30c09af 100644 --- a/net-wireless/gr-paint/gr-paint-0.0_p20200517-r1.ebuild +++ b/net-wireless/gr-paint/gr-paint-0.0_p20200517-r1.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,9,10} ) if [[ ${PV} == 9999* ]]; then inherit git-r3 diff --git a/net-wireless/gr-paint/gr-paint-9999.ebuild b/net-wireless/gr-paint/gr-paint-9999.ebuild deleted file mode 100644 index aad1eb07b45d..000000000000 --- a/net-wireless/gr-paint/gr-paint-9999.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8,9} ) - -if [[ ${PV} == 9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/drmpeg/gr-paint38.git" -else - COMMIT="9cb4eabe3b570ccd1f53837681607d73501b5c1e" - SRC_URI="https://github.com/drmpeg/gr-paint38/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${PN}38-${COMMIT}" - KEYWORDS="~amd64" -fi -inherit cmake python-single-r1 - -DESCRIPTION="Paints monochrome images into the waterfall of a receiver" -HOMEPAGE="https://github.com/drmpeg/gr-paint" - -LICENSE="GPL-3+" -SLOT="0" -IUSE="doc" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -#< drmpeg> What tests? -RESTRICT="test" - -DEPEND="${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-libs/boost:=[${PYTHON_USEDEP}] - ') - dev-libs/gmp - sci-libs/volk:= - =net-wireless/gnuradio-3.8*:=[${PYTHON_SINGLE_USEDEP}] -" -RDEPEND="${DEPEND} - media-gfx/imagemagick -" -BDEPEND=" - dev-lang/swig - dev-util/cppunit - virtual/pkgconfig - doc? ( app-doc/doxygen ) -" - -src_configure() { - local mycmakeargs=( - -DENABLE_DOXYGEN=$(usex doc) - -DPYTHON_EXECUTABLE="${PYTHON}" - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - python_optimize -} |