forked from omniti-labs/omnios-build
-
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3404 from hadfl/pyopenssl
aarch64: fix pyopenssl
- Loading branch information
Showing
1 changed file
with
64 additions
and
4 deletions.
There are no files selected for viewing
68 changes: 64 additions & 4 deletions
68
build/python311/pyopenssl/patches.aarch64/cryptography.patch
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 |
---|---|---|
@@ -1,13 +1,73 @@ | ||
diff -wpruN --no-dereference '--exclude=*.orig' a~/src/OpenSSL/crypto.py a/src/OpenSSL/crypto.py | ||
--- a~/src/OpenSSL/crypto.py 1970-01-01 00:00:00 | ||
+++ a/src/OpenSSL/crypto.py 1970-01-01 00:00:00 | ||
@@ -2840,8 +2840,7 @@ utils.deprecated( | ||
"PKCS#12 support in pyOpenSSL is deprecated. You should use the APIs " | ||
@@ -950,7 +950,6 @@ utils.deprecated( | ||
"APIs in cryptography." | ||
), | ||
DeprecationWarning, | ||
- name="X509Extension", | ||
) | ||
|
||
|
||
@@ -2397,7 +2396,6 @@ utils.deprecated( | ||
"in cryptography." | ||
), | ||
DeprecationWarning, | ||
- name="Revoked", | ||
) | ||
|
||
|
||
@@ -2642,7 +2640,6 @@ utils.deprecated( | ||
"in cryptography." | ||
), | ||
DeprecationWarning, | ||
- name="CRL", | ||
) | ||
|
||
|
||
@@ -2841,7 +2838,6 @@ utils.deprecated( | ||
"in cryptography." | ||
), | ||
- DeprecationWarning, | ||
DeprecationWarning, | ||
- name="PKCS12", | ||
+ DeprecationWarning | ||
) | ||
|
||
|
||
@@ -2940,7 +2936,6 @@ utils.deprecated( | ||
__name__, | ||
"NetscapeSPKI support in pyOpenSSL is deprecated.", | ||
DeprecationWarning, | ||
- name="NetscapeSPKI", | ||
) | ||
|
||
|
||
@@ -3193,7 +3188,6 @@ utils.deprecated( | ||
__name__, | ||
"sign() is deprecated. Use the equivilant APIs in cryptography.", | ||
DeprecationWarning, | ||
- name="sign", | ||
) | ||
|
||
|
||
@@ -3240,7 +3234,6 @@ utils.deprecated( | ||
__name__, | ||
"verify() is deprecated. Use the equivilant APIs in cryptography.", | ||
DeprecationWarning, | ||
- name="verify", | ||
) | ||
|
||
|
||
@@ -3282,7 +3275,6 @@ utils.deprecated( | ||
"in cryptography." | ||
), | ||
DeprecationWarning, | ||
- name="dump_crl", | ||
) | ||
|
||
|
||
@@ -3325,5 +3317,4 @@ utils.deprecated( | ||
"in cryptography." | ||
), | ||
DeprecationWarning, | ||
- name="load_crl", | ||
) |