Hello community,

here is the log from the commit of package python-pyasn1-modules for 
openSUSE:Factory checked in at 2016-01-01 19:47:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pyasn1-modules (Old)
 and      /work/SRC/openSUSE:Factory/.python-pyasn1-modules.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pyasn1-modules"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-pyasn1-modules/python-pyasn1-modules.changes  
    2015-08-14 14:46:47.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-pyasn1-modules.new/python-pyasn1-modules.changes
 2016-01-01 19:47:15.000000000 +0100
@@ -1,0 +2,9 @@
+Tue Dec 29 17:10:09 UTC 2015 - [email protected]
+
+- Update to upstream release 0.0.8
+  - Wheel distribution format now supported
+  - Fix to misspelled rfc2459.id_at_sutname variable
+  - Fix to misspelled rfc2459.NameConstraints component tag ID
+  - Fix to misspelled rfc2459.GeneralSubtree component default status
+
+-------------------------------------------------------------------

Old:
----
  pyasn1-modules-0.0.7.tar.gz

New:
----
  pyasn1-modules-0.0.8.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-pyasn1-modules.spec ++++++
--- /var/tmp/diff_new_pack.PcCoqY/_old  2016-01-01 19:47:16.000000000 +0100
+++ /var/tmp/diff_new_pack.PcCoqY/_new  2016-01-01 19:47:16.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           python-pyasn1-modules
-Version:        0.0.7
+Version:        0.0.8
 Release:        0
 Url:            http://pyasn1.sf.net/
 Summary:        Collection of protocols modules written in ASN.1 language

++++++ pyasn1-modules-0.0.7.tar.gz -> pyasn1-modules-0.0.8.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyasn1-modules-0.0.7/CHANGES.txt 
new/pyasn1-modules-0.0.8/CHANGES.txt
--- old/pyasn1-modules-0.0.7/CHANGES.txt        2015-08-01 09:34:10.000000000 
+0200
+++ new/pyasn1-modules-0.0.8/CHANGES.txt        2015-09-28 12:34:11.000000000 
+0200
@@ -1,5 +1,13 @@
-Revision 0.0.7
---------------
+Revision 0.0.8, released 28-09-2015
+-----------------------------------
+
+- Wheel distribution format now supported
+- Fix to misspelled rfc2459.id_at_sutname variable
+- Fix to misspelled rfc2459.NameConstraints component tag ID
+- Fix to misspelled rfc2459.GeneralSubtree component default status
+
+Revision 0.0.7, released 01-08-2015
+-----------------------------------
 
 - Extensions added to text files, CVS attic flushed.
 - Fix to rfc2459.BasicConstraints syntax.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyasn1-modules-0.0.7/PKG-INFO 
new/pyasn1-modules-0.0.8/PKG-INFO
--- old/pyasn1-modules-0.0.7/PKG-INFO   2015-08-01 10:47:40.000000000 +0200
+++ new/pyasn1-modules-0.0.8/PKG-INFO   2015-09-28 14:34:05.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: pyasn1-modules
-Version: 0.0.7
+Version: 0.0.8
 Summary: A collection of ASN.1-based protocols modules.
 Home-page: http://sourceforge.net/projects/pyasn1/
 Author: Ilya Etingof <[email protected]>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyasn1-modules-0.0.7/pyasn1_modules/__init__.py 
new/pyasn1-modules-0.0.8/pyasn1_modules/__init__.py
--- old/pyasn1-modules-0.0.7/pyasn1_modules/__init__.py 2015-07-05 
15:03:23.000000000 +0200
+++ new/pyasn1-modules-0.0.8/pyasn1_modules/__init__.py 2015-08-01 
10:52:41.000000000 +0200
@@ -1,2 +1,2 @@
 # http://www.python.org/dev/peps/pep-0396/
-__version__ = '0.0.7'
+__version__ = '0.0.8'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyasn1-modules-0.0.7/pyasn1_modules/rfc2459.py 
new/pyasn1-modules-0.0.8/pyasn1_modules/rfc2459.py
--- old/pyasn1-modules-0.0.7/pyasn1_modules/rfc2459.py  2015-08-01 
09:33:26.000000000 +0200
+++ new/pyasn1-modules-0.0.8/pyasn1_modules/rfc2459.py  2015-08-17 
23:40:32.000000000 +0200
@@ -87,7 +87,8 @@
 
 id_at = univ.ObjectIdentifier('2.5.4')
 id_at_name = univ.ObjectIdentifier('2.5.4.41')
-id_at_sutname = univ.ObjectIdentifier('2.5.4.4')
+# preserve misspelled variable for compatibility
+id_at_sutname = id_at_surname = univ.ObjectIdentifier('2.5.4.4')
 id_at_givenName = univ.ObjectIdentifier('2.5.4.42')
 id_at_initials = univ.ObjectIdentifier('2.5.4.43')
 id_at_generationQualifier = univ.ObjectIdentifier('2.5.4.44')
@@ -777,7 +778,7 @@
 class GeneralSubtree(univ.Sequence):
     componentType = namedtype.NamedTypes(
         namedtype.NamedType('base', GeneralName()),
-        namedtype.NamedType('minimum', 
BaseDistance(0).subtype(implicitTag=tag.Tag(tag.tagClassContext, 
tag.tagFormatConstructed, 0))),
+        namedtype.DefaultedNamedType('minimum', 
BaseDistance(0).subtype(implicitTag=tag.Tag(tag.tagClassContext, 
tag.tagFormatConstructed, 0))),
         namedtype.OptionalNamedType('maximum', 
BaseDistance().subtype(implicitTag=tag.Tag(tag.tagClassContext, 
tag.tagFormatConstructed, 1)))
     )
 
@@ -790,7 +791,7 @@
 class NameConstraints(univ.Sequence):
     componentType = namedtype.NamedTypes(
         namedtype.OptionalNamedType('permittedSubtrees', 
GeneralSubtrees().subtype(implicitTag=tag.Tag(tag.tagClassContext, 
tag.tagFormatConstructed, 0))),
-        namedtype.OptionalNamedType('excludedSubtrees', 
GeneralSubtrees().subtype(implicitTag=tag.Tag(tag.tagClassContext, 
tag.tagFormatConstructed, 0)))
+        namedtype.OptionalNamedType('excludedSubtrees', 
GeneralSubtrees().subtype(implicitTag=tag.Tag(tag.tagClassContext, 
tag.tagFormatConstructed, 1)))
     )
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyasn1-modules-0.0.7/pyasn1_modules.egg-info/PKG-INFO 
new/pyasn1-modules-0.0.8/pyasn1_modules.egg-info/PKG-INFO
--- old/pyasn1-modules-0.0.7/pyasn1_modules.egg-info/PKG-INFO   2015-08-01 
10:47:39.000000000 +0200
+++ new/pyasn1-modules-0.0.8/pyasn1_modules.egg-info/PKG-INFO   2015-09-28 
14:34:05.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: pyasn1-modules
-Version: 0.0.7
+Version: 0.0.8
 Summary: A collection of ASN.1-based protocols modules.
 Home-page: http://sourceforge.net/projects/pyasn1/
 Author: Ilya Etingof <[email protected]>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyasn1-modules-0.0.7/pyasn1_modules.egg-info/SOURCES.txt 
new/pyasn1-modules-0.0.8/pyasn1_modules.egg-info/SOURCES.txt
--- old/pyasn1-modules-0.0.7/pyasn1_modules.egg-info/SOURCES.txt        
2015-08-01 10:47:39.000000000 +0200
+++ new/pyasn1-modules-0.0.8/pyasn1_modules.egg-info/SOURCES.txt        
2015-09-28 14:34:05.000000000 +0200
@@ -2,6 +2,8 @@
 LICENSE.txt
 MANIFEST.in
 README.txt
+requirements.txt
+setup.cfg
 setup.py
 pyasn1_modules/__init__.py
 pyasn1_modules/pem.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyasn1-modules-0.0.7/requirements.txt 
new/pyasn1-modules-0.0.8/requirements.txt
--- old/pyasn1-modules-0.0.7/requirements.txt   1970-01-01 01:00:00.000000000 
+0100
+++ new/pyasn1-modules-0.0.8/requirements.txt   2015-09-28 12:30:32.000000000 
+0200
@@ -0,0 +1 @@
+pyasn1>=0.1.8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyasn1-modules-0.0.7/setup.cfg 
new/pyasn1-modules-0.0.8/setup.cfg
--- old/pyasn1-modules-0.0.7/setup.cfg  2015-08-01 10:47:40.000000000 +0200
+++ new/pyasn1-modules-0.0.8/setup.cfg  2015-09-28 14:34:05.000000000 +0200
@@ -1,5 +1,8 @@
+[bdist_wheel]
+universal = 1
+
 [egg_info]
-tag_build = 
 tag_date = 0
+tag_build = 
 tag_svn_revision = 0
 


Reply via email to