pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/py-asn1-modules py-asn1-modules: updated to 0...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9e16b1cc540f
branches:  trunk
changeset: 322579:9e16b1cc540f
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Apr 25 05:08:50 2019 +0000

description:
py-asn1-modules: updated to 0.2.5

Revision 0.2.5:
- Added module RFC5958 providing Asymmetric Key Packages,
  which is essentially version 2 of the PrivateKeyInfo
  structure in PKCS#8 in RFC 5208
- Added module RFC8410 providing algorithm Identifiers for
  Ed25519, Ed448, X25519, and X448
- Added module RFC8418 providing Elliptic Curve Diffie-Hellman
  (ECDH) Key Agreement Algorithm with X25519 and X448
- Added module RFC3565 providing Elliptic Curve Diffie-Hellman
  Key Agreement Algorithm use with X25519 and X448 in the
  Cryptographic Message Syntax (CMS)
- Added module RFC4108 providing CMS Firmware Wrapper
- Added module RFC3779 providing X.509 Extensions for IP
  Addresses and AS Identifiers
- Added module RFC4055 providing additional Algorithms and
  Identifiers for RSA Cryptography for use in Certificates
  and CRLs

diffstat:

 security/py-asn1-modules/Makefile |   4 ++--
 security/py-asn1-modules/PLIST    |  23 ++++++++++++++++++++++-
 security/py-asn1-modules/distinfo |  10 +++++-----
 3 files changed, 29 insertions(+), 8 deletions(-)

diffs (78 lines):

diff -r be8db8040212 -r 9e16b1cc540f security/py-asn1-modules/Makefile
--- a/security/py-asn1-modules/Makefile Thu Apr 25 05:06:20 2019 +0000
+++ b/security/py-asn1-modules/Makefile Thu Apr 25 05:08:50 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2019/01/28 09:14:22 adam Exp $
+# $NetBSD: Makefile,v 1.9 2019/04/25 05:08:50 adam Exp $
 
-DISTNAME=      pyasn1-modules-0.2.4
+DISTNAME=      pyasn1-modules-0.2.5
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/^py//}
 CATEGORIES=    security python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pyasn1-modules/}
diff -r be8db8040212 -r 9e16b1cc540f security/py-asn1-modules/PLIST
--- a/security/py-asn1-modules/PLIST    Thu Apr 25 05:06:20 2019 +0000
+++ b/security/py-asn1-modules/PLIST    Thu Apr 25 05:08:50 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2019/01/28 09:14:22 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2019/04/25 05:08:50 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -68,9 +68,21 @@
 ${PYSITELIB}/pyasn1_modules/rfc3447.py
 ${PYSITELIB}/pyasn1_modules/rfc3447.pyc
 ${PYSITELIB}/pyasn1_modules/rfc3447.pyo
+${PYSITELIB}/pyasn1_modules/rfc3565.py
+${PYSITELIB}/pyasn1_modules/rfc3565.pyc
+${PYSITELIB}/pyasn1_modules/rfc3565.pyo
+${PYSITELIB}/pyasn1_modules/rfc3779.py
+${PYSITELIB}/pyasn1_modules/rfc3779.pyc
+${PYSITELIB}/pyasn1_modules/rfc3779.pyo
 ${PYSITELIB}/pyasn1_modules/rfc3852.py
 ${PYSITELIB}/pyasn1_modules/rfc3852.pyc
 ${PYSITELIB}/pyasn1_modules/rfc3852.pyo
+${PYSITELIB}/pyasn1_modules/rfc4055.py
+${PYSITELIB}/pyasn1_modules/rfc4055.pyc
+${PYSITELIB}/pyasn1_modules/rfc4055.pyo
+${PYSITELIB}/pyasn1_modules/rfc4108.py
+${PYSITELIB}/pyasn1_modules/rfc4108.pyc
+${PYSITELIB}/pyasn1_modules/rfc4108.pyo
 ${PYSITELIB}/pyasn1_modules/rfc4210.py
 ${PYSITELIB}/pyasn1_modules/rfc4210.pyc
 ${PYSITELIB}/pyasn1_modules/rfc4210.pyo
@@ -92,6 +104,9 @@
 ${PYSITELIB}/pyasn1_modules/rfc5652.py
 ${PYSITELIB}/pyasn1_modules/rfc5652.pyc
 ${PYSITELIB}/pyasn1_modules/rfc5652.pyo
+${PYSITELIB}/pyasn1_modules/rfc5958.py
+${PYSITELIB}/pyasn1_modules/rfc5958.pyc
+${PYSITELIB}/pyasn1_modules/rfc5958.pyo
 ${PYSITELIB}/pyasn1_modules/rfc6402.py
 ${PYSITELIB}/pyasn1_modules/rfc6402.pyc
 ${PYSITELIB}/pyasn1_modules/rfc6402.pyo
@@ -101,3 +116,9 @@
 ${PYSITELIB}/pyasn1_modules/rfc8226.py
 ${PYSITELIB}/pyasn1_modules/rfc8226.pyc
 ${PYSITELIB}/pyasn1_modules/rfc8226.pyo
+${PYSITELIB}/pyasn1_modules/rfc8410.py
+${PYSITELIB}/pyasn1_modules/rfc8410.pyc
+${PYSITELIB}/pyasn1_modules/rfc8410.pyo
+${PYSITELIB}/pyasn1_modules/rfc8418.py
+${PYSITELIB}/pyasn1_modules/rfc8418.pyc
+${PYSITELIB}/pyasn1_modules/rfc8418.pyo
diff -r be8db8040212 -r 9e16b1cc540f security/py-asn1-modules/distinfo
--- a/security/py-asn1-modules/distinfo Thu Apr 25 05:06:20 2019 +0000
+++ b/security/py-asn1-modules/distinfo Thu Apr 25 05:08:50 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.8 2019/01/28 09:14:22 adam Exp $
+$NetBSD: distinfo,v 1.9 2019/04/25 05:08:50 adam Exp $
 
-SHA1 (pyasn1-modules-0.2.4.tar.gz) = 1db76d27cde9cb0fad7201c5a55240244839e60e
-RMD160 (pyasn1-modules-0.2.4.tar.gz) = 71be4e72bd6ae6d488a93c2d8478ec797baebf3f
-SHA512 (pyasn1-modules-0.2.4.tar.gz) = c9e16475629b9c62880ecc67317ed734953a8719089fec89b14ab81e7ef4504bc534aa777b1c25dead7867c483177423ee4a218c14470994017e30704e1cc1dc
-Size (pyasn1-modules-0.2.4.tar.gz) = 70505 bytes
+SHA1 (pyasn1-modules-0.2.5.tar.gz) = 0f505943e715101642e51d016baaeebbde9604b3
+RMD160 (pyasn1-modules-0.2.5.tar.gz) = 40894b951c253668e633350921062c98acd56b40
+SHA512 (pyasn1-modules-0.2.5.tar.gz) = 16b49e95b570e1e4c4185cfe596bc4614930030101ddb02080067ca1d94aa388a7932f807fe7b76eaad50ef135f6a0cdbe2a0b355fd7778364eb9d8df7610434
+Size (pyasn1-modules-0.2.5.tar.gz) = 78918 bytes



Home | Main Index | Thread Index | Old Index