-
Notifications
You must be signed in to change notification settings - Fork 721
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python3-m2crypto: upgrade 0.37.1 -> 0.38.0
0.38.0 - 2021-06-14 ------------------- - Remove the last use of setup.py test idiom. - Use m2_PyObject_AsReadBuffer instead of PyObject_AsReadBuffer. - Add support for arm64 big endian <Steev Klimaszewski> - Make support of RSA_SSLV23_PADDING optional (it has been deprecated). - Move project to src/ layout - Allow verify_cb_* to be called with ok=True <Casey Deccio> - Be prepared if any of constants in x509_vfy.h is not available. - But we do support 3.8 - We DO NOT support Python 2.6. Refresh the following patch: cross-compile-platform.patch 0001-Allow-verify_cb_-to-be-called-with-ok-True.patch 0001-Use-of-RSA_SSLV23_PADDING-has-been-deprecated.patch Removed since these are included in 0.38.0 Signed-off-by: Zang Ruochen <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
- Loading branch information
1 parent
f7f1c9f
commit eb70309
Showing
4 changed files
with
4 additions
and
80 deletions.
There are no files selected for viewing
47 changes: 0 additions & 47 deletions
47
...es-devtools/python/python3-m2crypto/0001-Allow-verify_cb_-to-be-called-with-ok-True.patch
This file was deleted.
Oops, something went wrong.
29 changes: 0 additions & 29 deletions
29
...devtools/python/python3-m2crypto/0001-Use-of-RSA_SSLV23_PADDING-has-been-deprecated.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ Signed-off-by: Khem Raj <[email protected]> | |
|
||
--- a/setup.py | ||
+++ b/setup.py | ||
@@ -169,22 +169,6 @@ class _M2CryptoBuildExt(build_ext.build_ | ||
@@ -169,24 +169,6 @@ class _M2CryptoBuildExt(build_ext.build_ | ||
log.debug('self.include_dirs = %s', self.include_dirs) | ||
log.debug('self.library_dirs = %s', self.library_dirs) | ||
|
||
|
@@ -25,6 +25,8 @@ Signed-off-by: Khem Raj <[email protected]> | |
- self.swig_opts.append('-D%s' % arch) | ||
- if mach in ('ppc64le', 'ppc64el'): | ||
- self.swig_opts.append('-D_CALL_ELF=2') | ||
- if mach in ('arm64_be'): | ||
- self.swig_opts.append('-D__AARCH64EB__') | ||
- | ||
self.swig_opts.extend(['-I%s' % i for i in self.include_dirs]) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters