Gentoo Archives: gentoo-commits

From: Viorel Munteanu <ceamac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/mspdebug/
Date: Wed, 01 Mar 2023 13:44:56
Message-Id: 1677678088.823dd28ad208023866db3665228056ac37dba5fc.ceamac@gentoo
1 commit: 823dd28ad208023866db3665228056ac37dba5fc
2 Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 1 11:45:22 2023 +0000
4 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 1 13:41:28 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=823dd28a
7
8 dev-embedded/mspdebug: drop 0.25
9
10 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
11
12 dev-embedded/mspdebug/mspdebug-0.25.ebuild | 33 ------------------------------
13 1 file changed, 33 deletions(-)
14
15 diff --git a/dev-embedded/mspdebug/mspdebug-0.25.ebuild b/dev-embedded/mspdebug/mspdebug-0.25.ebuild
16 deleted file mode 100644
17 index a4ff1ba9081b..000000000000
18 --- a/dev-embedded/mspdebug/mspdebug-0.25.ebuild
19 +++ /dev/null
20 @@ -1,33 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -inherit toolchain-funcs
27 -
28 -DESCRIPTION="A free debugger for use with MSP430 MCUs"
29 -HOMEPAGE="https://dlbeer.co.nz/mspdebug/ https://github.com/dlbeer/mspdebug"
30 -SRC_URI="https://github.com/dlbeer/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~arm ~x86"
35 -IUSE="readline"
36 -
37 -DEPEND="readline? ( sys-libs/readline:0= )
38 - virtual/libusb:0"
39 -RDEPEND="${DEPEND}"
40 -
41 -src_prepare() {
42 - default
43 - sed -i "s:-O1 \(.*\) -ggdb:\1:" Makefile || die
44 -}
45 -
46 -src_compile() {
47 - emake CC="$(tc-getCC)" LIBDIR=/usr/lib $(usex readline "" "WITHOUT_READLINE=1")
48 -}
49 -
50 -src_install() {
51 - emake DESTDIR="${ED}" LIBDIR=/usr/lib PREFIX=/usr install
52 - dodoc AUTHORS ChangeLog README
53 -}