Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-typed-ast for
openSUSE:Factory checked in at 2022-04-28 23:07:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-typed-ast (Old)
and /work/SRC/openSUSE:Factory/.python-typed-ast.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-typed-ast"
Thu Apr 28 23:07:09 2022 rev:19 rq:972928 version:1.5.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-typed-ast/python-typed-ast.changes
2022-02-06 23:53:58.798941192 +0100
+++
/work/SRC/openSUSE:Factory/.python-typed-ast.new.1538/python-typed-ast.changes
2022-04-28 23:07:12.588637911 +0200
@@ -1,0 +2,23 @@
+Tue Apr 19 14:31:59 UTC 2022 - Sebastian Wagner <[email protected]>
+
+- - Release version 1.5.3 (#185)
+ - FIX: Account form stdbool.h being included in Python.h (#184)
+ As of CPython 3.11 (via https://github.com/python/cpython/pull/29883)
stdbool.h
+ is now included in Python.h so do attempt to redefine bool/true/false.
+ - Bump version to 1.5.3.dev0
+ - Release version 1.5.2
+ - Add support for building aarch64 wheels (#182)
+ Co-authored-by: Shantanu <[email protected]>
+ - Remove update process document (#177)
+ typed_ast will not be updated to support syntax past Python 3.8 as
+ Python 3.8's ast module now incorporates the features of typed_ast.
+ - Bump version to 1.5.2.dev0
+ - Release version 1.5.1 (#181)
+ Co-authored-by: hauntsaninja <>
+ - Fix #167: Port ast27 to Python 3.11 (#176)
+ Copy _PyLong_DigitValue table from Python 3.10 as "digitvalue" in
+ ast27/Python/mystrtoul.c. The symbol has been removed from the public
+ Python 3.11 C API.
+ - Bump version to 1.5.1.dev0
+
+-------------------------------------------------------------------
Old:
----
typed_ast-1.5.2.tar.gz
New:
----
typed_ast-1.5.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-typed-ast.spec ++++++
--- /var/tmp/diff_new_pack.fEfIJa/_old 2022-04-28 23:07:13.196638573 +0200
+++ /var/tmp/diff_new_pack.fEfIJa/_new 2022-04-28 23:07:13.200638578 +0200
@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-typed-ast
-Version: 1.5.2
+Version: 1.5.3
Release: 0
Summary: A fork of Python 2 and 3 ast modules with type comment support
License: Apache-2.0
++++++ typed_ast-1.5.2.tar.gz -> typed_ast-1.5.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed_ast-1.5.2/PKG-INFO new/typed_ast-1.5.3/PKG-INFO
--- old/typed_ast-1.5.2/PKG-INFO 2022-01-24 02:23:27.576296600 +0100
+++ new/typed_ast-1.5.3/PKG-INFO 2022-04-16 02:21:14.778506000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: typed_ast
-Version: 1.5.2
+Version: 1.5.3
Summary: a fork of Python 2 and 3 ast modules with type comment support
Home-page: https://github.com/python/typed_ast
Author: David Fisher
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed_ast-1.5.2/ast27/Include/asdl.h
new/typed_ast-1.5.3/ast27/Include/asdl.h
--- old/typed_ast-1.5.2/ast27/Include/asdl.h 2022-01-24 02:23:20.000000000
+0100
+++ new/typed_ast-1.5.3/ast27/Include/asdl.h 2022-04-16 02:21:05.000000000
+0200
@@ -8,8 +8,10 @@
typedef PyObject * object;
#ifndef __cplusplus
+#ifndef __bool_true_false_are_defined
typedef enum {false, true} bool;
#endif
+#endif
/* It would be nice if the code generated by asdl_c.py was completely
independent of Python, but it is a goal the requires too much work
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed_ast-1.5.2/ast3/Python/ast.c
new/typed_ast-1.5.3/ast3/Python/ast.c
--- old/typed_ast-1.5.2/ast3/Python/ast.c 2022-01-24 02:23:20.000000000
+0100
+++ new/typed_ast-1.5.3/ast3/Python/ast.c 2022-04-16 02:21:05.000000000
+0200
@@ -13,9 +13,12 @@
#include <assert.h>
// VS 2010 doesn't have <stdbool.h>...
+#ifndef __bool_true_false_are_defined
typedef int bool;
#define false 0
#define true 1
+#endif
+
#if PY_MINOR_VERSION < 6
static PyObject *
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed_ast-1.5.2/typed_ast/__init__.py
new/typed_ast-1.5.3/typed_ast/__init__.py
--- old/typed_ast-1.5.2/typed_ast/__init__.py 2022-01-24 02:23:20.000000000
+0100
+++ new/typed_ast-1.5.3/typed_ast/__init__.py 2022-04-16 02:21:05.000000000
+0200
@@ -1 +1 @@
-__version__ = "1.5.2"
+__version__ = "1.5.3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed_ast-1.5.2/typed_ast.egg-info/PKG-INFO
new/typed_ast-1.5.3/typed_ast.egg-info/PKG-INFO
--- old/typed_ast-1.5.2/typed_ast.egg-info/PKG-INFO 2022-01-24
02:23:27.000000000 +0100
+++ new/typed_ast-1.5.3/typed_ast.egg-info/PKG-INFO 2022-04-16
02:21:14.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: typed-ast
-Version: 1.5.2
+Version: 1.5.3
Summary: a fork of Python 2 and 3 ast modules with type comment support
Home-page: https://github.com/python/typed_ast
Author: David Fisher