user/py3-python3-saml: new aport #340
3 changed files with 156 additions and 5 deletions
30
user/py3-python3-saml/APKBUILD
Normal file
30
user/py3-python3-saml/APKBUILD
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# Contributor: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||||
|
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||||
|
pkgname=py3-python3-saml
|
||||||
|
_pkgreal=python3-saml
|
||||||
|
pkgver=1.16.0
|
||||||
|
pkgrel=0
|
||||||
|
pkgdesc="Saml Python Toolkit. Add SAML support to your Python software using this library"
|
||||||
|
url="http://packages.python.org/pypi/python3-saml"
|
||||||
|
arch="noarch"
|
||||||
|
license="MIT"
|
||||||
|
depends="py3-xmlsec py3-isodate py3-lxml"
|
||||||
|
makedepends="py3-setuptools py3-gpep517 py3-wheel poetry"
|
||||||
|
source="$pkgname-$pkgver.tar.gz::https://pypi.io/packages/source/p/python3-saml/python3-saml-$pkgver.tar.gz"
|
||||||
|
builddir="$srcdir/$_pkgreal-$pkgver"
|
||||||
|
subpackages="$pkgname-pyc"
|
||||||
|
|
||||||
|
build() {
|
||||||
|
gpep517 build-wheel \
|
||||||
|
--wheel-dir .dist \
|
||||||
|
--output-fd 3 3>&1 >&2
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
python3 -m installer -d "$pkgdir" \
|
||||||
|
.dist/*.whl
|
||||||
|
}
|
||||||
|
|
||||||
|
sha512sums="
|
||||||
|
715c96f701be3de9002a37198d01715519f11173d37d2870b8d6f20e007440368f76340abfa17ad8556560296a8dfaa999f1774ccb5dd3d9b04b125afc06ac31 py3-python3-saml-1.16.0.tar.gz
|
||||||
|
"
|
105
user/py3-xmlsec/264_xmlsec3-support.patch
Normal file
105
user/py3-xmlsec/264_xmlsec3-support.patch
Normal file
|
@ -0,0 +1,105 @@
|
||||||
|
From 5f57f2eac756df213e83a2fdb452057909e2dd21 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Adamec <david.adamec@airship.com>
|
||||||
|
Date: Fri, 15 Sep 2023 17:49:15 -0700
|
||||||
|
Subject: [PATCH 1/3] Add compatibility for xmlsec 1.3
|
||||||
|
|
||||||
|
---
|
||||||
|
doc/source/modules/constants.rst | 6 ------
|
||||||
|
src/constants.c | 2 --
|
||||||
|
src/enc.c | 7 +++++++
|
||||||
|
src/xmlsec/constants.pyi | 2 --
|
||||||
|
4 files changed, 7 insertions(+), 10 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/constants.c b/src/constants.c
|
||||||
|
index 34c81b2..72ae217 100644
|
||||||
|
--- a/src/constants.c
|
||||||
|
+++ b/src/constants.c
|
||||||
|
@@ -316,8 +316,6 @@ int PyXmlSec_ConstantsModule_Init(PyObject* package) {
|
||||||
|
PYXMLSEC_ADD_NS_CONSTANT(XPathNs, "XPATH");
|
||||||
|
PYXMLSEC_ADD_NS_CONSTANT(XPath2Ns, "XPATH2");
|
||||||
|
PYXMLSEC_ADD_NS_CONSTANT(XPointerNs, "XPOINTER");
|
||||||
|
- PYXMLSEC_ADD_NS_CONSTANT(Soap11Ns, "SOAP11");
|
||||||
|
- PYXMLSEC_ADD_NS_CONSTANT(Soap12Ns, "SOAP12");
|
||||||
|
PYXMLSEC_ADD_NS_CONSTANT(NsExcC14N, "EXC_C14N");
|
||||||
|
PYXMLSEC_ADD_NS_CONSTANT(NsExcC14NWithComments, "EXC_C14N_WITH_COMMENT");
|
||||||
|
|
||||||
|
diff --git a/src/enc.c b/src/enc.c
|
||||||
|
index aaf35ae..475cd2d 100644
|
||||||
|
--- a/src/enc.c
|
||||||
|
+++ b/src/enc.c
|
||||||
|
@@ -50,6 +50,13 @@ static int PyXmlSec_EncryptionContext__init__(PyObject* self, PyObject* args, Py
|
||||||
|
}
|
||||||
|
ctx->manager = manager;
|
||||||
|
PYXMLSEC_DEBUGF("%p: init enc context - ok, manager - %p", self, manager);
|
||||||
|
+
|
||||||
|
+ // xmlsec 1.3 changed the key search to strict mode, causing various examples
|
||||||
|
+ // in the docs to fail. For backwards compatibility, this changes it back to
|
||||||
|
+ // lax mode for now.
|
||||||
|
+ ctx->handle->keyInfoReadCtx.flags = XMLSEC_KEYINFO_FLAGS_LAX_KEY_SEARCH;
|
||||||
|
+ ctx->handle->keyInfoWriteCtx.flags = XMLSEC_KEYINFO_FLAGS_LAX_KEY_SEARCH;
|
||||||
|
+
|
||||||
|
return 0;
|
||||||
|
ON_FAIL:
|
||||||
|
PYXMLSEC_DEBUGF("%p: init enc context - failed", self);
|
||||||
|
diff --git a/src/xmlsec/constants.pyi b/src/xmlsec/constants.pyi
|
||||||
|
index 3430a02..9fd24e5 100644
|
||||||
|
--- a/src/xmlsec/constants.pyi
|
||||||
|
+++ b/src/xmlsec/constants.pyi
|
||||||
|
@@ -85,8 +85,6 @@ NodeX509Data: Final[str]
|
||||||
|
Ns: Final[str]
|
||||||
|
NsExcC14N: Final[str]
|
||||||
|
NsExcC14NWithComments: Final[str]
|
||||||
|
-Soap11Ns: Final[str]
|
||||||
|
-Soap12Ns: Final[str]
|
||||||
|
TransformAes128Cbc: Final[__Transform]
|
||||||
|
TransformAes128Gcm: Final[__Transform]
|
||||||
|
TransformAes192Cbc: Final[__Transform]
|
||||||
|
|
||||||
|
From 0e7c5e718e8d221331b0a5f851094a5b4181eeae Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Adamec <david.adamec@airship.com>
|
||||||
|
Date: Fri, 15 Sep 2023 18:07:07 -0700
|
||||||
|
Subject: [PATCH 2/3] fix 1.2 compatibility
|
||||||
|
|
||||||
|
---
|
||||||
|
src/enc.c | 5 +++++
|
||||||
|
1 file changed, 5 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/enc.c b/src/enc.c
|
||||||
|
index 475cd2d..5453ef9 100644
|
||||||
|
--- a/src/enc.c
|
||||||
|
+++ b/src/enc.c
|
||||||
|
@@ -17,6 +17,11 @@
|
||||||
|
#include <xmlsec/xmlenc.h>
|
||||||
|
#include <xmlsec/xmltree.h>
|
||||||
|
|
||||||
|
+// Backwards compatibility with xmlsec 1.2
|
||||||
|
+#ifndef XMLSEC_KEYINFO_FLAGS_LAX_KEY_SEARCH
|
||||||
|
+#define XMLSEC_KEYINFO_FLAGS_LAX_KEY_SEARCH 0x00008000
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
typedef struct {
|
||||||
|
PyObject_HEAD
|
||||||
|
xmlSecEncCtxPtr handle;
|
||||||
|
|
||||||
|
From 40c14c45a352f2812e796a071ef7d12f5a70be58 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Adamec <david.adamec@airship.com>
|
||||||
|
Date: Fri, 15 Sep 2023 19:40:04 -0700
|
||||||
|
Subject: [PATCH 3/3] update isort to fix poetry error in pre-commit
|
||||||
|
|
||||||
|
---
|
||||||
|
.pre-commit-config.yaml | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
|
||||||
|
index 0545b12..bf877f3 100644
|
||||||
|
--- a/.pre-commit-config.yaml
|
||||||
|
+++ b/.pre-commit-config.yaml
|
||||||
|
@@ -31,7 +31,7 @@ repos:
|
||||||
|
exclude: ^setup.py$
|
||||||
|
additional_dependencies: [flake8-docstrings, flake8-bugbear, flake8-logging-format, flake8-builtins, flake8-eradicate, flake8-fixme, pep8-naming, flake8-pep3101, flake8-annotations-complexity,flake8-pyi]
|
||||||
|
- repo: https://github.com/PyCQA/isort
|
||||||
|
- rev: 5.10.1
|
||||||
|
+ rev: 5.12.0
|
||||||
|
hooks:
|
||||||
|
- id: isort
|
||||||
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
@ -4,23 +4,38 @@
|
||||||
_pyname=xmlsec
|
_pyname=xmlsec
|
||||||
pkgname="py3-$_pyname"
|
pkgname="py3-$_pyname"
|
||||||
pkgver=1.3.13
|
pkgver=1.3.13
|
||||||
pkgrel=3
|
pkgrel=4
|
||||||
# does not support libxml2 1.3.0
|
|
||||||
arch="all"
|
arch="all"
|
||||||
pkgdesc="Python bindings for the XML Security Library"
|
pkgdesc="Python bindings for the XML Security Library"
|
||||||
url="https://pypi.python.org/project/$_pyname"
|
url="https://pypi.python.org/project/$_pyname"
|
||||||
license="MIT"
|
license="MIT"
|
||||||
depends="py3-lxml xmlsec<1.3"
|
depends="
|
||||||
makedepends="py3-setuptools libxml2-dev xmlsec-dev<1.3 py3-wheel py3-pip python3-dev"
|
py3-lxml
|
||||||
|
xmlsec
|
||||||
|
"
|
||||||
|
makedepends="
|
||||||
|
py3-gpep517
|
||||||
|
py3-setuptools
|
||||||
|
py3-setuptools_scm
|
||||||
|
py3-pkgconfig
|
||||||
|
py3-wheel
|
||||||
|
python3-dev
|
||||||
|
libxml2-dev
|
||||||
|
xmlsec-dev
|
||||||
|
"
|
||||||
checkdepends="py3-pytest"
|
checkdepends="py3-pytest"
|
||||||
source="
|
source="
|
||||||
$pkgname-$pkgver.tar.gz::https://pypi.io/packages/source/${_pyname:0:1}/$_pyname/$_pyname-$pkgver.tar.gz
|
$pkgname-$pkgver.tar.gz::https://pypi.io/packages/source/${_pyname:0:1}/$_pyname/$_pyname-$pkgver.tar.gz
|
||||||
253_pkcs11-support.patch
|
253_pkcs11-support.patch
|
||||||
|
264_xmlsec3-support.patch
|
||||||
"
|
"
|
||||||
builddir="$srcdir"/$_pyname-$pkgver
|
builddir="$srcdir"/$_pyname-$pkgver
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
python3 setup.py build
|
gpep517 build-wheel \
|
||||||
|
--wheel-dir dist \
|
||||||
|
--output-fd 3 3>&1 >&2
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
check() {
|
check() {
|
||||||
|
@ -36,4 +51,5 @@ package() {
|
||||||
sha512sums="
|
sha512sums="
|
||||||
2aa080fbc918d5d360dcb086a8c529545514dd429649d99833425f92fa06a3a094cf3139f8ed00827fed358f0fa463b74c267e593ac14e5aadc299d64206ac8e py3-xmlsec-1.3.13.tar.gz
|
2aa080fbc918d5d360dcb086a8c529545514dd429649d99833425f92fa06a3a094cf3139f8ed00827fed358f0fa463b74c267e593ac14e5aadc299d64206ac8e py3-xmlsec-1.3.13.tar.gz
|
||||||
9155a2435d832b4dcd0260616f52eec148dca1dade76a89c23e10f017e4140024ef042b6b10c5b9435fcbf52e7dc4f7e5764dc7f5bdd7595c27b3106fab942cf 253_pkcs11-support.patch
|
9155a2435d832b4dcd0260616f52eec148dca1dade76a89c23e10f017e4140024ef042b6b10c5b9435fcbf52e7dc4f7e5764dc7f5bdd7595c27b3106fab942cf 253_pkcs11-support.patch
|
||||||
|
d901c09a49145250dd9325476c1356f820519b9248195240584f6de62b8084205f698501a1f48e42b63fe4c7b169dcb65540edc03724ef7e9297b45216c5b481 264_xmlsec3-support.patch
|
||||||
"
|
"
|
||||||
|
|
Loading…
Reference in a new issue