Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/epic4/, net-irc/epic4/files/, profiles/
Date: Sat, 20 Apr 2019 23:26:24
Message-Id: 1555747370.2729be439f22f737dc520f897705e3633da97889.mgorny@gentoo
1 commit: 2729be439f22f737dc520f897705e3633da97889
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 20 08:02:50 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 20 08:02:50 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2729be43
7
8 net-irc/epic4: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/677734
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 net-irc/epic4/Manifest | 3 -
14 net-irc/epic4/epic4-2.10.1.ebuild | 96 ----------------------
15 net-irc/epic4/files/epic-defaultserver.patch | 12 ---
16 .../epic4/files/epic4-2.10.1-make-recursion.patch | 10 ---
17 net-irc/epic4/files/epic4-2.10.1-perl.patch | 54 ------------
18 net-irc/epic4/metadata.xml | 5 --
19 profiles/package.mask | 2 -
20 7 files changed, 182 deletions(-)
21
22 diff --git a/net-irc/epic4/Manifest b/net-irc/epic4/Manifest
23 deleted file mode 100644
24 index 1ebdc0be8fb..00000000000
25 --- a/net-irc/epic4/Manifest
26 +++ /dev/null
27 @@ -1,3 +0,0 @@
28 -DIST epic4-2.10.1.tar.bz2 629722 BLAKE2B 9e28c053ce72eeeeb031c42cc2ebb838a8c5acf18764381d26906afa0ba4471c6241ff65b9f537b51054749698bf7ff9672d7f212cee1b19965a99bca47c29ef SHA512 382a0ad6d2778aba037ee1cf065ec7d2ea3827957010f9eea36072fbb8bf14cdba5baffa9a3ce7888305a2451ae61a4b5b5823336fc80b73997fe0d609918656
29 -DIST epic4-help-20050315.tar.gz 332502 BLAKE2B 6839c828883bf42545e0d54512377558ec031359a296c014152d8ee136063299d6dbf1e7143b8f32a1ee4d4250029206f6a8fdb3f07c295736cd83a3530e4886 SHA512 f59339d4f2c339cb4c3cbc0cce7db8fadbfe469884c16ab9add42e98eb318851e48ce8a04b4920d33c42afff8b39ec41186744eda0460af544c43fe14658e7e6
30 -DIST epic4-local.bz2 6530 BLAKE2B 3c4e32dc0f47e74ed750e0f12713b026f75137f8f0edfe28d05c2b527c3117edf834e604cb33f2e2569577c39a38c787437ab68ccc8d426e68b6637565ac78df SHA512 2f4bb0aee284ddedd95dd97b17bd1756fcc700ec07b2814d84f3185e215134600fdd0fadf7ecb1d490ebb449f5e9530fcb207ebfaec27cfce1f9570e73103cc1
31
32 diff --git a/net-irc/epic4/epic4-2.10.1.ebuild b/net-irc/epic4/epic4-2.10.1.ebuild
33 deleted file mode 100644
34 index fa6e98d5075..00000000000
35 --- a/net-irc/epic4/epic4-2.10.1.ebuild
36 +++ /dev/null
37 @@ -1,96 +0,0 @@
38 -# Copyright 1999-2017 Gentoo Foundation
39 -# Distributed under the terms of the GNU General Public License v2
40 -
41 -EAPI=4
42 -
43 -inherit autotools eutils flag-o-matic toolchain-funcs
44 -
45 -HELP_V="20050315"
46 -
47 -DESCRIPTION="Epic4 IRC Client"
48 -HOMEPAGE="http://epicsol.org/"
49 -SRC_URI="
50 - ftp://ftp.epicsol.org/pub/epic/EPIC4-PRODUCTION/${P}.tar.bz2
51 - ftp://prbh.org/pub/epic/EPIC4-PRODUCTION/epic4-help-${HELP_V}.tar.gz
52 - mirror://gentoo/epic4-local.bz2"
53 -
54 -LICENSE="BSD"
55 -SLOT="0"
56 -KEYWORDS="alpha amd64 hppa ia64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
57 -IUSE="ipv6 perl ssl"
58 -
59 -DEPEND="
60 - >=sys-libs/ncurses-5.2
61 - perl? ( dev-lang/perl )
62 - ssl? ( >=dev-libs/openssl-0.9.5:0 )"
63 -RDEPEND="${DEPEND}"
64 -
65 -src_prepare() {
66 - epatch \
67 - "${FILESDIR}"/epic-defaultserver.patch \
68 - "${FILESDIR}"/${P}-make-recursion.patch \
69 - "${FILESDIR}"/${P}-perl.patch
70 -
71 - eautoconf
72 -
73 - rm -f "${WORKDIR}"/help/Makefile || die
74 - ecvs_clean
75 -}
76 -
77 -src_configure() {
78 - replace-flags "-O?" "-O"
79 -
80 - # copied from alt overlay
81 - [[ ${CHOST} == *-interix* ]] && export ac_cv_func_getpgrp_void=yes
82 -
83 - econf \
84 - --libexecdir="${EPREFIX}"/usr/libexec/${PN} \
85 - $(use_with ipv6) \
86 - $(use_with perl) \
87 - $(use_with ssl)
88 -}
89 -
90 -src_compile() {
91 - emake CC="$(tc-getCC)"
92 -}
93 -
94 -src_install () {
95 - einstall \
96 - sharedir="${ED}"/usr/share \
97 - libexecdir="${ED}"/usr/libexec/${PN}
98 -
99 - dodoc BUG_FORM README KNOWNBUGS VOTES
100 -
101 - cd "${S}"/doc || die
102 - docinto doc
103 - dodoc \
104 - *.txt colors EPIC* IRCII_VERSIONS local_vars missing new-load \
105 - nicknames outputhelp SILLINESS TS4
106 -
107 - insinto /usr/share/epic
108 - doins -r "${WORKDIR}"/help
109 -}
110 -
111 -pkg_postinst() {
112 - if [ ! -f "${EROOT}"/usr/share/epic/script/local ]; then
113 - elog "/usr/share/epic/script/local does not exist, I will now"
114 - elog "create it. If you do not like the look/feel of this file, or"
115 - elog "if you'd prefer to use your own script, simply remove this"
116 - elog "file. If you want to prevent this file from being installed"
117 - elog "in the future, simply create an empty file with this name."
118 - cp "${WORKDIR}"/epic4-local "${EROOT}"/usr/share/epic/script/local
119 - elog
120 - elog "This provided local startup script adds a number of nifty"
121 - elog "features to Epic including tab completion, a comprehensive set"
122 - elog "of aliases, and channel-by-channel logging. To prevent"
123 - elog "unintentional conflicts with your own scripting, if either the"
124 - elog "~/.ircrc or ~/.epicrc script files exist, then the local script"
125 - elog "is *not* run. If you like the script but want to make careful"
126 - elog "additions (such as selecting your usual servers or setting your"
127 - elog "nickname), simply copy /usr/share/epic/script/local to ~/.ircrc"
128 - elog "and then add your additions to the copy."
129 - fi
130 -
131 - # Fix for bug 59075
132 - chmod 755 "${EROOT}"/usr/share/epic/help
133 -}
134
135 diff --git a/net-irc/epic4/files/epic-defaultserver.patch b/net-irc/epic4/files/epic-defaultserver.patch
136 deleted file mode 100644
137 index 1dbc2087cce..00000000000
138 --- a/net-irc/epic4/files/epic-defaultserver.patch
139 +++ /dev/null
140 @@ -1,12 +0,0 @@
141 -diff -Naur epic4-1.1.14.orig/include/config.h epic4-1.1.14/include/config.h
142 ---- epic4-1.1.14.orig/include/config.h 2003-10-28 05:53:57.000000000 +0000
143 -+++ epic4-1.1.14/include/config.h 2004-01-03 13:49:53.083473288 +0000
144 -@@ -42,7 +42,7 @@
145 - * the client will NOT compile and work properly! Use the default here if
146 - * you dont have other servers to use.
147 - */
148 --#define DEFAULT_SERVER "localhost irc.efnet.net irc.undernet.org irc.dal.net"
149 -+#define DEFAULT_SERVER "localhost irc.freenode.net irc.efnet.net irc.undernet.org irc.dal.net"
150 -
151 - /*
152 - * The left and right brace characters ('{', '}') are special characters in
153
154 diff --git a/net-irc/epic4/files/epic4-2.10.1-make-recursion.patch b/net-irc/epic4/files/epic4-2.10.1-make-recursion.patch
155 deleted file mode 100644
156 index 68d7e4c460b..00000000000
157 --- a/net-irc/epic4/files/epic4-2.10.1-make-recursion.patch
158 +++ /dev/null
159 @@ -1,10 +0,0 @@
160 ---- a/Makefile.in
161 -+++ b/Makefile.in
162 -@@ -210,6 +210,6 @@
163 - $(RM) Makefile source/Makefile include/sig.inc config.status config.cache config.log include/defs.h source/info.c.sh
164 -
165 - depend:
166 -- (cd source;make depend)
167 -+ (cd source;$(MAKE) depend)
168 -
169 - # This is the end of the file.
170
171 diff --git a/net-irc/epic4/files/epic4-2.10.1-perl.patch b/net-irc/epic4/files/epic4-2.10.1-perl.patch
172 deleted file mode 100644
173 index ce41d153abc..00000000000
174 --- a/net-irc/epic4/files/epic4-2.10.1-perl.patch
175 +++ /dev/null
176 @@ -1,54 +0,0 @@
177 -From: Nathan Phillip Brink <binki@g.o>
178 -Subject: Fix broken perl detection somewhat.
179 -
180 ---- a/configure.in
181 -+++ b/configure.in
182 -@@ -636,25 +636,27 @@
183 - dnl
184 -
185 - AC_MSG_CHECKING(whether to support Perl)
186 --AC_ARG_WITH(perl,
187 --[ --with-perl[=PATH] Compile with perl support.],
188 --[ test -z "$withval" && withval=yes ],
189 --)
190 --test "xno" != "x$withval" && for base in $withval /usr/local /usr /
191 --do
192 -- FOUND=
193 -- for ext in so a dll ; do
194 -- test -r $base/lib/libperl.$ext && FOUND=1
195 -- test -r $base/libperl.$ext && FOUND=1
196 -- done
197 -- test -n "$FOUND" || continue
198 -- AC_MSG_RESULT(yes)
199 -- LIBS="$LIBS `perl -MExtUtils::Embed -e ldopts`"
200 -- PERLDOTOH="perl.o"
201 -- AC_DEFINE(PERL)
202 -- break
203 --done
204 --test -z "$PERLDOTOH" && AC_MSG_RESULT(no)
205 -+AC_ARG_WITH([perl],
206 -+ [AS_HELP_STRING([--with-perl[=PATH]], [Compile with perl support.])],
207 -+ [],
208 -+ [with_perl=maybe])
209 -+AS_IF([test "xno" != "x$with_perl"],
210 -+ [
211 -+ PERL_LIBS="`perl -MExtUtils::Embed -e ldopts`"
212 -+ AS_IF([test -n "$PERL_LIBS"],
213 -+ [
214 -+ AC_MSG_RESULT([yes])
215 -+ LIBS="$LIBS $PERL_LIBS"
216 -+ AC_DEFINE([PERL], [], [Define if perl support should be compiled])
217 -+ PERLDOTOH="perl.o"
218 -+ ],
219 -+ [
220 -+ AC_MSG_RESULT([no])
221 -+ AS_IF([test "x$with_perl" != "xmaybe"],
222 -+ [AC_MSG_ERROR([You specified --with-perl, but I was unable to find libperl])])
223 -+ ])
224 -+ ])
225 -+
226 - withval=''
227 -
228 - dnl ----------------------------------------------------------
229 -
230 -Diff finished. Thu Jun 30 22:15:26 2011
231
232 diff --git a/net-irc/epic4/metadata.xml b/net-irc/epic4/metadata.xml
233 deleted file mode 100644
234 index 6f49eba8f49..00000000000
235 --- a/net-irc/epic4/metadata.xml
236 +++ /dev/null
237 @@ -1,5 +0,0 @@
238 -<?xml version="1.0" encoding="UTF-8"?>
239 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
240 -<pkgmetadata>
241 -<!-- maintainer-needed -->
242 -</pkgmetadata>
243
244 diff --git a/profiles/package.mask b/profiles/package.mask
245 index 835b27bb935..f6a37fc3a8e 100644
246 --- a/profiles/package.mask
247 +++ b/profiles/package.mask
248 @@ -620,7 +620,6 @@ x11-libs/hippo-canvas
249 # net-im/ayttm: #676242, last commits in 2011 (+ one secfix in 2015)
250 # net-im/climm: #674160, dead homepage, last commits in 2010
251 # net-irc/bip: #674240, may need new snapshot, current ver is from 2013
252 -# net-irc/epic4: #677734, needs bump, current is from 2009, also #613120
253 #
254 # Removal in 30 days.
255 app-crypt/keynote
256 @@ -638,7 +637,6 @@ net-ftp/netkit-ftpd
257 net-im/ayttm
258 net-im/climm
259 net-irc/bip
260 -net-irc/epic4
261
262 # Miroslav Šulc <fordfrog@g.o> (19 Mar 2019)
263 # Depends on >=virtual/{jdk,jre}-11 which is masked