From 1551fe56fd6ba43a94509cffc61b6bf854b7ac9f Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 1 Jun 2024 00:07:06 +0100 Subject: gentoo auto-resync : 01:06:2024 - 00:07:06 --- net-wireless/gr-paint/Manifest | 2 +- .../gr-paint/gr-paint-0.0_p20230427-r1.ebuild | 63 ++++++++++++++++++++++ .../gr-paint/gr-paint-0.0_p20230427.ebuild | 63 ---------------------- 3 files changed, 64 insertions(+), 64 deletions(-) create mode 100644 net-wireless/gr-paint/gr-paint-0.0_p20230427-r1.ebuild delete mode 100644 net-wireless/gr-paint/gr-paint-0.0_p20230427.ebuild (limited to 'net-wireless/gr-paint') diff --git a/net-wireless/gr-paint/Manifest b/net-wireless/gr-paint/Manifest index 90c2ace727c0..d6bd88a157b2 100644 --- a/net-wireless/gr-paint/Manifest +++ b/net-wireless/gr-paint/Manifest @@ -1,3 +1,3 @@ DIST gr-paint-0.0_p20230427.tar.gz 2094691 BLAKE2B 1dfa5fce3d24911dd9802bd322d4e9916a13066e69e5a0b57201f679a4b9bb985d7ee570e1d3881ecced257927ceb9a3b3845bd60422f407a753482dd35bf0a3 SHA512 7be52c524cdfde8a9620102c9b8cbdd813443c7bd9db1466ec3b73c588bb685fdd917fd2d8c602237b1b0450922d8a058ba9d2d507194a7b1ed4efe0c8f0a5f5 -EBUILD gr-paint-0.0_p20230427.ebuild 1433 BLAKE2B b46eb7a1adaeb0fccf416562abab29705f85689c53d8c240424f0ce4d856d8654e595083a906462c647156c0ba42c1b6021b4ec1d2efe353fc42b3eed4bcea23 SHA512 3a620b19dafef472a219357d8566143cd86c47c18817aa6a9e7e2f7eadf645d99e66f30656302bd47e863d0fad3b60075db5dce8b72e9292e863b97b2908affc +EBUILD gr-paint-0.0_p20230427-r1.ebuild 1433 BLAKE2B 1b49fb417b30c1a1b4847eeba0e912cf854d73360564bb0832f59e5a2a167c52b417187f973db6e1a77e8e0484eb9b2a6b8e5a7d8b0582cf75afa190772e4d84 SHA512 0f53c0d82b848cbff45ecef5ee52dee2c9dec1bac318f2c1ca6b15ec4a339f38b67189271d86b46de3a2d431099f1b74b017d3021379957ac56587b6b2e4ef99 MISC metadata.xml 427 BLAKE2B 1a5880d32b5456304e782a308f10c9d3a566d660cb77aa7434fb9ddead7c20ab83824dd4a723221bec93adb2d700c1ae88726ad1dc28f3134570e312cbfa781e SHA512 decc8d4245a466a7517ffafdfabf1f62c747e40bc8df140c9fed39cf387cb64a183a3c97a128a0db101fa4a485331f086bebff46f92321fd0ed1ac0b9e433729 diff --git a/net-wireless/gr-paint/gr-paint-0.0_p20230427-r1.ebuild b/net-wireless/gr-paint/gr-paint-0.0_p20230427-r1.ebuild new file mode 100644 index 000000000000..c4d4160fbe8a --- /dev/null +++ b/net-wireless/gr-paint/gr-paint-0.0_p20230427-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..12} ) + +if [[ ${PV} == 9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/drmpeg/gr-paint.git" +else + COMMIT="995e888fdd575853349b5c72824c216dace74937" + SRC_URI="https://github.com/drmpeg/gr-paint/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${PN}-${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,${PYTHON_USEDEP}] + ') + dev-libs/gmp + dev-libs/spdlog:= + sci-libs/volk:= + sci-libs/fftw + >=net-wireless/gnuradio-3.9:=[${PYTHON_SINGLE_USEDEP}] + $(python_gen_cond_dep 'dev-python/pygccxml[${PYTHON_USEDEP}]') +" + +RDEPEND="${DEPEND}" + +BDEPEND=" + $(python_gen_cond_dep 'dev-python/pybind11[${PYTHON_USEDEP}]') + virtual/pkgconfig + doc? ( app-text/doxygen ) +" + +src_configure() { + local mycmakeargs=( + -DENABLE_DOXYGEN=$(usex doc) + -DPYTHON_EXECUTABLE="${PYTHON}" + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + find "${D}" -name '*.py[oc]' -delete || die + python_optimize + mv "${ED}/usr/share/doc/gr-paint" "${ED}/usr/share/doc/${P}" +} diff --git a/net-wireless/gr-paint/gr-paint-0.0_p20230427.ebuild b/net-wireless/gr-paint/gr-paint-0.0_p20230427.ebuild deleted file mode 100644 index 73b6850eeac2..000000000000 --- a/net-wireless/gr-paint/gr-paint-0.0_p20230427.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) - -if [[ ${PV} == 9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/drmpeg/gr-paint.git" -else - COMMIT="995e888fdd575853349b5c72824c216dace74937" - SRC_URI="https://github.com/drmpeg/gr-paint/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${PN}-${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,${PYTHON_USEDEP}] - ') - dev-libs/gmp - dev-libs/spdlog:= - sci-libs/volk:= - sci-libs/fftw - >=net-wireless/gnuradio-3.9:=[${PYTHON_SINGLE_USEDEP}] - $(python_gen_cond_dep 'dev-python/pygccxml[${PYTHON_USEDEP}]') -" - -RDEPEND="${DEPEND}" - -BDEPEND=" - $(python_gen_cond_dep 'dev-python/pybind11[${PYTHON_USEDEP}]') - virtual/pkgconfig - doc? ( app-text/doxygen ) -" - -src_configure() { - local mycmakeargs=( - -DENABLE_DOXYGEN=$(usex doc) - -DPYTHON_EXECUTABLE="${PYTHON}" - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - find "${D}" -name '*.py[oc]' -delete || die - python_optimize - mv "${ED}/usr/share/doc/gr-paint" "${ED}/usr/share/doc/${P}" -} -- cgit v1.2.3