net-misc/elliptics: Remove last-rited pkg, #599866
authorMichał Górny <mgorny@gentoo.org>
Thu, 16 Mar 2017 20:46:16 +0000 (21:46 +0100)
committerMichał Górny <mgorny@gentoo.org>
Tue, 21 Mar 2017 16:12:16 +0000 (17:12 +0100)
net-misc/elliptics/Manifest [deleted file]
net-misc/elliptics/elliptics-2.19.2.6.ebuild [deleted file]
net-misc/elliptics/files/elliptics.confd [deleted file]
net-misc/elliptics/files/elliptics.initd [deleted file]
net-misc/elliptics/metadata.xml [deleted file]
profiles/package.mask

diff --git a/net-misc/elliptics/Manifest b/net-misc/elliptics/Manifest
deleted file mode 100644 (file)
index 556592a..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST elliptics-2.19.2.6.tar.gz 217118 SHA256 33803bea4f1bce448abf0c3203b9b2828ccde8dbb4b2b1a234d187b1a73a5436 SHA512 63670812fe422b2b02335e8ff248bdac19a0825a69118d3afa473c7775b177b469078c2dab47ace08643859e92576e1cdcdf44388489994b9560e96e7fbb400e WHIRLPOOL 44c334b238d0fa6a5767815cb9ccaa9bef68279b4314f405e8c78ea53e40a6210d4dc4e31fc62e665886f25272c079eef4b94a8b75fd0a0c2d5a9d0815227088
diff --git a/net-misc/elliptics/elliptics-2.19.2.6.ebuild b/net-misc/elliptics/elliptics-2.19.2.6.ebuild
deleted file mode 100644 (file)
index ad40f5e..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-PYTHON_DEPEND="2"
-
-DESCRIPTION="Elliptics network is a fault tolerant key/value storage without dedicated metadata servers"
-HOMEPAGE="http://www.ioremap.net/projects/elliptics"
-LICENSE="GPL-2"
-SLOT="0"
-
-inherit user eutils python flag-o-matic cmake-utils
-
-KEYWORDS="~x86 ~amd64"
-IUSE="fastcgi python"
-RDEPEND="app-arch/snappy
-       dev-libs/openssl
-       fastcgi? ( dev-libs/fcgi )
-       net-misc/elliptics-eblob
-       dev-libs/boost[python]
-       dev-libs/libevent
-       dev-libs/leveldb
-       dev-libs/smack
-       dev-db/kyotocabinet
-       net-misc/cocaine-core
-       net-libs/zeromq"
-DEPEND="${RDEPEND}"
-
-SRC_URI="https://github.com/reverbrain/elliptics/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-pkg_setup() {
-       enewgroup elliptics
-       enewuser elliptics -1 -1 /dev/null elliptics
-       python_set_active_version 2
-       python_pkg_setup
-}
-
-src_configure(){
-       use python && filter-ldflags -Wl,--as-needed
-       cmake-utils_src_configure
-}
-
-src_install(){
-       cmake-utils_src_install
-
-       use fastcgi && example/fcgi/lighttpd-fastcgi-elliptics.conf
-       dodoc doc/design_notes.txt \
-               doc/io_storage_backend.txt \
-               example/EXAMPLE \
-               example/ioserv.conf
-
-       # init script stuff
-       # too many changes since the old version, needs to be re-added
-       #newinitd "${FILESDIR}"/elliptics.initd elliptics || die
-       #newconfd "${FILESDIR}"/elliptics.confd elliptics || die
-
-       # tune default config
-       sed -i 's#log = /dev/stderr#log = syslog#' "${S}/example/ioserv.conf"
-       sed -i 's#root = /tmp/root#root = /var/spool/elliptics#' "${S}/example/ioserv.conf"
-       sed -i 's#daemon = 0#daemon = 1#' "${S}/example/ioserv.conf"
-       sed -i 's#history = /tmp/history#history = /var/run/elliptics#' "${S}/example/ioserv.conf"
-
-       # configs
-       insinto /etc/elliptics
-       doins "${S}/example/ioserv.conf"
-
-       keepdir /var/{spool,run}/elliptics
-       fowners elliptics:elliptics /var/{spool,run}/elliptics
-       fperms 0750 /var/{spool,run}/elliptics
-}
diff --git a/net-misc/elliptics/files/elliptics.confd b/net-misc/elliptics/files/elliptics.confd
deleted file mode 100644 (file)
index 70743c0..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-ELLIPTICS_BIN=/usr/bin/dnet_ioserv
-ELLIPTICS_CONF=/etc/elliptics/ioserv.conf
-ELLIPTICS_USER=elliptics
\ No newline at end of file
diff --git a/net-misc/elliptics/files/elliptics.initd b/net-misc/elliptics/files/elliptics.initd
deleted file mode 100644 (file)
index bb06d15..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/sbin/openrc-run
-
-opts="reload graceful"
-ELLIPTICS_PNAME=dnet-main
-
-depend() {
-        need net
-        use logger 
-        after sshd
-}
-
-
-start() {
-        ebegin "Starting dnet_ioserv"
-        start-stop-daemon --start --user=${ELLIPTICS_USER} --exec ${ELLIPTICS_BIN} -- -c "${ELLIPTICS_CONF}"
-        eend $?
-}
-
-stop() {
-        local rv=0
-        ebegin "Stopping dnet_ioserv"
-        killall -0 ${ELLIPTICS_PNAME} && /usr/bin/killall -w ${ELLIPTICS_PNAME} || true
-        eend $?
-}
-
-reload() {
-        if ! service_started "${SVCNAME}" ; then
-                eerror "${SVCNAME} isn't running"
-                return 1
-        fi
-
-        ebegin "Re-opening dnet_ioserv log files"
-        /usr/bin/killall --signal HUP ${ELLIPTICS_PNAME}
-        eend $?
-}
\ No newline at end of file
diff --git a/net-misc/elliptics/metadata.xml b/net-misc/elliptics/metadata.xml
deleted file mode 100644 (file)
index 724365e..0000000
+++ /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 type="person">
-               <email>patrick@gentoo.org</email>
-               <name>Patrick Lauer</name>
-       </maintainer>
-       <upstream>
-               <remote-id type="github">reverbrain/elliptics</remote-id>
-       </upstream>
-</pkgmetadata>
index 43e8723609ca95678a87d0021d92a024d3763a69..b951c161d87222551c1a92698fdea9f2ae04e0d5 100644 (file)
@@ -266,13 +266,6 @@ dev-ada/charles
 # Masked for removal on 30 days. Bug #609754.
 x11-misc/bbappconf
 
-# Michał Górny <mgorny@gentoo.org> (20 Feb 2017)
-# The Gentoo packages are roughly 300 releases behind upstream, and are
-# unmaintained. They do not build anymore, #545148, #558570, #597312.
-# Also, the first ebuild blocks python.eclass removal, #599866,
-# and is one huge QA mystery. Removal in 30 days.
-net-misc/elliptics
-
 # Andreas K. Hüttel <dilfridge@gentoo.org> (19 Feb 2017)
 # Dead upstream for >3 years. Closed source. Bundles outdated
 # libraries that certainly have known security issues (e.g.,