Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/supervisor/
Date: Thu, 30 Dec 2021 23:31:46
Message-Id: 1640907048.d72ce19f1c1751f430d5fe99db3d7d44a9da23ca.sbraz@gentoo
1 commit: d72ce19f1c1751f430d5fe99db3d7d44a9da23ca
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 30 23:26:20 2021 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 30 23:30:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d72ce19f
7
8 app-admin/supervisor: drop 4.2.0, 4.2.1
9
10 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
11
12 app-admin/supervisor/Manifest | 2 -
13 app-admin/supervisor/supervisor-4.2.0.ebuild | 62 ----------------------------
14 app-admin/supervisor/supervisor-4.2.1.ebuild | 54 ------------------------
15 3 files changed, 118 deletions(-)
16
17 diff --git a/app-admin/supervisor/Manifest b/app-admin/supervisor/Manifest
18 index c461f2f8bbd0..f20cd79a3b38 100644
19 --- a/app-admin/supervisor/Manifest
20 +++ b/app-admin/supervisor/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST supervisor-4.2.0.tar.gz 456056 BLAKE2B 51b66cfc34505b937c47c9b510d81bcc777b9372fdeb2e08fc25153d2718cd2682258b812630160954587ceb992e1a528cdd5bf0d270139f7ffac9463ac2f015 SHA512 626d806f4b03be7cbff795afd1bdb3ff5ca5ecf44f035909ea1aa9360da9fa3047b2fe05543190bf1442f01dcdd403be19fcd907519bf7e26615900bc4bf9d0f
23 -DIST supervisor-4.2.1.tar.gz 460935 BLAKE2B 0c65f904599c1e8a04cd3a71085e2b2a5460691c2bfd790d3b7c10449cae08472bcd72a870cbe611801434624f405ea3e245f156cab93f25a8df784b58d948d7 SHA512 c560ef959f8d580fb20c1812aa2a838c9feaeb3726a754e8084fa8c7406ff9258139b55b081558b8d8f33e4672cdfad40695170f55412a5e85a6c1aed0f11657
24 DIST supervisor-4.2.2.tar.gz 463657 BLAKE2B 766feffcbd70b575b6b7dfd6ed98e3510e0fd9362c423b677d44a2b5dd23ded14a349a279d3d28d4fd9e04a2175c8f00e24c07df310b61d34c7f69f60d26a4ac SHA512 f787206e6c6a5d3dfc4284974a4a87cbcaeac0c705afb2b8eae53f066413bd9e68095c5309e29625e01469a4748613370e1ac0d7be84b9d72c3623244bdd2eb3
25 DIST supervisor-4.2.4.tar.gz 465151 BLAKE2B 91b99a64950dc874bdc008ba53ca8b1962cc34981fee27c2fd82956d73ace9eaaf91439ef6be40530c4860fe1eee193e19b51ab81050f7368aa7d31f8444c785 SHA512 38c55aeadb8664337b667aad891a3a2134ae4af88e90d636054e6be9aebc8a3ef87d79d15fcafd2b9966af562deeedc96ac3730bde9439dde30208f0a874f2d7
26
27 diff --git a/app-admin/supervisor/supervisor-4.2.0.ebuild b/app-admin/supervisor/supervisor-4.2.0.ebuild
28 deleted file mode 100644
29 index 44d710173315..000000000000
30 --- a/app-admin/supervisor/supervisor-4.2.0.ebuild
31 +++ /dev/null
32 @@ -1,62 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( pypy3 python3_{7,8} )
39 -# xml.etree.ElementTree module required.
40 -PYTHON_REQ_USE="xml(+)"
41 -DISTUTILS_USE_SETUPTOOLS=rdepend
42 -
43 -inherit distutils-r1 systemd
44 -
45 -MY_PV="${PV/_beta/b}"
46 -
47 -DESCRIPTION="A system for controlling process state under UNIX"
48 -HOMEPAGE="http://supervisord.org/ https://pypi.org/project/supervisor/"
49 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz"
50 -S="${WORKDIR}/${PN}-${MY_PV}"
51 -
52 -LICENSE="repoze ZPL BSD HPND GPL-2"
53 -SLOT="0"
54 -KEYWORDS="amd64 x86"
55 -
56 -RDEPEND="acct-group/supervisor"
57 -
58 -distutils_enable_sphinx docs
59 -distutils_enable_tests pytest
60 -
61 -python_prepare_all() {
62 - # Skip one test that currently fails
63 - # https://github.com/Supervisor/supervisor/issues/1346
64 - sed -i 's/test_prepare_socket/_&/' \
65 - supervisor/tests/test_socket_manager.py || die
66 - distutils-r1_python_prepare_all
67 -}
68 -
69 -python_install_all() {
70 - distutils-r1_python_install_all
71 - newinitd "${FILESDIR}/init.d-r2" supervisord
72 - newconfd "${FILESDIR}/conf.d-r1" supervisord
73 - dodoc supervisor/skel/sample.conf
74 - keepdir /etc/supervisord.d
75 - insinto /etc
76 - doins "${FILESDIR}/supervisord.conf"
77 - keepdir /var/log/supervisor
78 - systemd_dounit "${FILESDIR}/supervisord.service"
79 -}
80 -
81 -pkg_preinst() {
82 - fowners :supervisor /var/log/supervisor
83 - fperms 750 /var/log/supervisor
84 -}
85 -
86 -pkg_postinst() {
87 - if [[ -z "${REPLACING_VERSIONS}" ]]; then
88 - # This is a new installation
89 - elog "You may install your configuration files in ${EROOT}/etc/supervisord.d"
90 - elog "For config examples, see ${EROOT}/usr/share/doc/${PF}/sample.conf.bz2"
91 - elog ""
92 - elog "By default, only members of the supervisor group can run supervisorctl."
93 - fi
94 -}
95
96 diff --git a/app-admin/supervisor/supervisor-4.2.1.ebuild b/app-admin/supervisor/supervisor-4.2.1.ebuild
97 deleted file mode 100644
98 index 999e761f2fc8..000000000000
99 --- a/app-admin/supervisor/supervisor-4.2.1.ebuild
100 +++ /dev/null
101 @@ -1,54 +0,0 @@
102 -# Copyright 1999-2020 Gentoo Authors
103 -# Distributed under the terms of the GNU General Public License v2
104 -
105 -EAPI=7
106 -
107 -PYTHON_COMPAT=( pypy3 python3_{7,8,9} )
108 -# xml.etree.ElementTree module required.
109 -PYTHON_REQ_USE="xml(+)"
110 -DISTUTILS_USE_SETUPTOOLS=rdepend
111 -
112 -inherit distutils-r1 systemd
113 -
114 -MY_PV="${PV/_beta/b}"
115 -
116 -DESCRIPTION="A system for controlling process state under UNIX"
117 -HOMEPAGE="http://supervisord.org/ https://pypi.org/project/supervisor/"
118 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz"
119 -S="${WORKDIR}/${PN}-${MY_PV}"
120 -
121 -LICENSE="repoze ZPL BSD HPND GPL-2"
122 -SLOT="0"
123 -KEYWORDS="~amd64 ~x86"
124 -
125 -RDEPEND="acct-group/supervisor"
126 -
127 -distutils_enable_sphinx docs
128 -distutils_enable_tests pytest
129 -
130 -python_install_all() {
131 - distutils-r1_python_install_all
132 - newinitd "${FILESDIR}/init.d-r2" supervisord
133 - newconfd "${FILESDIR}/conf.d-r1" supervisord
134 - dodoc supervisor/skel/sample.conf
135 - keepdir /etc/supervisord.d
136 - insinto /etc
137 - doins "${FILESDIR}/supervisord.conf"
138 - keepdir /var/log/supervisor
139 - systemd_dounit "${FILESDIR}/supervisord.service"
140 -}
141 -
142 -pkg_preinst() {
143 - fowners :supervisor /var/log/supervisor
144 - fperms 750 /var/log/supervisor
145 -}
146 -
147 -pkg_postinst() {
148 - if [[ -z "${REPLACING_VERSIONS}" ]]; then
149 - # This is a new installation
150 - elog "You may install your configuration files in ${EROOT}/etc/supervisord.d"
151 - elog "For config examples, see ${EROOT}/usr/share/doc/${PF}/sample.conf.bz2"
152 - elog ""
153 - elog "By default, only members of the supervisor group can run supervisorctl."
154 - fi
155 -}