diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-04-20 10:03:39 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-04-20 10:03:39 +0200 |
commit | 19a13a1e0c56337a51a360f36683af5465ba01c5 (patch) | |
tree | f8a510051b53f758b7023844e6c3ff77bba13843 /net-irc | |
parent | net-irc/epic4: Remove last-rited pkg (diff) | |
download | gentoo-19a13a1e0c56337a51a360f36683af5465ba01c5.tar.gz gentoo-19a13a1e0c56337a51a360f36683af5465ba01c5.tar.bz2 gentoo-19a13a1e0c56337a51a360f36683af5465ba01c5.zip |
net-irc/bip: Remove last-rited pkg
Closes: https://bugs.gentoo.org/674240
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/bip/Manifest | 1 | ||||
-rw-r--r-- | net-irc/bip/bip-0.8.9.ebuild | 65 | ||||
-rw-r--r-- | net-irc/bip/files/bip-freenode.patch | 18 | ||||
-rw-r--r-- | net-irc/bip/files/bip.vim | 4 | ||||
-rw-r--r-- | net-irc/bip/metadata.xml | 21 |
5 files changed, 0 insertions, 109 deletions
diff --git a/net-irc/bip/Manifest b/net-irc/bip/Manifest deleted file mode 100644 index 459b616e7293..000000000000 --- a/net-irc/bip/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST bip-0.8.9.tar.gz 256711 BLAKE2B 2af396dccab45bdb0ac54f33290c58147b927974c3d00fbad00317358bdde64c538c1314bfe2513ae1e914cf68ace7e3f9a744f5939abdeb920e7cd6af35e532 SHA512 572adb6e0982d74a39b0380ef6af51ba7f55b880f78e110b93e09616e6345bb4a9a60475df644ec891cae368287d502ba00bbf734370ba50c57b29de6934c138 diff --git a/net-irc/bip/bip-0.8.9.ebuild b/net-irc/bip/bip-0.8.9.ebuild deleted file mode 100644 index cc037d11faa5..000000000000 --- a/net-irc/bip/bip-0.8.9.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -inherit eutils - -DESCRIPTION="Multiuser IRC proxy with SSL support" -HOMEPAGE="http://bip.milkypond.org/" -SRC_URI="ftp://ftp.duckcorp.org/bip/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug freenode noctcp oidentd vim-syntax" - -COMMON_DEPEND=" - dev-libs/openssl:0 -" -DEPEND="${COMMON_DEPEND} - sys-devel/flex - virtual/yacc -" -RDEPEND="${COMMON_DEPEND} - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) - oidentd? ( >=net-misc/oidentd-2.0 ) -" - -src_prepare() { - if use noctcp; then - sed -i -e '/irc_privmsg_check_ctcp(server, line);/s:^://:' src/irc.c || die - fi - - if use freenode; then - epatch "${FILESDIR}/${PN}-freenode.patch" || die - fi - - sed -i -e "s/-Werror//" Makefile.in || die -} - -src_configure() { - econf \ - $(use_enable debug) \ - $(use_enable oidentd) -} - -src_install() { - dobin src/bip src/bipmkpw - - dodoc AUTHORS ChangeLog README NEWS TODO - newdoc samples/bip.conf bip.conf.sample - doman bip.1 bip.conf.5 bipmkpw.1 - - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/syntax - doins samples/bip.vim - insinto /usr/share/vim/vimfiles/ftdetect - doins "${FILESDIR}"/bip.vim - fi -} - -pkg_postinst() { - elog 'The default configuration file is "~/.bip/bip.conf"' - elog "You can find a sample configuration file in" - elog "/usr/share/doc/${PF}/bip.conf.sample" -} diff --git a/net-irc/bip/files/bip-freenode.patch b/net-irc/bip/files/bip-freenode.patch deleted file mode 100644 index 437da08f438d..000000000000 --- a/net-irc/bip/files/bip-freenode.patch +++ /dev/null @@ -1,18 +0,0 @@ -Freenode's ircd-seven uses a custom banlist type for mutes (+q). -This patch makes bip handle +q the same way as +q. -Without it, a user wouldn't get the banlist replies for mutes. - -diff --git a/src/irc.c b/src/irc.c -index 556bf97..a5cc039 100644 ---- a/src/irc.c -+++ b/src/irc.c -@@ -944,7 +947,8 @@ static int irc_cli_mode(struct link_client *ic, struct line *line) - - /* This is a wild guess and that sucks. */ - if (!irc_line_elem_equals(line, 0, "MODE") || -- strchr(irc_line_elem(line, 2), 'b') == NULL) -+ (strchr(irc_line_elem(line, 2), 'b') == NULL && -+ strchr(irc_line_elem(line, 2), 'q') == NULL)) - return OK_COPY; - - ++ic->who_count; diff --git a/net-irc/bip/files/bip.vim b/net-irc/bip/files/bip.vim deleted file mode 100644 index 437d7f083633..000000000000 --- a/net-irc/bip/files/bip.vim +++ /dev/null @@ -1,4 +0,0 @@ -" Vim filetype detection file for bip config files -" - -au BufNewFile,BufRead bip.conf set filetype=bip diff --git a/net-irc/bip/metadata.xml b/net-irc/bip/metadata.xml deleted file mode 100644 index e20cca0de70b..000000000000 --- a/net-irc/bip/metadata.xml +++ /dev/null @@ -1,21 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <longdescription lang="en"> - Bip is an IRC proxy, which means it keeps connected to your preferred - IRC servers, can store the logs for you, and even send them back to your IRC - client(s) upon connection. You may want to use bip to keep your logfiles (in a - unique format and on a unique computer) whatever your client is, when you - connect from multiple workstations, or when you simply want to have a playback - of what was said while you were away. - </longdescription> - <use> - <flag name="freenode">Enables freenode-specific functionality. - Currently that is only support for mute lists (MODE #channel +q).</flag> - <flag name="noctcp">Disable the automatic CTCP VERSION reply which is often - exploited by malicious people to cause a DoS (reconnect due to flooding). - </flag> - <flag name="oidentd">Enable oidentd support</flag> - </use> -</pkgmetadata> |