summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-10-08 20:25:47 +0200
committerMichał Górny <mgorny@gentoo.org>2019-10-08 20:25:47 +0200
commit3b50adfe9fe0b72a7361f0a368f5fec358cd3aa0 (patch)
tree97e169951a27c3669b9bd47ff43da3341f3132cc /net-p2p
parentgames-emulation/daphne: Remove last-rited pkg (diff)
downloadgentoo-3b50adfe9fe0b72a7361f0a368f5fec358cd3aa0.tar.gz
gentoo-3b50adfe9fe0b72a7361f0a368f5fec358cd3aa0.tar.bz2
gentoo-3b50adfe9fe0b72a7361f0a368f5fec358cd3aa0.zip
net-p2p/saku: Remove last-rited pkg
Closes: https://bugs.gentoo.org/609652 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/saku/Manifest1
-rw-r--r--net-p2p/saku/files/saku25
-rw-r--r--net-p2p/saku/files/saku.ini27
-rw-r--r--net-p2p/saku/metadata.xml10
-rw-r--r--net-p2p/saku/saku-3.11.0-r2.ebuild45
5 files changed, 0 insertions, 108 deletions
diff --git a/net-p2p/saku/Manifest b/net-p2p/saku/Manifest
deleted file mode 100644
index 8c8ba1118fb2..000000000000
--- a/net-p2p/saku/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST saku-3.11.0.tar.gz 239772 BLAKE2B 6bafef5d649274e5c3a4744b7ef2805ec7c186c8841a3d25ae4e5ea5f383f89d68ef1590c8f721c2d37bb87226184516d33076ccff0a28ce7b6e1040d4b24e4c SHA512 e6cb37fa555a43d69523a90d1039dcd9bdbc4e4d14e7a4063849cfcaf3a67f1947bd7e5341f97726030eddf53915304ad948f67ce7fb1cb2b6344e1556cc8467
diff --git a/net-p2p/saku/files/saku b/net-p2p/saku/files/saku
deleted file mode 100644
index 6c600f57904c..000000000000
--- a/net-p2p/saku/files/saku
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-PID_DIR=/var/run/saku
-
-depend() {
- use dns
- need net
-}
-
-start() {
- mkdir -p $PID_DIR
- rm -f ${PID_DIR}/pid.txt
- ebegin "Starting p2p bbs: saku"
- start-stop-daemon --start -u saku -g saku --quiet -b \
- -p ${PID_DIR}/pid.txt --exec /usr/bin/saku
- eend $?
-}
-
-stop() {
- ebegin "Stopping p2p bbs: saku"
- start-stop-daemon --stop --quiet -p ${PID_DIR}/pid.txt
- eend $?
-}
diff --git a/net-p2p/saku/files/saku.ini b/net-p2p/saku/files/saku.ini
deleted file mode 100644
index 21a9461783cb..000000000000
--- a/net-p2p/saku/files/saku.ini
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# Sample saku.ini to run saku in distributed directory.
-# Copyright (c) 2005-2007 shinGETsu Project.
-# $Id: saku.ini 1513 2011-01-03 10:17:08Z sbwhitecap $
-#
-
-[Network]
-port: 8000
-upnp: no
-
-[Path]
-prefix: /usr
-var: /var
-sysconfig: /etc
-docroot: %(prefix)s/share/saku/www
-file_dir: %(prefix)s/share/saku/file
-template_dir: %(prefix)s/share/saku/template
-log_dir: %(var)s/log/saku
-run_dir: %(var)s/run/saku
-cache_dir: %(var)s/spool/saku
-spam_list: %(sysconfig)s/saku/spam.txt
-initnode_list: %(sysconfig)s/saku/initnode.txt
-node_allow: %(sysconfig)s/saku/node_allow.txt
-node_deny: %(sysconfig)s/saku/node_deny.txt
-
-[Gateway]
-visitor: ^127
diff --git a/net-p2p/saku/metadata.xml b/net-p2p/saku/metadata.xml
deleted file mode 100644
index 0ef1d8a861c8..000000000000
--- a/net-p2p/saku/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>naota@gentoo.org</email>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">shingetsu</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/net-p2p/saku/saku-3.11.0-r2.ebuild b/net-p2p/saku/saku-3.11.0-r2.ebuild
deleted file mode 100644
index fc437fb14e4f..000000000000
--- a/net-p2p/saku/saku-3.11.0-r2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 user
-
-DESCRIPTION="a clone of P2P anonymous BBS shinGETsu"
-HOMEPAGE="http://shingetsu.info/"
-SRC_URI="mirror://sourceforge/shingetsu/${P}.tar.gz"
-
-LICENSE="BSD-2 GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-python/cheetah[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- enewgroup saku
- enewuser saku -1 -1 /var/run/saku saku
-}
-
-python_prepare_all() {
- sed -i -e "/^prefix/s:/usr:${EPREFIX}/usr:" file/saku.ini || die
- sed -i -e "s:root/share/doc/saku/:root/share/doc/${PF}/:" setup.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- insinto /etc/saku
- doins "${FILESDIR}"/saku.ini
-
- doinitd "${FILESDIR}"/saku
-
- diropts -o saku -g saku
- keepdir /var/log/saku
- keepdir /var/spool/saku
-}