--- a/dev-python/xmppony/Manifest Mon Jun 12 10:21:53 2017 -0700
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-DIST xmppony-0.1.tar.bz2 68759 RMD160 d09907abbfad2b7f3e485fc4ba86468d68cc2f13 SHA1 9a271d7cae6d9613c7ccd2c8d40405b19ee99487 SHA256 99259a749c435f21b44d1e00392db63556f53b33a9904dca3cc3fcc77358fad1
-EBUILD xmppony-0.1.ebuild 432 RMD160 8e7a3c117c9d35f94b70af3c7303099ca327d627 SHA1 c09383a09566bbb6495a3ca901cebb80124bbc87 SHA256 2cdf50fc2d881d6b9be979e824a3d782497c93bb7e2caffa28b528cacc191cd7
--- a/dev-python/xmppony/xmppony-0.1.ebuild Mon Jun 12 10:21:53 2017 -0700
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-inherit distutils python
-
-DESCRIPTION="xmppony is an XMPP library writtenin python and is distributed
-under the GPL-3 license"
-HOMEPAGE="http://xmppony.last-exile.org"
-SRC_URI="http://xmppony.last-exile.org/sources/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-PYTHON_DEPEND="2:5"
-
--- a/net-im/xib-bot/files/xib-bot.initd Mon Jun 12 10:21:53 2017 -0700
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-PIDFILE=${PIDFILE:=/var/run/xib-bot.pid}
-CONF=${CONF:=/etc/xib-bot/config.xml}
-LOGFILE=${LOGFILE:=/var/log/xib-bot.log}
-STARTFILE={STARTFILE:=/usr/lib/python2.7/site-package/xib-bot/start_bots_from_xml_config.py}
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting ${SVCNAME}"
- start-stop-daemon --start --exec "$STARTFILE" \
- -1 ${LOGFILE} -2 ${LOGFILE} \
- -m --pidfile "${PIDFILE}" -b -- "${CONF}"
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon --stop --exec "$STARTFILE" \
- --pidfile "${PIDFILE}"
-}
-
--- a/net-im/xib-bot/metadata.xml Mon Jun 12 10:21:53 2017 -0700
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer><email>da_risk@elyzion.net</email></maintainer>
-</pkgmetadata>
--- a/net-im/xib-bot/xib-bot-9999.ebuild Mon Jun 12 10:21:53 2017 -0700
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_6 python2_7 )
-
-inherit python-single-r1 git-2
-
-DESCRIPTION="xib-bot is an XMPP-IRC bridge bot written in python."
-HOMEPAGE="http://changaco.net/code/xib/"
-EGIT_REPO_URI="git://github.com/Changaco/xib.git"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="dev-python/xmppony
- dev-python/argparse"
-
-src_install() {
- python_fix_shebang start_bots_from_xml_config.py
- python_moduleroot=xib-bot
- python_domodule *.py
- dodoc README.md example_config.xml
- newinitd "${FILESDIR}/xib-bot.initd" xib-bot
-}