public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/, net-irc/bip/, net-irc/bip/files/
@ 2019-04-20  8:05 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2019-04-20  8:05 UTC (permalink / raw
  To: gentoo-commits

commit:     19a13a1e0c56337a51a360f36683af5465ba01c5
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 20 08:03:39 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 20 08:03:39 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19a13a1e

net-irc/bip: Remove last-rited pkg

Closes: https://bugs.gentoo.org/674240
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-irc/bip/Manifest                 |  1 -
 net-irc/bip/bip-0.8.9.ebuild         | 65 ------------------------------------
 net-irc/bip/files/bip-freenode.patch | 18 ----------
 net-irc/bip/files/bip.vim            |  4 ---
 net-irc/bip/metadata.xml             | 21 ------------
 profiles/package.mask                |  2 --
 6 files changed, 111 deletions(-)

diff --git a/net-irc/bip/Manifest b/net-irc/bip/Manifest
deleted file mode 100644
index 459b616e729..00000000000
--- 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 cc037d11faa..00000000000
--- 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 437da08f438..00000000000
--- 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 437d7f08363..00000000000
--- 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 e20cca0de70..00000000000
--- 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>

diff --git a/profiles/package.mask b/profiles/package.mask
index f6a37fc3a8e..713d04834d3 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -619,7 +619,6 @@ x11-libs/hippo-canvas
 # net-ftp/netkit-ftpd: #676000, last rel in 2000, also #236290, #540330
 # net-im/ayttm: #676242, last commits in 2011 (+ one secfix in 2015)
 # net-im/climm: #674160, dead homepage, last commits in 2010
-# net-irc/bip: #674240, may need new snapshot, current ver is from 2013
 #
 # Removal in 30 days.
 app-crypt/keynote
@@ -636,7 +635,6 @@ net-analyzer/postal
 net-ftp/netkit-ftpd
 net-im/ayttm
 net-im/climm
-net-irc/bip
 
 # Miroslav Šulc <fordfrog@gentoo.org> (19 Mar 2019)
 # Depends on >=virtual/{jdk,jre}-11 which is masked


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-04-20 23:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-20  8:05 [gentoo-commits] repo/gentoo:master commit in: profiles/, net-irc/bip/, net-irc/bip/files/ Michał Górny

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