We hebben een IBM Power systeem en ik zou daarop een opensource project op willen installeren https://github.com/Pioverpie/privatebin-api
Ik heb daar de PASE omgeving op geïnstalleerd en die is werkend. Ik heb verder een aantal opensource pakketten geïnstalleerd waaronder gcc, python3.9 (+ devel).
Ik heb tijdelijk mijn PATH aan gepast naar omdat de installatie anders mijn gcc niet vind:
Daarna start ik de installatie + build van het project:
Is het zo simpel als: "Het Power platform ondersteunt dit niet" of kan ik er toch iets aan doen om dit werkend te krijgen?
Ik heb ook een vraag uitstaan bij de developper, maar die lijkt niet te reageren op zijn 'oude' project'
Ik heb daar de PASE omgeving op geïnstalleerd en die is werkend. Ik heb verder een aantal opensource pakketten geïnstalleerd waaronder gcc, python3.9 (+ devel).
Ik heb tijdelijk mijn PATH aan gepast naar omdat de installatie anders mijn gcc niet vind:
code:
1
| export PATH=/QOpenSys/pkgs/bin:$PATH |
Daarna start ik de installatie + build van het project:
code:
1
| python -m pip install privatebinapi |
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
| bash-5.2$ python -m pip install privatebinapi
Collecting privatebinapi
Using cached PrivateBinAPI-1.0.0-py3-none-any.whl (10 kB)
Collecting PBinCLI
Using cached pbincli-0.3.7-py3-none-any.whl (17 kB)
Collecting httpx
Using cached httpx-0.28.1-py3-none-any.whl (73 kB)
Collecting requests
Using cached requests-2.32.5-py3-none-any.whl (64 kB)
Collecting anyio
Using cached anyio-4.11.0-py3-none-any.whl (109 kB)
Collecting httpcore==1.*
Using cached httpcore-1.0.9-py3-none-any.whl (78 kB)
Collecting certifi
Using cached certifi-2025.8.3-py3-none-any.whl (161 kB)
Collecting idna
Using cached idna-3.10-py3-none-any.whl (70 kB)
Collecting h11>=0.16
Using cached h11-0.16.0-py3-none-any.whl (37 kB)
Collecting typing_extensions>=4.5
Using cached typing_extensions-4.15.0-py3-none-any.whl (44 kB)
Collecting sniffio>=1.1
Using cached sniffio-1.3.1-py3-none-any.whl (10 kB)
Collecting exceptiongroup>=1.0.2
Using cached exceptiongroup-1.3.0-py3-none-any.whl (16 kB)
Collecting base58
Using cached base58-2.1.1-py3-none-any.whl (5.6 kB)
Collecting pysocks
Using cached PySocks-1.7.1-py3-none-any.whl (16 kB)
Collecting sjcl
Using cached sjcl-0.2.1-py3-none-any.whl
Collecting argcomplete
Using cached argcomplete-3.6.2-py3-none-any.whl (43 kB)
Collecting pycryptodome
Using cached pycryptodome-3.23.0.tar.gz (4.9 MB)
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing wheel metadata ... done
Collecting charset_normalizer<4,>=2
Using cached charset_normalizer-3.4.3-py3-none-any.whl (53 kB)
Collecting urllib3<3,>=1.21.1
Using cached urllib3-2.5.0-py3-none-any.whl (129 kB)
Building wheels for collected packages: pycryptodome
Building wheel for pycryptodome (PEP 517) ... error
ERROR: Command errored out with exit status 1:
command: /QOpenSys/pkgs/bin/python /QOpenSys/pkgs/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py build_wheel /tmp/tmpm50rw2jj
cwd: /tmp/pip-install-qfjvn5qs/pycryptodome_1d23091913034794861c3070f650a3d8
Complete output (402 lines):
/tmp/pip-build-env-mr8zmr4r/overlay/lib/python3.9/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated.
!!
********************************************************************************
Please consider removing the following classifiers in favor of a SPDX license expression:
License :: OSI Approved :: BSD License
License :: Public Domain
See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
********************************************************************************
!!
self._finalize_license_expression()
Testing support for clang
Target does not support clang
Testing support for gcc
Target does support gcc
Testing support for stdint.h header
Target does support stdint.h header
Testing support for 128-bit integer
Target does support 128-bit integer
Testing support for cpuid.h header
Target does not support cpuid.h header
Testing support for intrin.h header
Target does not support intrin.h header
Testing support for posix_memalign
Target does not support posix_memalign
Testing support for memalign
Target does not support memalign
Testing support for SSE2(intrin.h)
Target does not support SSE2(intrin.h)
Testing support for SSE2(x86intrin.h)
Target does not support SSE2(x86intrin.h)
Testing support for SSE2(emmintrin.h)
Target does not support SSE2(emmintrin.h)
Warning: compiler does not support AESNI instructions
Warning: compiler does not support CLMUL instructions
running bdist_wheel
running build
running build_py
creating build/lib.os400-powerpc64-cpython-39/Crypto
copying lib/Crypto/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto
creating build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/AES.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/ARC2.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/ARC4.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/Blowfish.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/CAST.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/ChaCha20.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/ChaCha20_Poly1305.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/DES.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/DES3.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/PKCS1_OAEP.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/PKCS1_v1_5.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/Salsa20.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_EKSBlowfish.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_cbc.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_ccm.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_cfb.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_ctr.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_eax.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_ecb.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_gcm.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_kw.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_kwp.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_ocb.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_ofb.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_openpgp.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_siv.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_pkcs1_oaep_decode.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
creating build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/BLAKE2b.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/BLAKE2s.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/CMAC.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/HMAC.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/KMAC128.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/KMAC256.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/KangarooTwelve.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/MD2.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/MD4.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/MD5.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/Poly1305.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/RIPEMD.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/RIPEMD160.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA1.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA224.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA256.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA384.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA3_224.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA3_256.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA3_384.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA3_512.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA512.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHAKE128.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHAKE256.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/TupleHash128.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/TupleHash256.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/TurboSHAKE128.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/TurboSHAKE256.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/cSHAKE128.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/cSHAKE256.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/keccak.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
creating build/lib.os400-powerpc64-cpython-39/Crypto/IO
copying lib/Crypto/IO/PEM.py -> build/lib.os400-powerpc64-cpython-39/Crypto/IO
copying lib/Crypto/IO/PKCS8.py -> build/lib.os400-powerpc64-cpython-39/Crypto/IO
copying lib/Crypto/IO/_PBES.py -> build/lib.os400-powerpc64-cpython-39/Crypto/IO
copying lib/Crypto/IO/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/IO
creating build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/DSA.py -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/ECC.py -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/ElGamal.py -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/RSA.py -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/_curve.py -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/_edwards.py -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/_montgomery.py -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/_nist_ecc.py -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/_openssh.py -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/_point.py -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
creating build/lib.os400-powerpc64-cpython-39/Crypto/Protocol
copying lib/Crypto/Protocol/DH.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Protocol
copying lib/Crypto/Protocol/HPKE.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Protocol
copying lib/Crypto/Protocol/KDF.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Protocol
copying lib/Crypto/Protocol/SecretSharing.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Protocol
copying lib/Crypto/Protocol/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Protocol
creating build/lib.os400-powerpc64-cpython-39/Crypto/Random
copying lib/Crypto/Random/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Random
copying lib/Crypto/Random/random.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Random
creating build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Signature/DSS.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Signature/PKCS1_PSS.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Signature/PKCS1_v1_5.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Signature/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Signature/eddsa.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Signature/pkcs1_15.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Signature/pss.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
creating build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/Counter.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/Padding.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/RFC1751.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/_cpu_features.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/_file_system.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/_raw_api.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/asn1.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/number.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/py3compat.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/strxor.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
creating build/lib.os400-powerpc64-cpython-39/Crypto/Math
copying lib/Crypto/Math/Numbers.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
copying lib/Crypto/Math/Primality.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
copying lib/Crypto/Math/_IntegerBase.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
copying lib/Crypto/Math/_IntegerCustom.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
copying lib/Crypto/Math/_IntegerGMP.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
copying lib/Crypto/Math/_IntegerNative.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
copying lib/Crypto/Math/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
creating build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest
copying lib/Crypto/SelfTest/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest
copying lib/Crypto/SelfTest/__main__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest
copying lib/Crypto/SelfTest/loader.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest
copying lib/Crypto/SelfTest/st_common.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest
creating build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/common.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_AES.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_ARC2.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_ARC4.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_Blowfish.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_CAST.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_CBC.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_CCM.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_CFB.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_CTR.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_ChaCha20.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_DES.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_DES3.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_EAX.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_GCM.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_KW.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_OCB.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_OFB.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_OpenPGP.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_SIV.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_Salsa20.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_pkcs1_15.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
copying lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Cipher
creating build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/common.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_BLAKE2.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_CMAC.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_HMAC.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_KMAC.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_KangarooTwelve.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_MD2.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_MD4.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_MD5.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_Poly1305.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_RIPEMD160.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_SHA1.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_SHA224.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_SHA256.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_SHA384.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_SHA3_224.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_SHA3_256.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_SHA3_384.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_SHA3_512.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_SHA512.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_SHAKE.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_TupleHash.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_TurboSHAKE.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_cSHAKE.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
copying lib/Crypto/SelfTest/Hash/test_keccak.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Hash
creating build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/IO
copying lib/Crypto/SelfTest/IO/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/IO
copying lib/Crypto/SelfTest/IO/test_PBES.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/IO
copying lib/Crypto/SelfTest/IO/test_PKCS8.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/IO
creating build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Protocol
copying lib/Crypto/SelfTest/Protocol/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Protocol
copying lib/Crypto/SelfTest/Protocol/test_HPKE.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Protocol
copying lib/Crypto/SelfTest/Protocol/test_KDF.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Protocol
copying lib/Crypto/SelfTest/Protocol/test_SecretSharing.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Protocol
copying lib/Crypto/SelfTest/Protocol/test_ecdh.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Protocol
copying lib/Crypto/SelfTest/Protocol/test_rfc1751.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Protocol
creating build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_DSA.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_ECC_Curve25519.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_ECC_Curve448.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_ECC_Ed25519.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_ECC_Ed448.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_ElGamal.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_RSA.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_import_Curve25519.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_import_Curve448.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_import_DSA.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_import_ECC.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
copying lib/Crypto/SelfTest/PublicKey/test_import_RSA.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/PublicKey
creating build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Random
copying lib/Crypto/SelfTest/Random/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Random
copying lib/Crypto/SelfTest/Random/test_random.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Random
creating build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Signature
copying lib/Crypto/SelfTest/Signature/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Signature
copying lib/Crypto/SelfTest/Signature/test_dss.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Signature
copying lib/Crypto/SelfTest/Signature/test_eddsa.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Signature
copying lib/Crypto/SelfTest/Signature/test_pkcs1_15.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Signature
copying lib/Crypto/SelfTest/Signature/test_pss.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Signature
creating build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Util
copying lib/Crypto/SelfTest/Util/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Util
copying lib/Crypto/SelfTest/Util/test_Counter.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Util
copying lib/Crypto/SelfTest/Util/test_Padding.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Util
copying lib/Crypto/SelfTest/Util/test_asn1.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Util
copying lib/Crypto/SelfTest/Util/test_number.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Util
copying lib/Crypto/SelfTest/Util/test_rfc1751.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Util
copying lib/Crypto/SelfTest/Util/test_strxor.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Util
creating build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Math
copying lib/Crypto/SelfTest/Math/__init__.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Math
copying lib/Crypto/SelfTest/Math/test_Numbers.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Math
copying lib/Crypto/SelfTest/Math/test_Primality.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Math
copying lib/Crypto/SelfTest/Math/test_modexp.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Math
copying lib/Crypto/SelfTest/Math/test_modmult.py -> build/lib.os400-powerpc64-cpython-39/Crypto/SelfTest/Math
copying lib/Crypto/__init__.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto
copying lib/Crypto/py.typed -> build/lib.os400-powerpc64-cpython-39/Crypto
copying lib/Crypto/Cipher/AES.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/ARC2.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/ARC4.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/Blowfish.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/CAST.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/ChaCha20.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/ChaCha20_Poly1305.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/DES.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/DES3.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/PKCS1_OAEP.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/PKCS1_v1_5.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/Salsa20.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_EKSBlowfish.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/__init__.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_cbc.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_ccm.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_cfb.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_ctr.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_eax.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_ecb.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_gcm.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_ocb.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_ofb.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_openpgp.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Cipher/_mode_siv.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Cipher
copying lib/Crypto/Hash/BLAKE2b.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/BLAKE2s.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/CMAC.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/HMAC.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/KMAC128.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/KMAC256.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/KangarooTwelve.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/MD2.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/MD4.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/MD5.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/Poly1305.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/RIPEMD.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/RIPEMD160.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA1.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA224.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA256.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA384.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA3_224.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA3_256.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA3_384.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA3_512.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHA512.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHAKE128.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/SHAKE256.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/TupleHash128.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/TupleHash256.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/TurboSHAKE128.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/TurboSHAKE256.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/__init__.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/cSHAKE128.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/cSHAKE256.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/Hash/keccak.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Hash
copying lib/Crypto/IO/PEM.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/IO
copying lib/Crypto/IO/PKCS8.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/IO
copying lib/Crypto/IO/_PBES.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/IO
copying lib/Crypto/PublicKey/DSA.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/ECC.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/ElGamal.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/RSA.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/__init__.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/_openssh.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/PublicKey/_point.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/PublicKey
copying lib/Crypto/Protocol/DH.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Protocol
copying lib/Crypto/Protocol/KDF.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Protocol
copying lib/Crypto/Protocol/SecretSharing.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Protocol
copying lib/Crypto/Protocol/__init__.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Protocol
copying lib/Crypto/Random/__init__.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Random
copying lib/Crypto/Random/random.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Random
copying lib/Crypto/Signature/DSS.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Signature/PKCS1_PSS.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Signature/PKCS1_v1_5.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Signature/eddsa.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Signature/pkcs1_15.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Signature/pss.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Signature
copying lib/Crypto/Util/Counter.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/Padding.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/RFC1751.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/_cpu_features.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/_file_system.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/_raw_api.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/asn1.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/number.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/py3compat.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Util/strxor.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Util
copying lib/Crypto/Math/Numbers.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
copying lib/Crypto/Math/Primality.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
copying lib/Crypto/Math/_IntegerBase.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
copying lib/Crypto/Math/_IntegerCustom.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
copying lib/Crypto/Math/_IntegerGMP.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
copying lib/Crypto/Math/_IntegerNative.pyi -> build/lib.os400-powerpc64-cpython-39/Crypto/Math
running build_ext
building 'Crypto.Hash._MD2' extension
creating build/temp.os400-powerpc64-cpython-39/src
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -O2 -g -maix64 -mtune=power7 -mcpu=power7 -maltivec -mvsx -O2 -g -maix64 -mtune=power7 -mcpu=power7 -maltivec -mvsx -fPIC -DHAVE_STDINT_H -DPYCRYPTO_BIG_ENDIAN -DSYS_BITS=64 -DLTC_NO_ASM -DHAVE_UINT128 -Isrc/ -I/QOpenSys/pkgs/include/python3.9 -c src/MD2.c -o build/temp.os400-powerpc64-cpython-39/src/MD2.o
In file included from /usr/include/sys/resource.h:57:0,
from /QOpenSys/pkgs/lib/gcc/powerpc-ibm-aix6.1.0.0/6.3.0/include-fixed-7.1/sys/wait.h:56,
from /QOpenSys/pkgs/lib/gcc/powerpc-ibm-aix6.1.0.0/6.3.0/include-fixed-7.1/stdlib.h:386,
from src/common.h:35,
from src/MD2.c:28:
/usr/include/sys/time.h:108:16: error: redefinition of 'struct sigset_t'
typedef struct sigset_t {
^~~~~~~~
In file included from /QOpenSys/pkgs/lib/gcc/powerpc-ibm-aix6.1.0.0/6.3.0/include-fixed-7.1/stdio.h:501:0,
from src/common.h:34,
from src/MD2.c:28:
/QOpenSys/pkgs/lib/gcc/powerpc-ibm-aix6.1.0.0/6.3.0/include-fixed-7.1/sys/types.h:345:16: note: originally defined here
typedef struct sigset_t {
^~~~~~~~
In file included from /usr/include/sys/resource.h:57:0,
from /QOpenSys/pkgs/lib/gcc/powerpc-ibm-aix6.1.0.0/6.3.0/include-fixed-7.1/sys/wait.h:56,
from /QOpenSys/pkgs/lib/gcc/powerpc-ibm-aix6.1.0.0/6.3.0/include-fixed-7.1/stdlib.h:386,
from src/common.h:35,
from src/MD2.c:28:
/usr/include/sys/time.h:124:3: error: conflicting types for 'sigset_t'
} sigset_t;
^~~~~~~~
In file included from /QOpenSys/pkgs/lib/gcc/powerpc-ibm-aix6.1.0.0/6.3.0/include-fixed-7.1/stdio.h:501:0,
from src/common.h:34,
from src/MD2.c:28:
/QOpenSys/pkgs/lib/gcc/powerpc-ibm-aix6.1.0.0/6.3.0/include-fixed-7.1/sys/types.h:361:3: note: previous declaration of 'sigset_t' was here
} sigset_t;
^~~~~~~~
In file included from src/MD2.c:28:0:
src/common.h:188:2: error: #error No routines for aligned memory
#error No routines for aligned memory
^~~~~
error: command '/QOpenSys/pkgs/bin/gcc' failed with exit code 1
----------------------------------------
ERROR: Failed building wheel for pycryptodome
Failed to build pycryptodome
ERROR: Could not build wheels for pycryptodome which use PEP 517 and cannot be installed directly
bash-5.2$ |
Is het zo simpel als: "Het Power platform ondersteunt dit niet" of kan ik er toch iets aan doen om dit werkend te krijgen?
Ik heb ook een vraag uitstaan bij de developper, maar die lijkt niet te reageren op zijn 'oude' project'