commit:     4e78f60eec4b8c614a5b4a2d99237f9354d4cb53
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun May 31 10:26:13 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May 31 10:29:49 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e78f60e

dev-python/flower: Remove last-rited pkg

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

 dev-python/flower/Manifest                |   1 -
 dev-python/flower/files/config.py         | 115 ------------------------------
 dev-python/flower/files/flower.confd      |   2 -
 dev-python/flower/files/flower.initd      |  15 ----
 dev-python/flower/files/flower.logrotated |   7 --
 dev-python/flower/files/flower.service    |  13 ----
 dev-python/flower/flower-0.9.1-r1.ebuild  |  55 --------------
 dev-python/flower/metadata.xml            |   9 ---
 profiles/package.mask                     |   5 --
 9 files changed, 222 deletions(-)

diff --git a/dev-python/flower/Manifest b/dev-python/flower/Manifest
deleted file mode 100644
index ee121d61145..00000000000
--- a/dev-python/flower/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST flower-0.9.1.tar.gz 3880608 BLAKE2B 
4451601285472fa61577d482ecda11b20244e8050f349ba1e81601ce9a3ec0126a13ad055545d4adb5c1201b6c457919bc5f4b8aa7aca700f3bfcbc3373c6c0c
 SHA512 
519d92209dbdb7956fde30c604956d1cbbc8ec7180ff160ea088847b5b63310cd42dc949d02eef1197588b0353470a0f3ac96b44b2e3ebb093a254d8f94fb407

diff --git a/dev-python/flower/files/config.py 
b/dev-python/flower/files/config.py
deleted file mode 100644
index da101ab785b..00000000000
--- a/dev-python/flower/files/config.py
+++ /dev/null
@@ -1,115 +0,0 @@
-# Configuration file for the Celery Flower service. Standard Celery
-# configuration settings can be overridden in the configuration file. See the
-# Celery Configuration documentation for a complete listing of all available
-# settings, and their default values.
-
-
-# URL for the broker used by Celery.
-# BROKER_URL = 'amqp://guest:guest@localhost:5672//'
-
-
-# Run the HTTP service on the given address.
-#
-# addess = localhost
-
-
-# Run the HTTP server on the given port.
-#
-# port = 5555
-
-
-# Enables Google OpenID authentication. `auth` is a regexp of emails to grant
-# access. For more info see google-openid.
-#
-# auth = None
-
-
-# Refresh dashboards automatically.
-#
-# auto_refresh = True
-
-
-# Enables HTTP Basic authentication. `basic_auth` is a comma separated list of
-# `username:password`. If configured, any client trying to access this Flower
-# instance will be prompted to provide the credentials specified in this
-# argument.
-#
-# basic_auth = None
-
-
-# Flower can use the RabbitMQ Management Plugin to get info about queues.
-# `broker_api` is a URL of a RabbitMQ HTTP API including user credentials.
-#
-# broker_api = http://username:password@rabbitmq-server-name:15672/api
-
-
-# A path to ca_certs file. The ca_certs file contains a set of concatenated
-# "certification authority" certificates, which are used to validate
-# certificates passed from the other end of the connection.
-#
-# ca_certs = None
-
-
-# A path to an x509 certificate file.
-#
-# certfile = None
-
-
-# A path to the private key for `certfile`.
-#
-# keyfile = None
-
-
-# Enable debug mode.
-#
-# debug = False
-
-
-# Periodically enable Celery events by using `enable_events` command
-#
-# enable_events = True
-
-
-# Modifies the default task formatting. `format_task` should be a function
-# that accepts a task object and returns a modified version. This is useful
-# when filtering out sensitive information.
-#
-# format_task = None
-
-
-# Sets worker inspect timeout in milliseconds.
-#
-# inspect_timeout = 10000
-
-
-# Maximum number of tasks to keep in memory.
-#
-# max_tasks = 10000
-
-
-# Show time relative to the refresh time.
-#
-# natural_time = True
-
-
-# Enable persistent mode. If the persistent mode is enabled, Flower saves the
-# current state and reloads on restart.
-#
-# persistent = False
-
-
-# A path to a database file to use if persistent mode is enabled.
-#
-# db = flower
-
-
-# Enable support of `X-Real-Ip` and `X-Scheme` headers
-#
-# xheaders = False
-
-
-# Specifies list of comma-delimited columns on the /tasks/ page. Order of slugs
-# in the option is unrelated to order of columns on the page. Available slugs
-# include: name, uuid, state, args, kwargs, result, received, started, runtime.
-#
-# tasks_columns = None

diff --git a/dev-python/flower/files/flower.confd 
b/dev-python/flower/files/flower.confd
deleted file mode 100644
index a74ca17f3d2..00000000000
--- a/dev-python/flower/files/flower.confd
+++ /dev/null
@@ -1,2 +0,0 @@
-# extra arguments for the flower
-command_args="--conf=/etc/flower/config.py"

diff --git a/dev-python/flower/files/flower.initd 
b/dev-python/flower/files/flower.initd
deleted file mode 100644
index 1f950c6d210..00000000000
--- a/dev-python/flower/files/flower.initd
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 2015-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-description="Real-time monitor and web admin for Celery distributed task queue"
-pidfile=${pidfile:-"/run/${RC_SVCNAME}.pid"}
-command="/usr/libexec/${RC_SVCNAME}/${RC_SVCNAME}"
-command_user="${RC_SVCNAME}"
-command_background="true"
-start_stop_daemon_args="--stdout /var/log/${RC_SVCNAME}/${RC_SVCNAME}.log
-       --stderr /var/log/${RC_SVCNAME}/${RC_SVCNAME}.log"
-
-depend() {
-       need net
-}

diff --git a/dev-python/flower/files/flower.logrotated 
b/dev-python/flower/files/flower.logrotated
deleted file mode 100644
index 5c7f0287690..00000000000
--- a/dev-python/flower/files/flower.logrotated
+++ /dev/null
@@ -1,7 +0,0 @@
-/var/log/flower/flower.log {
-       missingok
-       size 5M
-       rotate 3
-       compress
-       copytruncate
-}

diff --git a/dev-python/flower/files/flower.service 
b/dev-python/flower/files/flower.service
deleted file mode 100644
index dd2f1d9da10..00000000000
--- a/dev-python/flower/files/flower.service
+++ /dev/null
@@ -1,13 +0,0 @@
-[Unit]
-Description=Real-time monitor and web admin for Celery distributed task queue
-Requires=network-online.target
-After=network-online.target
-
-[Service]
-User=flower
-PrivateDevices=Yes
-Environment=_FLOWER_OPTS="--conf=/etc/flower/config.py"
-ExecStart=/usr/libexec/flower/flower $_FLOWER_OPTS
-
-[Install]
-WantedBy=multi-user.target

diff --git a/dev-python/flower/flower-0.9.1-r1.ebuild 
b/dev-python/flower/flower-0.9.1-r1.ebuild
deleted file mode 100644
index 18ff6c25465..00000000000
--- a/dev-python/flower/flower-0.9.1-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1 systemd user
-
-DESCRIPTION="Real-time monitor and web admin for Celery distributed task queue"
-HOMEPAGE="https://flower.readthedocs.org/ https://github.com/mher/flower/ 
https://pypi.org/project/flower/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-RESTRICT="test"
-
-RDEPEND=">=dev-python/celery-3.1.0[${PYTHON_USEDEP}]
-       >=www-servers/tornado-4.2.0[${PYTHON_USEDEP}]
-       >=dev-python/pytz-2015.7[${PYTHON_USEDEP}]
-       >=dev-python/Babel-2.2.0[${PYTHON_USEDEP}]
-       dev-python/setuptools[${PYTHON_USEDEP}]"
-
-pkg_setup() {
-       enewgroup ${PN}
-       enewuser ${PN} -1 -1 /dev/null ${PN}
-}
-
-src_prepare() {
-       eapply_user
-       sed -e 's:tornado==4.2.0:tornado>=4.2.0:' \
-               -i requirements/default.txt || die
-}
-
-src_install() {
-       distutils-r1_src_install
-       insinto /etc/flower
-       doins "${FILESDIR}/config.py"
-       newinitd "${FILESDIR}/${PN}.initd" "${PN}"
-       newconfd "${FILESDIR}/${PN}.confd" "${PN}"
-       systemd_dounit "${FILESDIR}/${PN}.service"
-       keepdir /var/log/${PN}
-       fowners ${PN}:${PN} /var/log/${PN}
-       insinto /etc/logrotate.d
-       newins "${FILESDIR}/${PN}.logrotated" "${PN}"
-}
-
-python_install() {
-       distutils-r1_python_install --install-scripts 
"${EPREFIX}/usr/libexec/flower"
-}
-
-python_test() {
-       esetup.py test || die
-}

diff --git a/dev-python/flower/metadata.xml b/dev-python/flower/metadata.xml
deleted file mode 100644
index fc90b8ff79b..00000000000
--- a/dev-python/flower/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-  <!-- maintainer-needed -->
-  <upstream>
-    <remote-id type="github">mher/flower</remote-id>
-    <remote-id type="pypi">flower</remote-id>
-  </upstream>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index 65c8cd0da31..67bd19adc20 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -251,11 +251,6 @@ dev-python/asynctest
 # Removal in 30 days.  Bug #719540.
 dev-python/riak-python-client
 
-# Zac Medico <[email protected]> (2020-04-26)
-# Stuck on py3.6.  No revdeps.
-# Removal in 30 days.  Bug #718904.
-dev-python/flower
-
 # Michał Górny <[email protected]> (2020-04-26)
 # Unmaintained.  Stuck on Python 3.6.  No revdeps.
 # Removal in 30 days.  Bug #719604.

Reply via email to