Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-paint/
Date: Sun, 26 Jun 2022 10:55:36
Message-Id: 1656240914.4e74f2f00f0b48ea36ebadb3182d22ab7b32a3d9.tomjbe@gentoo
1 commit: 4e74f2f00f0b48ea36ebadb3182d22ab7b32a3d9
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 26 10:54:35 2022 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 26 10:55:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e74f2f0
7
8 net-wireless/gr-paint: Source repo https://github.com/drmpeg/gr-paint38.git no longer exists
9
10 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
11
12 net-wireless/gr-paint/gr-paint-9999.ebuild | 59 ------------------------------
13 1 file changed, 59 deletions(-)
14
15 diff --git a/net-wireless/gr-paint/gr-paint-9999.ebuild b/net-wireless/gr-paint/gr-paint-9999.ebuild
16 deleted file mode 100644
17 index aad1eb07b45d..000000000000
18 --- a/net-wireless/gr-paint/gr-paint-9999.ebuild
19 +++ /dev/null
20 @@ -1,59 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{8,9} )
27 -
28 -if [[ ${PV} == 9999* ]]; then
29 - inherit git-r3
30 - EGIT_REPO_URI="https://github.com/drmpeg/gr-paint38.git"
31 -else
32 - COMMIT="9cb4eabe3b570ccd1f53837681607d73501b5c1e"
33 - SRC_URI="https://github.com/drmpeg/gr-paint38/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
34 - S="${WORKDIR}/${PN}38-${COMMIT}"
35 - KEYWORDS="~amd64"
36 -fi
37 -inherit cmake python-single-r1
38 -
39 -DESCRIPTION="Paints monochrome images into the waterfall of a receiver"
40 -HOMEPAGE="https://github.com/drmpeg/gr-paint"
41 -
42 -LICENSE="GPL-3+"
43 -SLOT="0"
44 -IUSE="doc"
45 -
46 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
47 -#< drmpeg> What tests?
48 -RESTRICT="test"
49 -
50 -DEPEND="${PYTHON_DEPS}
51 - $(python_gen_cond_dep '
52 - dev-libs/boost:=[${PYTHON_USEDEP}]
53 - ')
54 - dev-libs/gmp
55 - sci-libs/volk:=
56 - =net-wireless/gnuradio-3.8*:=[${PYTHON_SINGLE_USEDEP}]
57 -"
58 -RDEPEND="${DEPEND}
59 - media-gfx/imagemagick
60 -"
61 -BDEPEND="
62 - dev-lang/swig
63 - dev-util/cppunit
64 - virtual/pkgconfig
65 - doc? ( app-doc/doxygen )
66 -"
67 -
68 -src_configure() {
69 - local mycmakeargs=(
70 - -DENABLE_DOXYGEN=$(usex doc)
71 - -DPYTHON_EXECUTABLE="${PYTHON}"
72 - )
73 - cmake_src_configure
74 -}
75 -
76 -src_install() {
77 - cmake_src_install
78 - python_optimize
79 -}