security/py-securesystemslib: Update version 0.23.0=>0.25.0
Relnotes: https://github.com/secure-systems-lab/securesystemslib/releases/tag/v0.25.0
This commit is contained in:
parent
769c0d2976
commit
132aedc092
3 changed files with 5 additions and 46 deletions
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= securesystemslib
|
||||
PORTVERSION= 0.23.0
|
||||
PORTVERSION= 0.25.0
|
||||
CATEGORIES= security python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
@ -11,8 +11,7 @@ WWW= https://github.com/secure-systems-lab/securesystemslib
|
|||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}colorama>=0.3.9:devel/py-colorama@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}cryptography>=3.3.2:security/py-cryptography@${PY_FLAVOR} \
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=3.3.2:security/py-cryptography@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pynacl>1.2.0:security/py-pynacl@${PY_FLAVOR}
|
||||
TEST_DEPENDS= ${LOCALBASE}/bin/gpg:security/gnupg
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1651931169
|
||||
SHA256 (securesystemslib-0.23.0.tar.gz) = 573e9c810f2a6afe9ac71a177f26b9d6a321c53574f561f5cef2ed511c3f1831
|
||||
SIZE (securesystemslib-0.23.0.tar.gz) = 174862
|
||||
TIMESTAMP = 1667649773
|
||||
SHA256 (securesystemslib-0.25.0.tar.gz) = 10d5a066e70cb87704c9bf2cef1ef6d8a06fab5ef7602dd59c26d06251317a11
|
||||
SIZE (securesystemslib-0.25.0.tar.gz) = 178770
|
||||
|
|
|
@ -1,40 +0,0 @@
|
|||
https://github.com/secure-systems-lab/securesystemslib/pull/403
|
||||
|
||||
--- tests/test_process.py.orig 2022-02-10 09:48:17 UTC
|
||||
+++ tests/test_process.py
|
||||
@@ -39,7 +39,7 @@ class Test_Process(unittest.TestCase):
|
||||
|
||||
stdin_file = open(path)
|
||||
cmd = \
|
||||
- "python -c \"import sys; assert(sys.stdin.read() == '{}')\""
|
||||
+ sys.executable + " -c \"import sys; assert(sys.stdin.read() == '{}')\""
|
||||
|
||||
# input is used in favor of stdin
|
||||
securesystemslib.process.run(cmd.format("use input kwarg"),
|
||||
@@ -58,7 +58,7 @@ class Test_Process(unittest.TestCase):
|
||||
def test_run_duplicate_streams(self):
|
||||
"""Test output as streams and as returned. """
|
||||
# Command that prints 'foo' to stdout and 'bar' to stderr.
|
||||
- cmd = ("python -c \""
|
||||
+ cmd = (sys.executable + " -c \""
|
||||
"import sys;"
|
||||
"sys.stdout.write('foo');"
|
||||
"sys.stderr.write('bar');\"")
|
||||
@@ -102,7 +102,7 @@ class Test_Process(unittest.TestCase):
|
||||
|
||||
def test_run_cmd_arg_return_code(self):
|
||||
"""Test command arg as string and list using return code. """
|
||||
- cmd_str = ("python -c \""
|
||||
+ cmd_str = (sys.executable + " -c \""
|
||||
"import sys;"
|
||||
"sys.exit(100)\"")
|
||||
cmd_list = shlex.split(cmd_str)
|
||||
@@ -118,7 +118,7 @@ class Test_Process(unittest.TestCase):
|
||||
def test_run_duplicate_streams_timeout(self):
|
||||
"""Test raise TimeoutExpired. """
|
||||
with self.assertRaises(securesystemslib.process.subprocess.TimeoutExpired):
|
||||
- securesystemslib.process.run_duplicate_streams("python --version",
|
||||
+ securesystemslib.process.run_duplicate_streams(sys.executable + " --version",
|
||||
timeout=-1)
|
||||
|
||||
|
Loading…
Reference in a new issue