public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-irc/srvx/files/, net-irc/srvx/
@ 2016-04-26  8:34 Aaron Bauman
  0 siblings, 0 replies; only message in thread
From: Aaron Bauman @ 2016-04-26  8:34 UTC (permalink / raw
  To: gentoo-commits

commit:     d7ec853863e66b2a6a3c17d126f2c6bffcc79229
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 26 08:23:34 2016 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue Apr 26 08:23:34 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7ec8538

net-irc/srvx: cleaned per security bug 521892

 net-irc/srvx/Manifest          |  1 -
 net-irc/srvx/files/srvx.conf.d |  7 -----
 net-irc/srvx/files/srvx.init.d | 21 -------------
 net-irc/srvx/metadata.xml      | 11 -------
 net-irc/srvx/srvx-1.3.1.ebuild | 67 ------------------------------------------
 5 files changed, 107 deletions(-)

diff --git a/net-irc/srvx/Manifest b/net-irc/srvx/Manifest
deleted file mode 100644
index d7e19eb..0000000
--- a/net-irc/srvx/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST srvx-1.3.1.tar.bz2 560658 SHA256 e11347a58505f0274a54ca8f956ad21d9e5557ecfcd86f71a58be2fbc2a81d63 SHA512 6f0c4c3af48dea5bc51f673b66a8a72b9f54c2d0c40f5b00e77da0b1b48174ca671a473cd86a3aea4d3c5cb766995d5b892cc5748c47766d53414778403beb65 WHIRLPOOL f4e2f622f3bb20aee41af5b5826c5c5585be60c0ea7c1813f18e1126fa5e5f226190d8eb4411143d78795d0676dadbb7481a5267f2a1652821881be6e7f42527

diff --git a/net-irc/srvx/files/srvx.conf.d b/net-irc/srvx/files/srvx.conf.d
deleted file mode 100644
index 1f5cfdc..0000000
--- a/net-irc/srvx/files/srvx.conf.d
+++ /dev/null
@@ -1,7 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-# user and group to run srvx as
-SRVX_USER="srvx"
-SRVX_GROUP="srvx"

diff --git a/net-irc/srvx/files/srvx.init.d b/net-irc/srvx/files/srvx.init.d
deleted file mode 100644
index e9ae671..0000000
--- a/net-irc/srvx/files/srvx.init.d
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-depend() {
-	use dns net
-}
-
-start() {
-	ebegin "Starting srvx"
-	start-stop-daemon --start --chdir /var/lib/srvx --quiet \
-		--exec /usr/bin/srvx --chuid ${SRVX_USER}:${SRVX_GROUP} &>/dev/null
-	eend $?
-}
-
-stop() {
-	ebegin "Shutting down srvx"
-	start-stop-daemon --stop --quiet --pidfile /var/lib/srvx/srvx.pid
-	eend $?
-}

diff --git a/net-irc/srvx/metadata.xml b/net-irc/srvx/metadata.xml
deleted file mode 100644
index 02c74f8..0000000
--- a/net-irc/srvx/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<!-- maintainer-needed -->
-	<use>
-		<flag name="bahamut">Choose bahamut protocol over p10 protocol</flag>
-	</use>
-	<upstream>
-		<remote-id type="sourceforge">srvx</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/net-irc/srvx/srvx-1.3.1.ebuild b/net-irc/srvx/srvx-1.3.1.ebuild
deleted file mode 100644
index 32096fa..0000000
--- a/net-irc/srvx/srvx-1.3.1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils user
-
-DESCRIPTION="A complete set of services for IRCu 2.10.10+ and bahamut based networks"
-HOMEPAGE="http://www.srvx.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="bahamut debug"
-
-src_compile() {
-	local PROTOCOL="p10" MALLOC="system" DEBUG=""
-	use bahamut && PROTOCOL="bahamut"
-	use debug && MALLOC="srvx" DEBUG="--enable-debug"
-
-	econf \
-		--with-protocol=${PROTOCOL} \
-		--with-malloc=${MALLOC} \
-		--enable-modules=helpserv,memoserv,sockcheck \
-		${DEBUG} \
-		|| die "econf failed"
-	emake all-recursive || die "emake failed"
-}
-
-src_install() {
-	dobin src/srvx || die "dobin failed"
-	dodir /var/lib/srvx || die "dodir failed"
-
-	insinto /etc/srvx
-	newins srvx.conf.example srvx.conf || die "newins failed"
-	newins sockcheck.conf.example sockcheck.conf || die "newins failed"
-	dosym ../../../etc/srvx/srvx.conf /var/lib/srvx/srvx.conf || die "dosym failed"
-	dosym ../../../etc/srvx/sockcheck.conf /var/lib/srvx/sockcheck.conf || die "dosym failed"
-
-	insinto /usr/share/srvx
-	for helpfile in \
-		chanserv.help global.help mod-helpserv.help mod-memoserv.help \
-		mod-sockcheck.help modcmd.help nickserv.help opserv.help \
-		saxdb.help sendmail.help
-	do
-		doins "src/${helpfile}" || die "doins failed"
-		dosym "../../../usr/share/srvx/${helpfile}" "/var/lib/srvx/${helpfile}" || die "dosym failed"
-	done
-
-	dodoc \
-		AUTHORS INSTALL NEWS README TODO UPGRADE \
-		{sockcheck,srvx}.conf.example \
-		|| die "dodoc failed"
-
-	newinitd "${FILESDIR}"/srvx.init.d srvx || die "newinitd failed"
-	newconfd "${FILESDIR}"/srvx.conf.d srvx || die "newconfd failed"
-}
-
-pkg_setup() {
-	enewgroup srvx
-	enewuser srvx -1 -1 /var/lib/srvx srvx
-}
-
-pkg_postinst() {
-	chown -R srvx:srvx "${ROOT}"/etc/srvx "${ROOT}"/var/lib/srvx
-	chmod 0700 "${ROOT}"/etc/srvx "${ROOT}"/var/lib/srvx
-}


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

only message in thread, other threads:[~2016-04-26  8:34 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-26  8:34 [gentoo-commits] repo/gentoo:master commit in: net-irc/srvx/files/, net-irc/srvx/ Aaron Bauman

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