Skip to content

Commit

Permalink
Merge pull request #3404 from hadfl/pyopenssl
Browse files Browse the repository at this point in the history
aarch64: fix pyopenssl
  • Loading branch information
oetiker authored Nov 30, 2023
2 parents 7cb7435 + 05a8fef commit 45fcf4a
Showing 1 changed file with 64 additions and 4 deletions.
68 changes: 64 additions & 4 deletions build/python311/pyopenssl/patches.aarch64/cryptography.patch
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",
)

0 comments on commit 45fcf4a

Please sign in to comment.