Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-auth/keystone/
Date: Mon, 04 Apr 2022 19:32:19
Message-Id: 1649100723.85ef5e1f3a6567e0bce34a14c0a6472397ce1cfe.Alessandro-Barbieri@gentoo
1 commit: 85ef5e1f3a6567e0bce34a14c0a6472397ce1cfe
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Mon Apr 4 19:05:16 2022 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Mon Apr 4 19:32:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=85ef5e1f
7
8 sys-auth/keystone: add 21.0.0
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 sys-auth/keystone/Manifest | 1 +
13 sys-auth/keystone/keystone-21.0.0.ebuild | 169 +++++++++++++++++++++++++++++++
14 2 files changed, 170 insertions(+)
15
16 diff --git a/sys-auth/keystone/Manifest b/sys-auth/keystone/Manifest
17 index aed973eb6..03002791a 100644
18 --- a/sys-auth/keystone/Manifest
19 +++ b/sys-auth/keystone/Manifest
20 @@ -1 +1,2 @@
21 DIST keystone-21.0.0.0rc1.tar.gz 1698152 BLAKE2B 703fb7b56a12cc3909a8990a2c21df2fca056f5eda43bd562ff8dcaeb06aa61db60b6d2ba6010d5c987f74f8d529eb66f086e648cbef25f96867e6c6b2644b29 SHA512 290e7ce13de1d7a232ef41166d51585460f6be745daf5477b8d83a8537f09eaecb82d6fabf554be777108b4a281ffb2e65457fe815a0405355a9e19c6f31f442
22 +DIST keystone-21.0.0.tar.gz 1697791 BLAKE2B e7c81ffa3d94ff12bd3aaeeaf4d8d7238b6d62c124419af9c8572ac47ace6eaa290bf922642d3c517dbd7ffab8b4a65705868ccea2c3715d85373bd830894961 SHA512 2214a96e058e553da5ab61423f3ebe3ba0e56a4a431d8109f845c2b967c4f2b98f5f1a15102b3b0c68ec48ebb1a3397b96576be98e991db601e916ff4e947043
23
24 diff --git a/sys-auth/keystone/keystone-21.0.0.ebuild b/sys-auth/keystone/keystone-21.0.0.ebuild
25 new file mode 100644
26 index 000000000..662dd4ae7
27 --- /dev/null
28 +++ b/sys-auth/keystone/keystone-21.0.0.ebuild
29 @@ -0,0 +1,169 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +MYP="${P/_/}"
36 +PYTHON_COMPAT=( python3_{8..9} )
37 +
38 +inherit distutils-r1 tmpfiles
39 +
40 +DESCRIPTION="The Openstack authentication, authorization, and service catalog"
41 +HOMEPAGE="
42 + https://opendev.org/openstack/keystone
43 + https://launchpad.net/keystone
44 + https://pypi.org/project/keystone/
45 +"
46 +SRC_URI="https://tarballs.openstack.org/${PN}/${MYP}.tar.gz"
47 +S="${WORKDIR}/${MYP}"
48 +
49 +KEYWORDS="~amd64"
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +IUSE="+sqlite ldap memcached mongo mysql postgres"
53 +
54 +RDEPEND="
55 + >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
56 + >=dev-python/webob-1.7.1[${PYTHON_USEDEP}]
57 + >=dev-python/flask-1.0.2[${PYTHON_USEDEP}]
58 + >=dev-python/flask-restful-0.3.5[${PYTHON_USEDEP}]
59 + >=dev-python/cryptography-2.7[${PYTHON_USEDEP}]
60 + >=dev-python/sqlalchemy-migrate-0.13.0[${PYTHON_USEDEP}]
61 + >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
62 + >=dev-python/passlib-1.7.0[${PYTHON_USEDEP}]
63 + >=dev-python/python-keystoneclient-3.8.0[${PYTHON_USEDEP}]
64 + >=dev-python/keystonemiddleware-7.0.0[${PYTHON_USEDEP}]
65 + >=dev-python/bcrypt-3.1.3[${PYTHON_USEDEP}]
66 + >=dev-python/scrypt-0.8.0[${PYTHON_USEDEP}]
67 + >=dev-python/oslo-cache-1.26.0[${PYTHON_USEDEP}]
68 + >=dev-python/oslo-config-6.8.0[${PYTHON_USEDEP}]
69 + >=dev-python/oslo-context-2.22.0[${PYTHON_USEDEP}]
70 + >=dev-python/oslo-messaging-5.29.0[${PYTHON_USEDEP}]
71 + >=dev-python/oslo-db-6.0.0[${PYTHON_USEDEP}]
72 + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
73 + >=dev-python/oslo-log-3.44.0[${PYTHON_USEDEP}]
74 + >=dev-python/oslo-middleware-3.31.0[${PYTHON_USEDEP}]
75 + >=dev-python/oslo-policy-3.7.0[${PYTHON_USEDEP}]
76 + >=dev-python/oslo-serialization-2.18.0[${PYTHON_USEDEP}]
77 + >=dev-python/oslo-upgradecheck-1.3.0[${PYTHON_USEDEP}]
78 + >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
79 + >=dev-python/oauthlib-0.6.2[${PYTHON_USEDEP}]
80 + >=dev-python/pysaml2-5.0.0[${PYTHON_USEDEP}]
81 + >=dev-python/pyjwt-1.6.1[${PYTHON_USEDEP}]
82 + >=dev-python/dogpile-cache-1.0.2[${PYTHON_USEDEP}]
83 + >=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}]
84 + >=dev-python/pycadf-1.1.0[${PYTHON_USEDEP}]
85 + >=dev-python/msgpack-0.5.0[${PYTHON_USEDEP}]
86 + >=dev-python/osprofiler-1.4.0[${PYTHON_USEDEP}]
87 + >=dev-python/pytz-2013.6[${PYTHON_USEDEP}]
88 +
89 + ldap? (
90 + >=dev-python/python-ldap-3.1.0[${PYTHON_USEDEP}]
91 + >=dev-python/ldappool-2.3.1[${PYTHON_USEDEP}]
92 + )
93 + mysql? (
94 + >=dev-python/pymysql-0.7.6[${PYTHON_USEDEP}]
95 + >=dev-python/sqlalchemy-1.3.0[${PYTHON_USEDEP}]
96 + )
97 + memcached? (
98 + >=dev-python/python-memcached-1.56[${PYTHON_USEDEP}]
99 + )
100 + mongo? (
101 + >=dev-python/pymongo-3.0.2[${PYTHON_USEDEP}]
102 + )
103 + postgres? (
104 + >=dev-python/psycopg-2.5.0[${PYTHON_USEDEP}]
105 + >=dev-python/sqlalchemy-1.3.0[${PYTHON_USEDEP}]
106 + )
107 + sqlite? (
108 + >=dev-python/sqlalchemy-1.3.0[sqlite,${PYTHON_USEDEP}]
109 + )
110 +
111 + || (
112 + www-servers/uwsgi[python,${PYTHON_USEDEP}]
113 + www-apache/mod_wsgi[${PYTHON_USEDEP}]
114 + www-servers/gunicorn[${PYTHON_USEDEP}]
115 + )
116 + acct-user/keystone
117 + acct-group/keystone
118 +"
119 +DEPEND="${RDEPEND}"
120 +BDEPEND="
121 + test? (
122 + >=dev-python/bashate-0.5.1[${PYTHON_USEDEP}]
123 + >=dev-python/freezegun-0.3.6[${PYTHON_USEDEP}]
124 + >=dev-python/pytz-2013.6[${PYTHON_USEDEP}]
125 + >=dev-python/oslo-db-6.0.0[${PYTHON_USEDEP}]
126 + >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
127 + >=dev-python/lxml-4.5.0[${PYTHON_USEDEP}]
128 + >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
129 + >=dev-python/webtest-2.0.27[${PYTHON_USEDEP}]
130 + >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
131 + >=dev-python/tempest-17.1.0[${PYTHON_USEDEP}]
132 + >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
133 + )
134 +"
135 +
136 +PATCHES=( "${FILESDIR}/${P}-no-usr-local-bin.patch" )
137 +REQUIRED_USE="
138 + || ( mysql postgres sqlite )
139 + test? ( ldap )
140 +"
141 +
142 +distutils_enable_tests pytest
143 +
144 +python_prepare_all() {
145 + sed -i '/^hacking/d' test-requirements.txt || die
146 + # allow usage of renamed msgpack
147 + sed -i '/^msgpack/d' requirements.txt || die
148 + distutils-r1_python_prepare_all
149 +}
150 +
151 +python_compile_all() {
152 + oslo-config-generator --config-file=config-generator/keystone.conf || die
153 + oslopolicy-sample-generator --config-file config-generator/keystone-policy-generator.conf || die
154 +}
155 +
156 +python_install_all() {
157 + distutils-r1_python_install_all
158 +
159 + diropts -m 0750
160 + keepdir /etc/keystone /var/log/keystone
161 + insinto /etc/keystone
162 + insopts -m 0640 -o keystone -g keystone
163 + doins etc/keystone.conf.sample
164 + doins etc/keystone.policy.yaml.sample
165 + doins etc/logging.conf.sample
166 + doins etc/default_catalog.templates
167 + insinto /etc/keystone/httpd
168 + doins httpd/*
169 +
170 + fowners keystone:keystone /etc/keystone /etc/keystone/httpd /var/log/keystone
171 +
172 + newtmpfiles "${FILESDIR}/keystone.tmpfile" keystone.conf
173 +
174 + insinto /etc/logrotate.d
175 + newins "${FILESDIR}/keystone.logrotate" keystone.conf
176 +
177 + rm -r "${ED}/usr/etc" || die
178 +}
179 +
180 +pkg_postinst() {
181 + elog "You might want to run:"
182 + elog "emerge --config =${CATEGORY}/${PF}"
183 + elog "if this is a new install."
184 + elog "If you have not already configured your openssl installation"
185 + elog "please do it by modifying /etc/ssl/openssl.cnf"
186 + elog "BEFORE issuing the configuration command."
187 + elog "Otherwise default values will be used."
188 +}
189 +
190 +pkg_config() {
191 + if [ ! -d "${ROOT}/etc/keystone/ssl" ] ; then
192 + einfo "Press ENTER to configure the keystone PKI, or Control-C to abort now..."
193 + read
194 + "${ROOT}/usr/bin/keystone-manage" pki_setup --keystone-user keystone --keystone-group keystone
195 + else
196 + einfo "keystone PKI certificates directory already present, skipping configuration"
197 + fi
198 +}