Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/ircii/files/, net-irc/ircii/
Date: Wed, 18 Sep 2019 14:46:31
Message-Id: 1568817963.42383b0341c4bfee133291ecb41742446ffec7c9.bkohler@gentoo
1 commit: 42383b0341c4bfee133291ecb41742446ffec7c9
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 18 14:46:03 2019 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 18 14:46:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42383b03
7
8 net-irc/ircii: 20190117 stable, drop old
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 net-irc/ircii/Manifest | 3 --
14 net-irc/ircii/files/ircii-20110228-glibc.patch | 29 --------------------
15 net-irc/ircii/ircii-20110228.ebuild | 38 --------------------------
16 net-irc/ircii/ircii-20111115.ebuild | 34 -----------------------
17 net-irc/ircii/ircii-20170704.ebuild | 36 ------------------------
18 net-irc/ircii/ircii-20190117.ebuild | 2 +-
19 6 files changed, 1 insertion(+), 141 deletions(-)
20
21 diff --git a/net-irc/ircii/Manifest b/net-irc/ircii/Manifest
22 index fa58d1b970e..7e2389987a2 100644
23 --- a/net-irc/ircii/Manifest
24 +++ b/net-irc/ircii/Manifest
25 @@ -1,4 +1 @@
26 -DIST ircii-20110228.tar.bz2 558483 BLAKE2B 52c83503bf258aaf27635d5ac525da61894486681069f7ff56d571f387567ba964976770b1a1e647aae1b0b18416ccc37c7498bc7cfca5c1c26247796638654e SHA512 df27f098ad9c134335b7d97a25a07ef5fd9d14063b2e079a707a472d2582a1451d7697f3123508296c76afdb78257ad6dc358a2ec5af584ab53872c765b01782
27 -DIST ircii-20111115.tar.bz2 555731 BLAKE2B 8715b5d84cbca98005b3c3bf426f632737be2f4a121f673c3d7d76a5f4204c603594779c15a9fe5e886fb33b96cfc149f690508b546752cd4f7c4f9ad8aaf36a SHA512 6f282debbd27865414a2ef9148b23373f83a051b2917432d9fdc2f153c111f8e592286d42a5ad34fd0cdc155e39938094e140910fbf38be494e3ed3da4cd0b6e
28 -DIST ircii-20170704.tar.bz2 596535 BLAKE2B 780b9bc74e80d622df3686d3234ce69c62c0d9ae43322addfc545de76854ba30ec25546921cff449556f9e6b14b7dc00f3b15437789bea8bfa9b3df44d5b7e6c SHA512 a0cdc5603fab040fa2f7d2b3d7a564e9eeac4b402329cba5c6f1a97aa6e587a53ffc4141420dde97dc2cadf22581e74058a0357c6b4b0d0b03f5dea7fa8cbc3a
29 DIST ircii-20190117.tar.bz2 606327 BLAKE2B f7ee5c98f6106f07fec8feb0840aba87a052e5927c5e591f34ea28a9a017fb64c711983e472ae001465cbe29b6b9d88ab65d67c4bb303b9e01dde853aba66bf4 SHA512 08ca96cd62bae35245b40791c8588752b96136b53e5c9434d0f7976d03841fca80e8c83cf8608aad79c381820b06e00167447c6dc0c6294c6b3dfd91a9fdb6d4
30
31 diff --git a/net-irc/ircii/files/ircii-20110228-glibc.patch b/net-irc/ircii/files/ircii-20110228-glibc.patch
32 deleted file mode 100644
33 index 291bf3219eb..00000000000
34 --- a/net-irc/ircii/files/ircii-20110228-glibc.patch
35 +++ /dev/null
36 @@ -1,29 +0,0 @@
37 -From: Nathan Phillip Brink <ohnobinki@××××××××××××××.net>
38 -
39 -Support glibc systems where SIGRTMAX and SIGRTMIN macros can only be fully expanded at runtime.
40 -
41 ---- a/source/mksiginc.c
42 -+++ b/source/mksiginc.c
43 -@@ -191,12 +191,18 @@
44 - signames[SIGRETRACT] = "RETRACT";
45 - #endif
46 -
47 --#if defined(SIGRTMAX) && SIGRTMAX < MY_MAXSIG
48 -- signames[SIGRTMAX] = "RTMAX";
49 -+#if defined(SIGRTMAX)
50 -+ /*
51 -+ * In recent glibc, SIGRTMAX and SIGRTMIN macros are runtime
52 -+ * function calls into libc and must be evaluated at runtime.
53 -+ */
54 -+ if (SIGRTMAX < MY_MAXSIG)
55 -+ signames[SIGRTMAX] = "RTMAX";
56 - #endif
57 -
58 --#if defined(SIGRTMIN) && SIGRTMIN < MY_MAXSIG
59 -- signames[SIGRTMIN] = "RTMIN";
60 -+#if defined(SIGRTMIN)
61 -+ if (SIGRTMIN < MY_MAXSIG)
62 -+ signames[SIGRTMIN] = "RTMIN";
63 - #endif
64 -
65 - #if defined(SIGSAK) && SIGSAK < MY_MAXSIG
66
67 diff --git a/net-irc/ircii/ircii-20110228.ebuild b/net-irc/ircii/ircii-20110228.ebuild
68 deleted file mode 100644
69 index 30fe9cc6b75..00000000000
70 --- a/net-irc/ircii/ircii-20110228.ebuild
71 +++ /dev/null
72 @@ -1,38 +0,0 @@
73 -# Copyright 1999-2017 Gentoo Foundation
74 -# Distributed under the terms of the GNU General Public License v2
75 -
76 -EAPI=4
77 -
78 -inherit eutils toolchain-funcs
79 -
80 -DESCRIPTION="An IRC and ICB client that runs under most UNIX platforms"
81 -SRC_URI="ftp://ircii.warped.com/pub/ircII/${P}.tar.bz2"
82 -HOMEPAGE="http://www.eterna.com.au/ircii/"
83 -
84 -SLOT="0"
85 -LICENSE="BSD"
86 -KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
87 -IUSE="ipv6"
88 -
89 -DEPEND="sys-libs/ncurses
90 - virtual/libiconv"
91 -# This and irc-client both install /usr/bin/irc #247987
92 -RDEPEND="${DEPEND}
93 - !!net-irc/irc-client"
94 -
95 -src_prepare() {
96 - epatch "${FILESDIR}"/${P}-glibc.patch
97 -}
98 -
99 -src_configure() {
100 - tc-export CC
101 - use elibc_glibc || append-libs -liconv
102 - econf $(use_enable ipv6)
103 -}
104 -
105 -src_install() {
106 - emake -j1 DESTDIR="${D}" install
107 -
108 - dodoc ChangeLog INSTALL NEWS README \
109 - doc/Copyright doc/crypto doc/VERSIONS doc/ctcp
110 -}
111
112 diff --git a/net-irc/ircii/ircii-20111115.ebuild b/net-irc/ircii/ircii-20111115.ebuild
113 deleted file mode 100644
114 index 72b797c9b94..00000000000
115 --- a/net-irc/ircii/ircii-20111115.ebuild
116 +++ /dev/null
117 @@ -1,34 +0,0 @@
118 -# Copyright 1999-2017 Gentoo Foundation
119 -# Distributed under the terms of the GNU General Public License v2
120 -
121 -EAPI=4
122 -
123 -inherit eutils toolchain-funcs
124 -
125 -DESCRIPTION="An IRC and ICB client that runs under most UNIX platforms"
126 -SRC_URI="ftp://ircii.warped.com/pub/ircII/${P}.tar.bz2
127 - ftp://ircii.warped.com/pub/ircII/old/${P}.tar.bz2"
128 -HOMEPAGE="http://eterna.com.au/ircii/"
129 -
130 -SLOT="0"
131 -LICENSE="BSD"
132 -KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
133 -IUSE="ipv6"
134 -
135 -DEPEND="sys-libs/ncurses
136 - virtual/libiconv"
137 -# This and irc-client both install /usr/bin/irc #247987
138 -RDEPEND="${DEPEND}
139 - !!net-irc/irc-client"
140 -
141 -src_configure() {
142 - tc-export CC
143 - econf $(use_enable ipv6)
144 -}
145 -
146 -src_install() {
147 - emake -j1 DESTDIR="${D}" install
148 -
149 - dodoc ChangeLog INSTALL NEWS README \
150 - doc/Copyright doc/crypto doc/VERSIONS doc/ctcp
151 -}
152
153 diff --git a/net-irc/ircii/ircii-20170704.ebuild b/net-irc/ircii/ircii-20170704.ebuild
154 deleted file mode 100644
155 index 4cd24ccd382..00000000000
156 --- a/net-irc/ircii/ircii-20170704.ebuild
157 +++ /dev/null
158 @@ -1,36 +0,0 @@
159 -# Copyright 1999-2018 Gentoo Foundation
160 -# Distributed under the terms of the GNU General Public License v2
161 -
162 -EAPI=6
163 -
164 -inherit toolchain-funcs
165 -
166 -DESCRIPTION="An IRC and ICB client that runs under most UNIX platforms"
167 -SRC_URI="https://ircii.warped.com/${P}.tar.bz2
168 - https://ircii.warped.com/old/${P}.tar.bz2"
169 -HOMEPAGE="http://eterna.com.au/ircii/"
170 -
171 -SLOT="0"
172 -LICENSE="BSD"
173 -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
174 -IUSE="ipv6"
175 -
176 -DEPEND="sys-libs/ncurses:0=
177 - virtual/libiconv"
178 -# This and irc-client both install /usr/bin/irc #247987
179 -RDEPEND="${DEPEND}
180 - !net-irc/irc-client"
181 -
182 -PATCHES=( "${FILESDIR}/${PN}-manpage-path.patch" )
183 -
184 -src_configure() {
185 - tc-export CC
186 - econf $(use_enable ipv6)
187 -}
188 -
189 -src_install() {
190 - emake -j1 DESTDIR="${D}" install
191 -
192 - dodoc ChangeLog INSTALL NEWS README \
193 - doc/Copyright doc/crypto doc/VERSIONS doc/ctcp
194 -}
195
196 diff --git a/net-irc/ircii/ircii-20190117.ebuild b/net-irc/ircii/ircii-20190117.ebuild
197 index 03366ecd3a1..677beaac500 100644
198 --- a/net-irc/ircii/ircii-20190117.ebuild
199 +++ b/net-irc/ircii/ircii-20190117.ebuild
200 @@ -12,7 +12,7 @@ HOMEPAGE="http://eterna.com.au/ircii/"
201
202 SLOT="0"
203 LICENSE="BSD"
204 -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
205 +KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
206 IUSE="ipv6"
207
208 DEPEND="sys-libs/ncurses:0=