From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3647B158030 for ; Wed, 1 Mar 2023 13:44:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F7D1E0769; Wed, 1 Mar 2023 13:44:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4A369E0769 for ; Wed, 1 Mar 2023 13:44:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6270B340CC3 for ; Wed, 1 Mar 2023 13:44:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA0038C1 for ; Wed, 1 Mar 2023 13:44:51 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1677678088.823dd28ad208023866db3665228056ac37dba5fc.ceamac@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/mspdebug/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/mspdebug/mspdebug-0.25.ebuild X-VCS-Directories: dev-embedded/mspdebug/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 823dd28ad208023866db3665228056ac37dba5fc X-VCS-Branch: master Date: Wed, 1 Mar 2023 13:44:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2f41bfb2-5cf4-45b0-9d3a-d74f5ee85d36 X-Archives-Hash: bf34f6d6c9f1d485aea7e4d8dcf3721c commit: 823dd28ad208023866db3665228056ac37dba5fc Author: Viorel Munteanu gentoo org> AuthorDate: Wed Mar 1 11:45:22 2023 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Wed Mar 1 13:41:28 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=823dd28a dev-embedded/mspdebug: drop 0.25 Signed-off-by: Viorel Munteanu gentoo.org> dev-embedded/mspdebug/mspdebug-0.25.ebuild | 33 ------------------------------ 1 file changed, 33 deletions(-) diff --git a/dev-embedded/mspdebug/mspdebug-0.25.ebuild b/dev-embedded/mspdebug/mspdebug-0.25.ebuild deleted file mode 100644 index a4ff1ba9081b..000000000000 --- a/dev-embedded/mspdebug/mspdebug-0.25.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="A free debugger for use with MSP430 MCUs" -HOMEPAGE="https://dlbeer.co.nz/mspdebug/ https://github.com/dlbeer/mspdebug" -SRC_URI="https://github.com/dlbeer/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="readline" - -DEPEND="readline? ( sys-libs/readline:0= ) - virtual/libusb:0" -RDEPEND="${DEPEND}" - -src_prepare() { - default - sed -i "s:-O1 \(.*\) -ggdb:\1:" Makefile || die -} - -src_compile() { - emake CC="$(tc-getCC)" LIBDIR=/usr/lib $(usex readline "" "WITHOUT_READLINE=1") -} - -src_install() { - emake DESTDIR="${ED}" LIBDIR=/usr/lib PREFIX=/usr install - dodoc AUTHORS ChangeLog README -}