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: Fri, 11 Sep 2020 23:56:56
Message-Id: 1599868220.95f5d993f797aca78a21e3321f5a1cce2480a8c2.sbraz@gentoo
1 commit: 95f5d993f797aca78a21e3321f5a1cce2480a8c2
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 11 23:49:06 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 11 23:50:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95f5d993
7
8 app-admin/supervisor: remove old
9
10 Package-Manager: Portage-3.0.6, Repoman-3.0.1
11 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
12
13 app-admin/supervisor/Manifest | 2 -
14 app-admin/supervisor/supervisor-4.0.4.ebuild | 77 ----------------------------
15 app-admin/supervisor/supervisor-4.1.0.ebuild | 54 -------------------
16 3 files changed, 133 deletions(-)
17
18 diff --git a/app-admin/supervisor/Manifest b/app-admin/supervisor/Manifest
19 index 9f01b83f929..03d5647fd2b 100644
20 --- a/app-admin/supervisor/Manifest
21 +++ b/app-admin/supervisor/Manifest
22 @@ -1,4 +1,2 @@
23 -DIST supervisor-4.0.4.tar.gz 437708 BLAKE2B 211726da07ce31c00da0d6edba57942d78ee5d2757927b22afe569364c29aaf55375d4895b381f06071bc6b6c39a926ca2073e8fcb8e0ea9673a89aafd08b346 SHA512 22a38f759b0584310f5e16acbfc7b0c4cc59f3206fbfaf6295bd40a826d50ad02c8b0093821362c5038dd987a6599879d82dcefe948a2eda702b89e9f92e471e
24 -DIST supervisor-4.1.0.tar.gz 459020 BLAKE2B 0c4bdc2c89f54c08ad536b43852941f1aadb0173013e0f73337302f500b779023bfa0fcf8cc3ace4968cfc724998a08ea5a63680e290051d13c7cd8ac788dd24 SHA512 1ae343293707ebf33d0a0c0bda2c6cc78278e12737940a79e51b2365e7a20b07d9f5e50134ed2abbf8e7af1ebd8f1746002a159cde1cfc35e83fda0a77dae9c5
25 DIST supervisor-4.2.0.tar.gz 456056 BLAKE2B 51b66cfc34505b937c47c9b510d81bcc777b9372fdeb2e08fc25153d2718cd2682258b812630160954587ceb992e1a528cdd5bf0d270139f7ffac9463ac2f015 SHA512 626d806f4b03be7cbff795afd1bdb3ff5ca5ecf44f035909ea1aa9360da9fa3047b2fe05543190bf1442f01dcdd403be19fcd907519bf7e26615900bc4bf9d0f
26 DIST supervisor-4.2.1.tar.gz 460935 BLAKE2B 0c65f904599c1e8a04cd3a71085e2b2a5460691c2bfd790d3b7c10449cae08472bcd72a870cbe611801434624f405ea3e245f156cab93f25a8df784b58d948d7 SHA512 c560ef959f8d580fb20c1812aa2a838c9feaeb3726a754e8084fa8c7406ff9258139b55b081558b8d8f33e4672cdfad40695170f55412a5e85a6c1aed0f11657
27
28 diff --git a/app-admin/supervisor/supervisor-4.0.4.ebuild b/app-admin/supervisor/supervisor-4.0.4.ebuild
29 deleted file mode 100644
30 index adec89632ec..00000000000
31 --- a/app-admin/supervisor/supervisor-4.0.4.ebuild
32 +++ /dev/null
33 @@ -1,77 +0,0 @@
34 -# Copyright 1999-2020 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -PYTHON_COMPAT=( pypy3 python3_{6,7} )
40 -# xml.etree.ElementTree module required.
41 -PYTHON_REQ_USE="xml(+)"
42 -
43 -inherit distutils-r1 systemd user
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 -
51 -LICENSE="repoze ZPL BSD HPND GPL-2"
52 -SLOT="0"
53 -KEYWORDS="amd64 x86"
54 -IUSE="doc test"
55 -RESTRICT="!test? ( test )"
56 -
57 -RDEPEND="
58 - >=dev-python/meld3-1.0.0[${PYTHON_USEDEP}]
59 - dev-python/setuptools[${PYTHON_USEDEP}]
60 -"
61 -BDEPEND="
62 - dev-python/setuptools[${PYTHON_USEDEP}]
63 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
64 - test? (
65 - ${RDEPEND}
66 - dev-python/mock[${PYTHON_USEDEP}]
67 - dev-python/pytest[${PYTHON_USEDEP}]
68 - )
69 -"
70 -
71 -S="${WORKDIR}/${PN}-${MY_PV}"
72 -
73 -python_compile_all() {
74 - if use doc; then
75 - emake -C docs html
76 - HTML_DOCS=( docs/.build/html/. )
77 - fi
78 -}
79 -
80 -python_test() {
81 - pytest -vv || die "tests failed with ${EPYTHON}"
82 -}
83 -
84 -python_install_all() {
85 - distutils-r1_python_install_all
86 - newinitd "${FILESDIR}/init.d-r2" supervisord
87 - newconfd "${FILESDIR}/conf.d-r1" supervisord
88 - dodoc supervisor/skel/sample.conf
89 - keepdir /etc/supervisord.d
90 - insinto /etc
91 - doins "${FILESDIR}/supervisord.conf"
92 - keepdir /var/log/supervisor
93 - systemd_dounit "${FILESDIR}/supervisord.service"
94 -}
95 -
96 -pkg_preinst() {
97 - enewgroup supervisor
98 - fowners :supervisor /var/log/supervisor
99 - fperms 750 /var/log/supervisor
100 -}
101 -
102 -pkg_postinst() {
103 - if [[ -z "${REPLACING_VERSIONS}" ]]; then
104 - # This is a new installation
105 - elog "You may install your configuration files in ${EROOT}/etc/supervisord.d"
106 - elog "For config examples, see ${EROOT}/usr/share/doc/${PF}/sample.conf.bz2"
107 - elog ""
108 - elog "By default, only members of the supervisor group can run supervisorctl."
109 - fi
110 -}
111
112 diff --git a/app-admin/supervisor/supervisor-4.1.0.ebuild b/app-admin/supervisor/supervisor-4.1.0.ebuild
113 deleted file mode 100644
114 index 66bc0c1f582..00000000000
115 --- a/app-admin/supervisor/supervisor-4.1.0.ebuild
116 +++ /dev/null
117 @@ -1,54 +0,0 @@
118 -# Copyright 1999-2020 Gentoo Authors
119 -# Distributed under the terms of the GNU General Public License v2
120 -
121 -EAPI=7
122 -
123 -PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
124 -# xml.etree.ElementTree module required.
125 -PYTHON_REQ_USE="xml(+)"
126 -DISTUTILS_USE_SETUPTOOLS=rdepend
127 -
128 -inherit distutils-r1 systemd
129 -
130 -MY_PV="${PV/_beta/b}"
131 -
132 -DESCRIPTION="A system for controlling process state under UNIX"
133 -HOMEPAGE="http://supervisord.org/ https://pypi.org/project/supervisor/"
134 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz"
135 -S="${WORKDIR}/${PN}-${MY_PV}"
136 -
137 -LICENSE="repoze ZPL BSD HPND GPL-2"
138 -SLOT="0"
139 -KEYWORDS="~amd64 ~x86"
140 -
141 -RDEPEND="acct-group/supervisor"
142 -
143 -distutils_enable_sphinx docs
144 -distutils_enable_tests pytest
145 -
146 -python_install_all() {
147 - distutils-r1_python_install_all
148 - newinitd "${FILESDIR}/init.d-r2" supervisord
149 - newconfd "${FILESDIR}/conf.d-r1" supervisord
150 - dodoc supervisor/skel/sample.conf
151 - keepdir /etc/supervisord.d
152 - insinto /etc
153 - doins "${FILESDIR}/supervisord.conf"
154 - keepdir /var/log/supervisor
155 - systemd_dounit "${FILESDIR}/supervisord.service"
156 -}
157 -
158 -pkg_preinst() {
159 - fowners :supervisor /var/log/supervisor
160 - fperms 750 /var/log/supervisor
161 -}
162 -
163 -pkg_postinst() {
164 - if [[ -z "${REPLACING_VERSIONS}" ]]; then
165 - # This is a new installation
166 - elog "You may install your configuration files in ${EROOT}/etc/supervisord.d"
167 - elog "For config examples, see ${EROOT}/usr/share/doc/${PF}/sample.conf.bz2"
168 - elog ""
169 - elog "By default, only members of the supervisor group can run supervisorctl."
170 - fi
171 -}