* [gentoo-commits] repo/gentoo:master commit in: dev-python/flower/
@ 2016-08-30 17:20 Zac Medico
0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico @ 2016-08-30 17:20 UTC (permalink / raw
To: gentoo-commits
commit: 310a7dabfd62706c92b304ced7453be81d91d6d3
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 30 17:19:38 2016 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 17:19:38 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=310a7dab
dev-python/flower: PYTHON_COMPAT: add python3_5
Package-Manager: portage-2.3.0
dev-python/flower/flower-0.8.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/flower/flower-0.8.4.ebuild b/dev-python/flower/flower-0.8.4.ebuild
index 4a2a0e7..a4197b8 100644
--- a/dev-python/flower/flower-0.8.4.ebuild
+++ b/dev-python/flower/flower-0.8.4.ebuild
@@ -3,7 +3,7 @@
# $Id$
EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4} )
+PYTHON_COMPAT=( python{2_7,3_{4,5}} )
inherit distutils-r1 systemd user
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/flower/
@ 2016-10-12 8:02 Zac Medico
0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico @ 2016-10-12 8:02 UTC (permalink / raw
To: gentoo-commits
commit: f22bded392bae308b4c5b6a334d6ad72ca01e8f4
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 12 08:01:11 2016 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Wed Oct 12 08:01:57 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f22bded3
dev-python/flower: version bump to 0.9.1
Package-Manager: portage-2.3.2
dev-python/flower/Manifest | 1 +
dev-python/flower/flower-0.9.1.ebuild | 56 +++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/dev-python/flower/Manifest b/dev-python/flower/Manifest
index bfb3d6f..c1829a6 100644
--- a/dev-python/flower/Manifest
+++ b/dev-python/flower/Manifest
@@ -1 +1,2 @@
DIST flower-0.8.4.tar.gz 2224949 SHA256 982c2aff14b1b01024cf3356ff90309bc19fba99f47faba3cdb6c3262331c66e SHA512 1f6dc52b011fabff4ea09180338fdc5a155da035daba378a0afb262964bf54bd5d6c90c68ece9a5740ab7e6e99d50e12b566fcd66d6de392163ea859f740f244 WHIRLPOOL 48556c044c7e6ad956288a96066ee985675d7f43116d3a8c749ec1aa3ab7090fb3e061f3e738ea57ef946c5a39e9a8b9290efc4cd8eeb2c8ef6d94a568645e03
+DIST flower-0.9.1.tar.gz 3880608 SHA256 bdd926b731e8024779a5373fa33bff4a30e2a2ae6cf3a591beb83fbde3dc352f SHA512 519d92209dbdb7956fde30c604956d1cbbc8ec7180ff160ea088847b5b63310cd42dc949d02eef1197588b0353470a0f3ac96b44b2e3ebb093a254d8f94fb407 WHIRLPOOL 3595137d6f83e2ace3d93281daa19bf3b46432f30467489ec46bef4ff437bbbd3975230c31d4bd3134fb54616ee0a6eea1136d23c088f3543a45da1f6a495db3
diff --git a/dev-python/flower/flower-0.9.1.ebuild b/dev-python/flower/flower-0.9.1.ebuild
new file mode 100644
index 00000000..14d496d
--- /dev/null
+++ b/dev-python/flower/flower-0.9.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_{4,5}} )
+
+inherit distutils-r1 systemd user
+
+DESCRIPTION="Real-time monitor and web admin for Celery distributed task queue"
+HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/mher/${PN}/ https://pypi.python.org/pypi/${PN}"
+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
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/flower/
@ 2017-03-17 17:13 Zac Medico
0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico @ 2017-03-17 17:13 UTC (permalink / raw
To: gentoo-commits
commit: c1d7f27adef97b2eaeca31d5dd7b6f9e7e5775e1
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 17:08:31 2017 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 17:13:04 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1d7f27a
dev-python/flower: Add python3_6 to PYTHON_COMPAT
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-python/flower/flower-0.9.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/flower/flower-0.9.1.ebuild b/dev-python/flower/flower-0.9.1.ebuild
index 595f119c5f7..c5b5750941f 100644
--- a/dev-python/flower/flower-0.9.1.ebuild
+++ b/dev-python/flower/flower-0.9.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1 systemd user
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/flower/
@ 2017-09-14 23:26 Zac Medico
0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico @ 2017-09-14 23:26 UTC (permalink / raw
To: gentoo-commits
commit: 4c601ac6e3c9e12a18581918be93486b43aeea82
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 14 23:24:43 2017 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Thu Sep 14 23:26:22 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c601ac6
dev-python/flower: remove old version
Package-Manager: Portage-2.3.8, Repoman-2.3.2
dev-python/flower/Manifest | 1 -
dev-python/flower/flower-0.8.4.ebuild | 56 -----------------------------------
2 files changed, 57 deletions(-)
diff --git a/dev-python/flower/Manifest b/dev-python/flower/Manifest
index c1829a6d90f..2bd0c314a69 100644
--- a/dev-python/flower/Manifest
+++ b/dev-python/flower/Manifest
@@ -1,2 +1 @@
-DIST flower-0.8.4.tar.gz 2224949 SHA256 982c2aff14b1b01024cf3356ff90309bc19fba99f47faba3cdb6c3262331c66e SHA512 1f6dc52b011fabff4ea09180338fdc5a155da035daba378a0afb262964bf54bd5d6c90c68ece9a5740ab7e6e99d50e12b566fcd66d6de392163ea859f740f244 WHIRLPOOL 48556c044c7e6ad956288a96066ee985675d7f43116d3a8c749ec1aa3ab7090fb3e061f3e738ea57ef946c5a39e9a8b9290efc4cd8eeb2c8ef6d94a568645e03
DIST flower-0.9.1.tar.gz 3880608 SHA256 bdd926b731e8024779a5373fa33bff4a30e2a2ae6cf3a591beb83fbde3dc352f SHA512 519d92209dbdb7956fde30c604956d1cbbc8ec7180ff160ea088847b5b63310cd42dc949d02eef1197588b0353470a0f3ac96b44b2e3ebb093a254d8f94fb407 WHIRLPOOL 3595137d6f83e2ace3d93281daa19bf3b46432f30467489ec46bef4ff437bbbd3975230c31d4bd3134fb54616ee0a6eea1136d23c088f3543a45da1f6a495db3
diff --git a/dev-python/flower/flower-0.8.4.ebuild b/dev-python/flower/flower-0.8.4.ebuild
deleted file mode 100644
index 54806c477b4..00000000000
--- a/dev-python/flower/flower-0.8.4.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
-
-inherit distutils-r1 systemd user
-
-DESCRIPTION="Real-time monitor and web admin for Celery distributed task queue"
-HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/mher/${PN}/ https://pypi.python.org/pypi/${PN}"
-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() {
- sed -e 's:babel==2.2.0:babel>=2.2.0:' \
- -e 's:pytz==2015.7:pytz>=2015.7:' \
- -e 's:tornado==4.2.0:tornado>=4.2.0:' \
- -i flower.egg-info/requires.txt 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
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/flower/
@ 2018-04-13 9:53 Zac Medico
0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico @ 2018-04-13 9:53 UTC (permalink / raw
To: gentoo-commits
commit: 3af3071005fb722cc6c574fcbf87831450cf5e21
Author: Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Fri Apr 13 06:54:02 2018 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Fri Apr 13 09:52:09 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3af30710
dev-python/flower: remove variables from HOMEPAGE
Package-Manager: Portage-2.3.28, Repoman-2.3.9
dev-python/flower/flower-0.9.1-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/flower/flower-0.9.1-r1.ebuild b/dev-python/flower/flower-0.9.1-r1.ebuild
index c5b5750941f..70e17db07d9 100644
--- a/dev-python/flower/flower-0.9.1-r1.ebuild
+++ b/dev-python/flower/flower-0.9.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1 systemd user
DESCRIPTION="Real-time monitor and web admin for Celery distributed task queue"
-HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/mher/${PN}/ https://pypi.python.org/pypi/${PN}"
+HOMEPAGE="https://flower.readthedocs.org/ https://github.com/mher/flower/ https://pypi.python.org/pypi/flower"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/flower/
@ 2020-04-26 22:56 Zac Medico
0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico @ 2020-04-26 22:56 UTC (permalink / raw
To: gentoo-commits
commit: 41a93db5602dff50d358d41a3b8884dbb1451d8b
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 26 22:49:53 2020 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sun Apr 26 22:56:42 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41a93db5
dev-python/flower: Remove self as maintainer
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
dev-python/flower/metadata.xml | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/dev-python/flower/metadata.xml b/dev-python/flower/metadata.xml
index 119189addfa..fc90b8ff79b 100644
--- a/dev-python/flower/metadata.xml
+++ b/dev-python/flower/metadata.xml
@@ -1,9 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>zmedico@gentoo.org</email>
- </maintainer>
+ <!-- maintainer-needed -->
<upstream>
<remote-id type="github">mher/flower</remote-id>
<remote-id type="pypi">flower</remote-id>
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-04-26 22:56 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-26 22:56 [gentoo-commits] repo/gentoo:master commit in: dev-python/flower/ Zac Medico
-- strict thread matches above, loose matches on Subject: below --
2018-04-13 9:53 Zac Medico
2017-09-14 23:26 Zac Medico
2017-03-17 17:13 Zac Medico
2016-10-12 8:02 Zac Medico
2016-08-30 17:20 Zac Medico
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox