Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/salt/files/, app-admin/salt/
Date: Thu, 08 Feb 2018 19:56:44
Message-Id: 1518119785.aefde3e8351ebb90d5f51d76f8d6d6fb13ca17d5.chutzpah@gentoo
1 commit: aefde3e8351ebb90d5f51d76f8d6d6fb13ca17d5
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 8 19:56:25 2018 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 8 19:56:25 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aefde3e8
7
8 app-admin/salt: Version bump to 2017.7.3
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 app-admin/salt/Manifest | 1 +
13 app-admin/salt/files/salt-2017.7.3-tests.patch | 66 ++++++++++++
14 app-admin/salt/salt-2017.7.3.ebuild | 142 +++++++++++++++++++++++++
15 3 files changed, 209 insertions(+)
16
17 diff --git a/app-admin/salt/Manifest b/app-admin/salt/Manifest
18 index 5d09e1c2ff3..d09cc36bf2c 100644
19 --- a/app-admin/salt/Manifest
20 +++ b/app-admin/salt/Manifest
21 @@ -1,2 +1,3 @@
22 DIST salt-2016.11.8.tar.gz 10142142 BLAKE2B e6805dae84c0d2e39109c95f603fcb54e1b7d7ff6c27ce555379b69274b3a5d72a1e372081a62c18440deb0955c1ef24a41c5d855a5e622f2ffe51276bd87b25 SHA512 0adc544ca460d13d2adb11b04575bd079a3dad1be3468bea7d32d0b74416b78546e4c86c75551bba09786be8e9810a6e30232414c4f5851cbc9a0fb4b894e0de
23 DIST salt-2017.7.2.tar.gz 11471191 BLAKE2B 0b7184eb4dcb29f2a9603117d1c6fb9c729093c1ff11e18370929ec3fdbfe7bf8c0914f17260c3f613842c23359205a4a84d3e0bcd67476705e50f805bcd7b69 SHA512 959cec404f0fa7c00f78427cba902b8b9c2c0d95016fc70925d8da6d0b97a0284fc034ac92a5c5c313763db4fdcbd1b0391318596b77fe8e0cd1c7e4b3fa928b
24 +DIST salt-2017.7.3.tar.gz 36461646 BLAKE2B 560038b8cd49dadec3f37e3864054f32d6d6544b0f48704e94a05b83f9d6277ce456ee36813a23844b93e338ca117ad0ee605dad49e77816810f1e7244b20b27 SHA512 0452ad6cf2a9bcecd0056f0a6f4871e36bf2abe8c207c93f79e1e9ace608b7ba2158e958a71121f230969ff0b32ffd26f048e369003f844eaf3f4f9dd4b4a19a
25
26 diff --git a/app-admin/salt/files/salt-2017.7.3-tests.patch b/app-admin/salt/files/salt-2017.7.3-tests.patch
27 new file mode 100644
28 index 00000000000..9399bf87334
29 --- /dev/null
30 +++ b/app-admin/salt/files/salt-2017.7.3-tests.patch
31 @@ -0,0 +1,66 @@
32 +diff --git a/tests/unit/fileserver/test_roots.py b/tests/unit/fileserver/test_roots.py
33 +index cc9c8dbce9..a50a240c25 100644
34 +--- a/tests/unit/fileserver/test_roots.py
35 ++++ b/tests/unit/fileserver/test_roots.py
36 +@@ -164,12 +164,6 @@ class RootsTest(TestCase, AdaptedConfigurationTestCaseMixin, LoaderModuleMockMix
37 + ret = roots.dir_list({'saltenv': 'base'})
38 + self.assertIn('empty_dir', ret)
39 +
40 +- def test_symlink_list(self):
41 +- if self.test_symlink_list_file_roots:
42 +- self.opts['file_roots'] = self.test_symlink_list_file_roots
43 +- ret = roots.symlink_list({'saltenv': 'base'})
44 +- self.assertDictEqual(ret, {'dest_sym': 'source_sym'})
45 +-
46 +
47 + class RootsLimitTraversalTest(TestCase, AdaptedConfigurationTestCaseMixin):
48 +
49 +diff --git a/tests/unit/modules/test_inspect_collector.py b/tests/unit/modules/test_inspect_collector.py
50 +index 0d37519a9e..c18be8d592 100644
51 +--- a/tests/unit/modules/test_inspect_collector.py
52 ++++ b/tests/unit/modules/test_inspect_collector.py
53 +@@ -59,44 +59,6 @@ class InspectorCollectorTestCase(TestCase):
54 + inspector.pidfile,
55 + os.sep + os.sep.join(['foo', 'pid', 'bar.pid']))
56 +
57 +- def test_file_tree(self):
58 +- '''
59 +- Test file tree.
60 +-
61 +- :return:
62 +- '''
63 +-
64 +- inspector = Inspector(cachedir=os.sep + 'test',
65 +- piddir=os.sep + 'test',
66 +- pidfilename='bar.pid')
67 +- tree_root = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'inspectlib', 'tree_test')
68 +- expected_tree = ([os.sep + os.sep.join(['a', 'a', 'dummy.a']),
69 +- os.sep + os.sep.join(['a', 'b', 'dummy.b']),
70 +- os.sep + os.sep.join(['b', 'b.1']),
71 +- os.sep + os.sep.join(['b', 'b.2']),
72 +- os.sep + os.sep.join(['b', 'b.3'])],
73 +- [os.sep + 'a',
74 +- os.sep + os.sep.join(['a', 'a']),
75 +- os.sep + os.sep.join(['a', 'b']),
76 +- os.sep + os.sep.join(['a', 'c']),
77 +- os.sep + 'b',
78 +- os.sep + 'c'],
79 +- [os.sep + os.sep.join(['a', 'a', 'dummy.ln.a']),
80 +- os.sep + os.sep.join(['a', 'b', 'dummy.ln.b']),
81 +- os.sep + os.sep.join(['a', 'c', 'b.1']),
82 +- os.sep + os.sep.join(['b', 'b.4']),
83 +- os.sep + os.sep.join(['b', 'b.5']),
84 +- os.sep + os.sep.join(['c', 'b.1']),
85 +- os.sep + os.sep.join(['c', 'b.2']),
86 +- os.sep + os.sep.join(['c', 'b.3'])])
87 +- tree_result = []
88 +- for chunk in inspector._get_all_files(tree_root):
89 +- buff = []
90 +- for pth in chunk:
91 +- buff.append(pth.replace(tree_root, ''))
92 +- tree_result.append(buff)
93 +- tree_result = tuple(tree_result)
94 +- self.assertEqual(expected_tree, tree_result)
95 +
96 + def test_get_unmanaged_files(self):
97 + '''
98
99 diff --git a/app-admin/salt/salt-2017.7.3.ebuild b/app-admin/salt/salt-2017.7.3.ebuild
100 new file mode 100644
101 index 00000000000..f31e0c09a66
102 --- /dev/null
103 +++ b/app-admin/salt/salt-2017.7.3.ebuild
104 @@ -0,0 +1,142 @@
105 +# Copyright 1999-2018 Gentoo Foundation
106 +# Distributed under the terms of the GNU General Public License v2
107 +
108 +EAPI=6
109 +PYTHON_COMPAT=( python2_7 )
110 +
111 +inherit eutils systemd distutils-r1
112 +
113 +DESCRIPTION="Salt is a remote execution and configuration manager"
114 +HOMEPAGE="http://saltstack.org/"
115 +
116 +if [[ ${PV} == 9999* ]]; then
117 + inherit git-r3
118 + EGIT_REPO_URI="git://github.com/${PN}stack/${PN}.git"
119 + EGIT_BRANCH="develop"
120 + SRC_URI=""
121 + KEYWORDS=""
122 +else
123 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
124 + KEYWORDS="~x86 ~amd64"
125 +fi
126 +
127 +LICENSE="Apache-2.0"
128 +SLOT="0"
129 +IUSE="cherrypy ldap libcloud libvirt gnupg keyring mako mongodb mysql neutron nova"
130 +IUSE+=" openssl portage profile redis selinux test timelib raet +zeromq vim-syntax"
131 +
132 +RDEPEND="sys-apps/pciutils
133 + dev-python/jinja[${PYTHON_USEDEP}]
134 + >=dev-python/msgpack-0.3[${PYTHON_USEDEP}]
135 + dev-python/pyyaml[${PYTHON_USEDEP}]
136 + dev-python/markupsafe[${PYTHON_USEDEP}]
137 + >=dev-python/requests-1.0.0[${PYTHON_USEDEP}]
138 + dev-python/setuptools[${PYTHON_USEDEP}]
139 + >=www-servers/tornado-4.2.1[${PYTHON_USEDEP}]
140 + virtual/python-futures[${PYTHON_USEDEP}]
141 + libcloud? ( >=dev-python/libcloud-0.14.0[${PYTHON_USEDEP}] )
142 + mako? ( dev-python/mako[${PYTHON_USEDEP}] )
143 + ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] )
144 + libvirt? ( dev-python/libvirt-python[${PYTHON_USEDEP}] )
145 + openssl? (
146 + dev-libs/openssl:*[-bindist]
147 + dev-python/pyopenssl[${PYTHON_USEDEP}]
148 + )
149 + raet? (
150 + >=dev-python/libnacl-1.0.0[${PYTHON_USEDEP}]
151 + >=dev-python/ioflo-1.1.7[${PYTHON_USEDEP}]
152 + >=dev-python/raet-0.6.0[${PYTHON_USEDEP}]
153 + )
154 + zeromq? (
155 + >=dev-python/pyzmq-2.2.0[${PYTHON_USEDEP}]
156 + >=dev-python/pycrypto-2.6.1[${PYTHON_USEDEP}]
157 + )
158 + cherrypy? ( >=dev-python/cherrypy-3.2.2[${PYTHON_USEDEP}] )
159 + mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] )
160 + portage? ( sys-apps/portage[${PYTHON_USEDEP}] )
161 + keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )
162 + mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
163 + redis? ( dev-python/redis-py[${PYTHON_USEDEP}] )
164 + selinux? ( sec-policy/selinux-salt )
165 + timelib? ( dev-python/timelib[${PYTHON_USEDEP}] )
166 + nova? ( >=dev-python/python-novaclient-2.17.0[${PYTHON_USEDEP}] )
167 + neutron? ( >=dev-python/python-neutronclient-2.3.6[${PYTHON_USEDEP}] )
168 + gnupg? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
169 + profile? ( dev-python/yappi[${PYTHON_USEDEP}] )
170 + vim-syntax? ( app-vim/salt-vim )"
171 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
172 + test? (
173 + dev-python/pytest-salt[${PYTHON_USEDEP}]
174 + dev-python/psutil[${PYTHON_USEDEP}]
175 + dev-python/pytest[${PYTHON_USEDEP}]
176 + dev-python/pip[${PYTHON_USEDEP}]
177 + dev-python/virtualenv[${PYTHON_USEDEP}]
178 + dev-python/mock[${PYTHON_USEDEP}]
179 + dev-python/timelib[${PYTHON_USEDEP}]
180 + >=dev-python/boto-2.32.1[${PYTHON_USEDEP}]
181 + !x86? ( >=dev-python/boto3-1.2.1[${PYTHON_USEDEP}] )
182 + >=dev-python/moto-0.3.6[${PYTHON_USEDEP}]
183 + >=dev-python/SaltTesting-2016.5.11[${PYTHON_USEDEP}]
184 + >=dev-python/libcloud-0.14.0[${PYTHON_USEDEP}]
185 + ${RDEPEND}
186 + )"
187 +
188 +DOCS=( README.rst AUTHORS )
189 +
190 +REQUIRED_USE="|| ( raet zeromq )"
191 +RESTRICT="x86? ( test )"
192 +
193 +PATCHES=(
194 + "${FILESDIR}/${PN}-2017.7.0-dont-realpath-tmpdir.patch"
195 + "${FILESDIR}/${PN}-2017.7.3-tests.patch"
196 +)
197 +
198 +python_prepare() {
199 + rm tests/unit/{test_zypp_plugins.py,utils/test_extend.py} || die
200 + rm tests/unit/modules/test_boto_{vpc,secgroup,elb}.py || die
201 + rm tests/unit/states/test_boto_vpc.py || die
202 + rm tests/unit/modules/test_kubernetes.py || die
203 +}
204 +
205 +python_install_all() {
206 + local svc
207 + USE_SETUPTOOLS=1 distutils-r1_python_install_all
208 +
209 + for svc in minion master syndic api; do
210 + newinitd "${FILESDIR}"/${svc}-initd-4 salt-${svc}
211 + newconfd "${FILESDIR}"/${svc}-confd-1 salt-${svc}
212 + systemd_dounit "${FILESDIR}"/salt-${svc}.service
213 + done
214 +
215 + insinto /etc/${PN}
216 + doins -r conf/*
217 +}
218 +
219 +python_test() {
220 + local tempdir
221 + # testsuite likes lots of files
222 + ulimit -n 3072 || die
223 +
224 + # ${T} is too long a path for the tests to work
225 + tempdir="$(mktemp -du --tmpdir=/tmp salt-XXX)"
226 + mkdir "${T}/$(basename "${tempdir}")"
227 + mkdir "${BUILD_DIR}"/../{templates,conf/cloud.{providers,profiles,maps}.d} || die
228 +
229 + (
230 + cleanup() {
231 + rm -f "${tempdir}"
232 + rmdir "${BUILD_DIR}"/../{templates,conf/cloud.{providers,profiles,maps}.d} || die
233 + }
234 +
235 + trap cleanup EXIT
236 +
237 + addwrite "${tempdir}"
238 + ln -s "$(realpath --relative-to=/tmp "${T}/$(basename "${tempdir}")")" "${tempdir}"
239 +
240 + USE_SETUPTOOLS=1 SHELL="/bin/bash" \
241 + TMPDIR="${tempdir}" \
242 + ${EPYTHON} tests/runtests.py \
243 + --unit-tests --no-report --verbose
244 +
245 + ) || die "testing failed"
246 +}