diff options
Diffstat (limited to 'meta/lib/oe/package_manager.py')
-rw-r--r-- | meta/lib/oe/package_manager.py | 32 |
1 files changed, 4 insertions, 28 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index 8be3d41706..f8fc3c28bf 100644 --- a/meta/lib/oe/package_manager.py +++ b/meta/lib/oe/package_manager.py | |||
@@ -7,6 +7,7 @@ import multiprocessing | |||
7 | import re | 7 | import re |
8 | import bb | 8 | import bb |
9 | import tempfile | 9 | import tempfile |
10 | import oe.utils | ||
10 | 11 | ||
11 | 12 | ||
12 | # this can be used by all PM backends to create the index files in parallel | 13 | # this can be used by all PM backends to create the index files in parallel |
@@ -116,16 +117,7 @@ class RpmIndexer(Indexer): | |||
116 | bb.note("There are no packages in %s" % self.deploy_dir) | 117 | bb.note("There are no packages in %s" % self.deploy_dir) |
117 | return | 118 | return |
118 | 119 | ||
119 | nproc = multiprocessing.cpu_count() | 120 | oe.utils.multiprocess_exec(index_cmds, create_index) |
120 | pool = bb.utils.multiprocessingpool(nproc) | ||
121 | results = list(pool.imap(create_index, index_cmds)) | ||
122 | pool.close() | ||
123 | pool.join() | ||
124 | |||
125 | for result in results: | ||
126 | if result is not None: | ||
127 | return(result) | ||
128 | |||
129 | 121 | ||
130 | class OpkgIndexer(Indexer): | 122 | class OpkgIndexer(Indexer): |
131 | def write_index(self): | 123 | def write_index(self): |
@@ -161,15 +153,7 @@ class OpkgIndexer(Indexer): | |||
161 | bb.note("There are no packages in %s!" % self.deploy_dir) | 153 | bb.note("There are no packages in %s!" % self.deploy_dir) |
162 | return | 154 | return |
163 | 155 | ||
164 | nproc = multiprocessing.cpu_count() | 156 | oe.utils.multiprocess_exec(index_cmds, create_index) |
165 | pool = bb.utils.multiprocessingpool(nproc) | ||
166 | results = list(pool.imap(create_index, index_cmds)) | ||
167 | pool.close() | ||
168 | pool.join() | ||
169 | |||
170 | for result in results: | ||
171 | if result is not None: | ||
172 | return(result) | ||
173 | 157 | ||
174 | 158 | ||
175 | class DpkgIndexer(Indexer): | 159 | class DpkgIndexer(Indexer): |
@@ -210,15 +194,7 @@ class DpkgIndexer(Indexer): | |||
210 | bb.note("There are no packages in %s" % self.deploy_dir) | 194 | bb.note("There are no packages in %s" % self.deploy_dir) |
211 | return | 195 | return |
212 | 196 | ||
213 | nproc = multiprocessing.cpu_count() | 197 | oe.utils.multiprocess_exec(index_cmds, create_index) |
214 | pool = bb.utils.multiprocessingpool(nproc) | ||
215 | results = list(pool.imap(create_index, index_cmds)) | ||
216 | pool.close() | ||
217 | pool.join() | ||
218 | |||
219 | for result in results: | ||
220 | if result is not None: | ||
221 | return(result) | ||
222 | 198 | ||
223 | 199 | ||
224 | class PkgsList(object): | 200 | class PkgsList(object): |