public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-irc/rhapsody/
@ 2020-11-07 19:22 Andreas K. Hüttel
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas K. Hüttel @ 2020-11-07 19:22 UTC (permalink / raw
  To: gentoo-commits

commit:     3a39d3b47c2e1c451e8af16f1cc52b3c6a00cb62
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  7 19:21:49 2020 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Nov  7 19:22:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a39d3b4

net-irc/rhapsody: Apply gcc-10 workaround

Bug: https://bugs.gentoo.org/706702
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 net-irc/rhapsody/rhapsody-0.28b.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-irc/rhapsody/rhapsody-0.28b.ebuild b/net-irc/rhapsody/rhapsody-0.28b.ebuild
index 52d276a3bb7..921c22d2b27 100644
--- a/net-irc/rhapsody/rhapsody-0.28b.ebuild
+++ b/net-irc/rhapsody/rhapsody-0.28b.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -28,7 +28,7 @@ src_configure() {
 }
 
 src_compile() {
-	emake CC="$(tc-getCC)" LOCALFLAGS="${CFLAGS}"
+	emake CC="$(tc-getCC)" LOCALFLAGS="${CFLAGS} -fcommon"
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/rhapsody/
@ 2024-08-01 16:23 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2024-08-01 16:23 UTC (permalink / raw
  To: gentoo-commits

commit:     9cff3b7eacaaa77e4e4af166a740a65b26ed5ba3
Author:     Filip Kobierski <fkobi <AT> pm <DOT> me>
AuthorDate: Thu Aug  1 16:02:34 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Aug  1 16:23:19 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cff3b7e

net-irc/rhapsody: bump to EAPI-8, add missing RDEPEND

- remove empty IUSE
- fix indents

Signed-off-by: Filip Kobierski <fkobi <AT> pm.me>
Closes: https://github.com/gentoo/gentoo/pull/37867
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-irc/rhapsody/rhapsody-0.28b-r1.ebuild | 41 +++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/net-irc/rhapsody/rhapsody-0.28b-r1.ebuild b/net-irc/rhapsody/rhapsody-0.28b-r1.ebuild
new file mode 100644
index 000000000000..96c32e62df43
--- /dev/null
+++ b/net-irc/rhapsody/rhapsody-0.28b-r1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="IRC client intended to be displayed on a text console"
+HOMEPAGE="https://rhapsody.sourceforge.net/"
+SRC_URI="https://downloads.sourceforge.net/${PN}/${PN}_${PV}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+
+DEPEND=">=sys-libs/ncurses-5.0:0="
+RDEPEND="${DEPEND}"
+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
+}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/rhapsody/
@ 2024-08-11 17:19 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2024-08-11 17:19 UTC (permalink / raw
  To: gentoo-commits

commit:     571056e0c7c80cfe1312c9b3f3e5304ce9f7a81d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 11 17:19:07 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 11 17:19:07 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=571056e0

net-irc/rhapsody: Stabilize 0.28b-r1 x86, #937103

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-irc/rhapsody/rhapsody-0.28b-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/rhapsody/rhapsody-0.28b-r1.ebuild b/net-irc/rhapsody/rhapsody-0.28b-r1.ebuild
index 96c32e62df43..c1b4720b34da 100644
--- a/net-irc/rhapsody/rhapsody-0.28b-r1.ebuild
+++ b/net-irc/rhapsody/rhapsody-0.28b-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://downloads.sourceforge.net/${PN}/${PN}_${PV}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
+KEYWORDS="~amd64 ~riscv x86"
 
 DEPEND=">=sys-libs/ncurses-5.0:0="
 RDEPEND="${DEPEND}"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/rhapsody/
@ 2024-08-11 17:19 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2024-08-11 17:19 UTC (permalink / raw
  To: gentoo-commits

commit:     93ffca049eb9769879c02938aba8bf094ff4d6ca
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 11 17:19:08 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 11 17:19:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93ffca04

net-irc/rhapsody: Stabilize 0.28b-r1 amd64, #937103

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-irc/rhapsody/rhapsody-0.28b-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/rhapsody/rhapsody-0.28b-r1.ebuild b/net-irc/rhapsody/rhapsody-0.28b-r1.ebuild
index c1b4720b34da..3d3abaa0ac09 100644
--- a/net-irc/rhapsody/rhapsody-0.28b-r1.ebuild
+++ b/net-irc/rhapsody/rhapsody-0.28b-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://downloads.sourceforge.net/${PN}/${PN}_${PV}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv x86"
+KEYWORDS="amd64 ~riscv x86"
 
 DEPEND=">=sys-libs/ncurses-5.0:0="
 RDEPEND="${DEPEND}"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/rhapsody/
@ 2024-08-29 19:03 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2024-08-29 19:03 UTC (permalink / raw
  To: gentoo-commits

commit:     3edde1d2518eb4b95d49ea5a92650fead97fc8cc
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 29 17:38:07 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> 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 <asturm <AT> 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
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-08-29 19:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-11 17:19 [gentoo-commits] repo/gentoo:master commit in: net-irc/rhapsody/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-08-29 19:03 Andreas Sturmlechner
2024-08-11 17:19 Sam James
2024-08-01 16:23 Andreas Sturmlechner
2020-11-07 19:22 Andreas K. Hüttel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox