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 933DC1581FB for ; Thu, 29 Aug 2024 19:03:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A45A32BC021; Thu, 29 Aug 2024 19:03:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 5D9C12BC021 for ; Thu, 29 Aug 2024 19:03:09 +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 9F130342FA7 for ; Thu, 29 Aug 2024 19:03:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CDDD1F39 for ; Thu, 29 Aug 2024 19:03:05 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1724958155.3edde1d2518eb4b95d49ea5a92650fead97fc8cc.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/rhapsody/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/rhapsody/rhapsody-0.28b.ebuild X-VCS-Directories: net-irc/rhapsody/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3edde1d2518eb4b95d49ea5a92650fead97fc8cc X-VCS-Branch: master Date: Thu, 29 Aug 2024 19:03:05 +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: 76814d0e-6496-46cd-a2f7-0d476ee968d7 X-Archives-Hash: 5eb847ff3ceb1c92457facd5d460a561 commit: 3edde1d2518eb4b95d49ea5a92650fead97fc8cc Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Aug 29 17:38:07 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Aug 29 19:02:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3edde1d2 net-irc/rhapsody: drop 0.28b Bug: https://bugs.gentoo.org/937103 Signed-off-by: Andreas Sturmlechner gentoo.org> net-irc/rhapsody/rhapsody-0.28b.ebuild | 41 ---------------------------------- 1 file changed, 41 deletions(-) diff --git a/net-irc/rhapsody/rhapsody-0.28b.ebuild b/net-irc/rhapsody/rhapsody-0.28b.ebuild deleted file mode 100644 index d95565a1196f..000000000000 --- a/net-irc/rhapsody/rhapsody-0.28b.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="IRC client intended to be displayed on a text console" -HOMEPAGE="http://rhapsody.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/${PN}/${PN}_${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~riscv x86" -IUSE="" - -DEPEND=">=sys-libs/ncurses-5.0:0=" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${P}-uclibc.patch - "${FILESDIR}"/${P}-tinfo.patch -) - -src_configure() { - PKGCONFIG="$(tc-getPKG_CONFIG)" \ - ./configure -i /usr/share/rhapsody || die "configure failed" -} - -src_compile() { - emake CC="$(tc-getCC)" LOCALFLAGS="${CFLAGS} -fcommon" -} - -src_install() { - dobin rhapsody - - insinto /usr/share/rhapsody/help - doins help/*.hlp - - dodoc docs/CHANGELOG -}