commit python-uncompyle6 for openSUSE:Factory

2020-07-26 Thread root
Hello community,

here is the log from the commit of package python-uncompyle6 for 
openSUSE:Factory checked in at 2020-07-26 16:18:30

Comparing /work/SRC/openSUSE:Factory/python-uncompyle6 (Old)
 and  /work/SRC/openSUSE:Factory/.python-uncompyle6.new.3592 (New)


Package is "python-uncompyle6"

Sun Jul 26 16:18:30 2020 rev:9 rq:822409 version:3.7.2

Changes:

--- /work/SRC/openSUSE:Factory/python-uncompyle6/python-uncompyle6.changes  
2020-06-14 18:24:12.112397790 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-uncompyle6.new.3592/python-uncompyle6.changes
2020-07-26 16:19:34.536821284 +0200
@@ -1,0 +2,11 @@
+Thu Jul 23 11:45:46 UTC 2020 - Marketa Calabkova 
+
+- update to 3.7.2
+  * Use newer xdis
+  * Docstrings (again) which were broken again on earlier Python
+  * Fix 2.6 and 2.7 decompilation bug in handling "list if" comprehensions
+  * Handle 3.7+ "else" branch removal adAs seen in `_cmp()` of 
`python3.8/distutils/version.py` with optimization `-O2`
+  * 3.6+ "with" and "with .. as" grammar improvements
+  * ast-check for "for" loop was missing some grammar rules
+
+---

Old:

  uncompyle6-3.7.0.tar.gz

New:

  uncompyle6-3.7.2.tar.gz



Other differences:
--
++ python-uncompyle6.spec ++
--- /var/tmp/diff_new_pack.6NZrjD/_old  2020-07-26 16:19:37.356823921 +0200
+++ /var/tmp/diff_new_pack.6NZrjD/_new  2020-07-26 16:19:37.356823921 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-uncompyle6
-Version:3.7.0
+Version:3.7.2
 Release:0
 Summary:Python cross-version byte-code decompiler
 License:GPL-3.0-only

++ uncompyle6-3.7.0.tar.gz -> uncompyle6-3.7.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uncompyle6-3.7.0/ChangeLog 
new/uncompyle6-3.7.2/ChangeLog
--- old/uncompyle6-3.7.0/ChangeLog  2020-05-19 06:54:51.0 +0200
+++ new/uncompyle6-3.7.2/ChangeLog  2020-06-28 05:05:48.0 +0200
@@ -1,3 +1,146 @@
+2020-06-27  rocky 
+
+   * uncompyle6/version.py: Get ready for release 3.7.2
+
+2020-06-27  rocky 
+
+   * uncompyle6/parsers/reducecheck/or_check.py: Back off "or" check
+   using instructions vs opcodes
+
+2020-06-27  rocky 
+
+   * uncompyle6/parsers/reducecheck/or_check.py: Back off buggy "or"
+   check
+
+2020-06-27  rocky 
+
+   * test/stdlib/2.5-exclude.sh, test/stdlib/2.6-exclude.sh: Last
+   commit fixed test_pep352.py
+
+2020-06-27  rocky 
+
+   * uncompyle6/parsers/parse26.py, uncompyle6/parsers/parse27.py,
+   uncompyle6/parsers/reducecheck/or_check.py: Add "comp_if_not" for
+   2.6-
+
+2020-06-27  rocky 
+
+   * uncompyle6/parsers/reducecheck/ifelsestmt.py: Handle more ifelse
+   reduction rules patterns
+
+2020-06-26  rocky 
+
+   * uncompyle6/semantics/pysource.py,
+   uncompyle6/semantics/transform.py: Workaround bug detecting
+   MAKE_FUNCTION docstrings
+
+2020-06-21  rocky 
+
+   * __pkginfo__.py, uncompyle6/main.py: Adjust for newer xdis
+
+2020-06-17  rocky 
+
+   * : commit 2a8daca25d25d5be039cab88f5f8e931d115cbe1 Author: rocky
+Date:   Wed Jun 17 10:12:56 2020 -0400
+
+2020-06-17  rocky 
+
+   * test/stdlib/3.7-exclude.sh: Add another 3.7 stdlib exclusion test
+
+2020-06-17  rocky 
+
+   * test/run-and-email.sh: Disable compile-farm 3.8.3 checking
+
+2020-06-15  rocky 
+
+   * admin-tools/how-to-make-a-release.md,
+   uncompyle6/parsers/parse38.py, uncompyle6/semantics/customize38.py: 
+   Towards fixing a 3.8 try except-as bug
+
+2020-06-12  rocky 
+
+   * admin-tools/how-to-make-a-release.md: Administrivia
+
+2020-06-12  rocky 
+
+   * uncompyle6/parsers/reducecheck/ifelsestmt.py: New grammar rule
+   often imples expanded reduce rule
+
+2020-06-12  rocky 
+
+   * .circleci/config.yml, .travis.yml, NEWS.md, uncompyle6/version.py: 
+   Get ready for release 3.7.1
+
+2020-06-12  rocky 
+
+   * test/add-test.py, test/simple_source/bug37/03_else_removal.py,
+   uncompyle6/parsers/parse37.py: Handle 3.7+ "else" branch removal...  As 
seen in _cmp() of python3.8/distutils/version.py with
+   optimization -O2
+
+2020-06-10  rocky 
+
+   * .circleci/config.yml: CI take 3.
+
+2020-06-10  rocky 
+
+   * .travis.yml: CI update take 2
+
+2020-06-10  rocky 
+
+   * .circleci/config.yml, .travis.yml, __pkginfo__.py: Update CI to
+   use git xdis
+
+2020-06-04  rocky 
+
+   * uncompyle6/parsers/parse3.py, uncompyle6/parsers/parse36.py: Push
+   "with" grammar improvements back to 3.6
+
+2020-06-04  rocky 
+
+   * 

commit python-uncompyle6 for openSUSE:Factory

2020-06-14 Thread root
Hello community,

here is the log from the commit of package python-uncompyle6 for 
openSUSE:Factory checked in at 2020-06-14 18:24:03

Comparing /work/SRC/openSUSE:Factory/python-uncompyle6 (Old)
 and  /work/SRC/openSUSE:Factory/.python-uncompyle6.new.3606 (New)


Package is "python-uncompyle6"

Sun Jun 14 18:24:03 2020 rev:8 rq:812616 version:3.7.0

Changes:

--- /work/SRC/openSUSE:Factory/python-uncompyle6/python-uncompyle6.changes  
2020-05-19 14:48:37.608089051 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-uncompyle6.new.3606/python-uncompyle6.changes
2020-06-14 18:24:12.112397790 +0200
@@ -1,0 +2,7 @@
+Mon Jun  8 13:23:58 UTC 2020 - Dirk Mueller 
+
+- update to 3.7.0
+  * The main impetus for this release is to pull in the recent changes from 
xdis. We simplify imports using xdis 4.6.0.
+  * There were some bugfixes to Python 3.4-3.8. See the ChangeLog for details
+
+---

Old:

  uncompyle6-3.6.5.tar.gz

New:

  uncompyle6-3.7.0.tar.gz



Other differences:
--
++ python-uncompyle6.spec ++
--- /var/tmp/diff_new_pack.XLh8mb/_old  2020-06-14 18:24:18.568418620 +0200
+++ /var/tmp/diff_new_pack.XLh8mb/_new  2020-06-14 18:24:18.568418620 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-uncompyle6
-Version:3.6.5
+Version:3.7.0
 Release:0
 Summary:Python cross-version byte-code decompiler
 License:GPL-3.0-only

++ uncompyle6-3.6.5.tar.gz -> uncompyle6-3.7.0.tar.gz ++
 5679 lines of diff (skipped)




commit python-uncompyle6 for openSUSE:Factory

2020-05-19 Thread root
Hello community,

here is the log from the commit of package python-uncompyle6 for 
openSUSE:Factory checked in at 2020-05-19 14:48:36

Comparing /work/SRC/openSUSE:Factory/python-uncompyle6 (Old)
 and  /work/SRC/openSUSE:Factory/.python-uncompyle6.new.2738 (New)


Package is "python-uncompyle6"

Tue May 19 14:48:36 2020 rev:7 rq:806964 version:3.6.5

Changes:

--- /work/SRC/openSUSE:Factory/python-uncompyle6/python-uncompyle6.changes  
2020-04-18 00:33:22.550418259 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-uncompyle6.new.2738/python-uncompyle6.changes
2020-05-19 14:48:37.608089051 +0200
@@ -1,0 +2,5 @@
+Mon May 18 09:10:38 UTC 2020 - Petr Gajdos 
+
+- %python3_only -> %python_alternative
+
+---



Other differences:
--
++ python-uncompyle6.spec ++
--- /var/tmp/diff_new_pack.nwU9Mf/_old  2020-05-19 14:48:38.308090603 +0200
+++ /var/tmp/diff_new_pack.nwU9Mf/_new  2020-05-19 14:48:38.308090603 +0200
@@ -32,6 +32,8 @@
 Requires:   python-setuptools
 Requires:   python-spark_parser >= 1.8.7
 Requires:   python-xdis >= 4.2.2
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 BuildArch:  noarch
 # SECTION test requirements
 BuildRequires:  %{python_module hypothesis >= 2.0.0}
@@ -53,16 +55,26 @@
 
 %install
 %python_install
+%python_clone -a %{buildroot}%{_bindir}/pydisassemble
+%python_clone -a %{buildroot}%{_bindir}/uncompyle6
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
 %pytest pytest
 
+%post
+%python_install_alternative pydisassemble
+%python_install_alternative uncompyle6
+
+%postun
+%python_uninstall_alternative pydisassemble
+%python_uninstall_alternative uncompyle6
+
 %files %{python_files}
 %license COPYING
 %doc ChangeLog README README.rst
-%python3_only %{_bindir}/uncompyle6
-%python3_only %{_bindir}/pydisassemble
+%python_alternative %{_bindir}/uncompyle6
+%python_alternative %{_bindir}/pydisassemble
 %{python_sitelib}/*
 
 %changelog




commit python-uncompyle6 for openSUSE:Factory

2020-04-17 Thread root
Hello community,

here is the log from the commit of package python-uncompyle6 for 
openSUSE:Factory checked in at 2020-04-18 00:32:02

Comparing /work/SRC/openSUSE:Factory/python-uncompyle6 (Old)
 and  /work/SRC/openSUSE:Factory/.python-uncompyle6.new.2738 (New)


Package is "python-uncompyle6"

Sat Apr 18 00:32:02 2020 rev:6 rq:794859 version:3.6.5

Changes:

--- /work/SRC/openSUSE:Factory/python-uncompyle6/python-uncompyle6.changes  
2020-03-17 13:11:38.601867982 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-uncompyle6.new.2738/python-uncompyle6.changes
2020-04-18 00:33:22.550418259 +0200
@@ -1,0 +2,13 @@
+Fri Apr 17 09:26:00 UTC 2020 - pgaj...@suse.com
+
+- version update to 3.6.5
+  * Handle nested async for in for... and better async comprehension detection 
via xdis. Still more work is needed.
+  * include token number in listings when -g and there is a parser error
+  * remove unneeded Makefiles now that remake 4.3+1.5dbg is a thing that has -c
+  * Bug in finding annotations in functions with docstrings
+  * Fix bug found by 2.4 sre_parse.py testing
+  * Fix transform module's ifelseif bugs
+  * Fix bug in 3.0 name module detection
+  * Fix docstring detection
+
+---

Old:

  uncompyle6-3.6.4.tar.gz

New:

  uncompyle6-3.6.5.tar.gz



Other differences:
--
++ python-uncompyle6.spec ++
--- /var/tmp/diff_new_pack.UTy9OB/_old  2020-04-18 00:33:23.522420271 +0200
+++ /var/tmp/diff_new_pack.UTy9OB/_new  2020-04-18 00:33:23.526420279 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-uncompyle6
-Version:3.6.4
+Version:3.6.5
 Release:0
 Summary:Python cross-version byte-code decompiler
 License:GPL-3.0-only

++ uncompyle6-3.6.4.tar.gz -> uncompyle6-3.6.5.tar.gz ++
 1689 lines of diff (skipped)




commit python-uncompyle6 for openSUSE:Factory

2020-03-17 Thread root
Hello community,

here is the log from the commit of package python-uncompyle6 for 
openSUSE:Factory checked in at 2020-03-17 13:11:33

Comparing /work/SRC/openSUSE:Factory/python-uncompyle6 (Old)
 and  /work/SRC/openSUSE:Factory/.python-uncompyle6.new.3160 (New)


Package is "python-uncompyle6"

Tue Mar 17 13:11:33 2020 rev:5 rq:785837 version:3.6.4

Changes:

--- /work/SRC/openSUSE:Factory/python-uncompyle6/python-uncompyle6.changes  
2020-02-11 22:24:24.567534836 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-uncompyle6.new.3160/python-uncompyle6.changes
2020-03-17 13:11:38.601867982 +0100
@@ -1,0 +2,8 @@
+Tue Mar 10 13:13:18 UTC 2020 - pgaj...@suse.com
+
+- version update to 3.6.4
+  * The main focus in this release was fix some of the more glaring
+problems creapt in from the last release due to that refactor.
+  * See ChangeLog for details.
+
+---

Old:

  uncompyle6-3.6.3.tar.gz

New:

  uncompyle6-3.6.4.tar.gz



Other differences:
--
++ python-uncompyle6.spec ++
--- /var/tmp/diff_new_pack.HrP79W/_old  2020-03-17 13:11:39.197868440 +0100
+++ /var/tmp/diff_new_pack.HrP79W/_new  2020-03-17 13:11:39.197868440 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-uncompyle6
-Version:3.6.3
+Version:3.6.4
 Release:0
 Summary:Python cross-version byte-code decompiler
 License:GPL-3.0-only
@@ -26,18 +26,19 @@
 URL:https://github.com/rocky/python-uncompyle6/
 Source: 
https://files.pythonhosted.org/packages/source/u/uncompyle6/uncompyle6-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
+Requires:   python-hypothesis >= 2.0.0
+Requires:   python-setuptools
+Requires:   python-spark_parser >= 1.8.7
+Requires:   python-xdis >= 4.2.2
+BuildArch:  noarch
 # SECTION test requirements
-BuildRequires:  %{python_module hypothesis}
+BuildRequires:  %{python_module hypothesis >= 2.0.0}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module spark_parser >= 1.8.7}
 BuildRequires:  %{python_module xdis >= 4.2.2}
 # /SECTION
-BuildRequires:  fdupes
-Requires:   python-spark_parser >= 1.8.7
-Requires:   python-xdis >= 4.2.2
-BuildArch:  noarch
-
 %python_subpackages
 
 %description

++ uncompyle6-3.6.3.tar.gz -> uncompyle6-3.6.4.tar.gz ++
 3009 lines of diff (skipped)




commit python-uncompyle6 for openSUSE:Factory

2020-02-11 Thread root
Hello community,

here is the log from the commit of package python-uncompyle6 for 
openSUSE:Factory checked in at 2020-02-11 22:23:43

Comparing /work/SRC/openSUSE:Factory/python-uncompyle6 (Old)
 and  /work/SRC/openSUSE:Factory/.python-uncompyle6.new.26092 (New)


Package is "python-uncompyle6"

Tue Feb 11 22:23:43 2020 rev:4 rq:772467 version:3.6.3

Changes:

--- /work/SRC/openSUSE:Factory/python-uncompyle6/python-uncompyle6.changes  
2019-09-11 10:35:05.151301583 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-uncompyle6.new.26092/python-uncompyle6.changes
   2020-02-11 22:24:24.567534836 +0100
@@ -1,0 +2,15 @@
+Fri Feb  7 16:32:32 UTC 2020 - Marketa Calabkova 
+
+- update to 3.6.3
+  * Fix fragment bugs
+  * Preliminary support for decompiling Python 1.0, 1.1, 1.2, and 1.6 
+  * Pypy 3.3, 3.5, 3.6, and 3.6.9 support
+  * Improve 3.0 decompilation 
+  * Fix unmarshal incompletness detected in Pypy 3.6
+  * more accurate decompilation especially for 3.7 and 3.8.
+  * runing in 3.9-dev is tolerated
+  * Numerous bugs around handling lambda with keyword-only fixed.
+  * binary_expr and unary_expr have been renamed to bin_op and unary_op
+  * TL;DR, but nothing important
+
+---

Old:

  uncompyle6-3.4.0.tar.gz

New:

  uncompyle6-3.6.3.tar.gz



Other differences:
--
++ python-uncompyle6.spec ++
--- /var/tmp/diff_new_pack.acmua3/_old  2020-02-11 22:24:25.139535150 +0100
+++ /var/tmp/diff_new_pack.acmua3/_new  2020-02-11 22:24:25.143535151 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-uncompyle6
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,12 +18,12 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-uncompyle6
-Version:3.4.0
+Version:3.6.3
 Release:0
 Summary:Python cross-version byte-code decompiler
 License:GPL-3.0-only
 Group:  Development/Languages/Python
-Url:https://github.com/rocky/python-uncompyle6/
+URL:https://github.com/rocky/python-uncompyle6/
 Source: 
https://files.pythonhosted.org/packages/source/u/uncompyle6/uncompyle6-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  python-rpm-macros
@@ -31,11 +31,11 @@
 BuildRequires:  %{python_module hypothesis}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module spark_parser >= 1.8.7}
-BuildRequires:  %{python_module xdis >= 4.0.2}
+BuildRequires:  %{python_module xdis >= 4.2.2}
 # /SECTION
 BuildRequires:  fdupes
 Requires:   python-spark_parser >= 1.8.7
-Requires:   python-xdis >= 4.0.2
+Requires:   python-xdis >= 4.2.2
 BuildArch:  noarch
 
 %python_subpackages
@@ -46,8 +46,6 @@
 
 %prep
 %setup -q -n uncompyle6-%{version}
-# invalid syntax on new pytest
-rm pytest/test_function_call.py
 
 %build
 %python_build

++ uncompyle6-3.4.0.tar.gz -> uncompyle6-3.6.3.tar.gz ++
 25723 lines of diff (skipped)




commit python-uncompyle6 for openSUSE:Factory

2019-09-11 Thread root
Hello community,

here is the log from the commit of package python-uncompyle6 for 
openSUSE:Factory checked in at 2019-09-11 10:35:02

Comparing /work/SRC/openSUSE:Factory/python-uncompyle6 (Old)
 and  /work/SRC/openSUSE:Factory/.python-uncompyle6.new.7948 (New)


Package is "python-uncompyle6"

Wed Sep 11 10:35:02 2019 rev:3 rq:729743 version:3.4.0

Changes:

--- /work/SRC/openSUSE:Factory/python-uncompyle6/python-uncompyle6.changes  
2019-07-22 17:19:31.521908651 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-uncompyle6.new.7948/python-uncompyle6.changes
2019-09-11 10:35:05.151301583 +0200
@@ -1,0 +2,7 @@
+Tue Sep 10 09:34:20 UTC 2019 - Tomáš Chvátal 
+
+- Update to 3.4.0:
+  * The main change is to add a tree-transformation phase
+  * Various bugfixes
+
+---

Old:

  uncompyle6-3.3.5.tar.gz

New:

  uncompyle6-3.4.0.tar.gz



Other differences:
--
++ python-uncompyle6.spec ++
--- /var/tmp/diff_new_pack.HIyVs0/_old  2019-09-11 10:35:07.663300854 +0200
+++ /var/tmp/diff_new_pack.HIyVs0/_new  2019-09-11 10:35:07.667300853 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-uncompyle6
-Version:3.3.5
+Version:3.4.0
 Release:0
 Summary:Python cross-version byte-code decompiler
 License:GPL-3.0-only

++ uncompyle6-3.3.5.tar.gz -> uncompyle6-3.4.0.tar.gz ++
 6153 lines of diff (skipped)




commit python-uncompyle6 for openSUSE:Factory

2019-07-22 Thread root
Hello community,

here is the log from the commit of package python-uncompyle6 for 
openSUSE:Factory checked in at 2019-07-22 17:19:30

Comparing /work/SRC/openSUSE:Factory/python-uncompyle6 (Old)
 and  /work/SRC/openSUSE:Factory/.python-uncompyle6.new.4126 (New)


Package is "python-uncompyle6"

Mon Jul 22 17:19:30 2019 rev:2 rq:717561 version:3.3.5

Changes:

--- /work/SRC/openSUSE:Factory/python-uncompyle6/python-uncompyle6.changes  
2019-07-04 15:43:28.190127805 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-uncompyle6.new.4126/python-uncompyle6.changes
2019-07-22 17:19:31.521908651 +0200
@@ -1,0 +2,6 @@
+Mon Jul 22 11:54:48 UTC 2019 - Tomáš Chvátal 
+
+- Update to 3.3.5:
+  * No upstream changelog
+
+---

Old:

  uncompyle6-3.3.4.tar.gz

New:

  uncompyle6-3.3.5.tar.gz



Other differences:
--
++ python-uncompyle6.spec ++
--- /var/tmp/diff_new_pack.aaexRx/_old  2019-07-22 17:19:32.037908511 +0200
+++ /var/tmp/diff_new_pack.aaexRx/_new  2019-07-22 17:19:32.037908511 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-uncompyle6
-Version:3.3.4
+Version:3.3.5
 Release:0
 Summary:Python cross-version byte-code decompiler
 License:GPL-3.0-only

++ uncompyle6-3.3.4.tar.gz -> uncompyle6-3.3.5.tar.gz ++
 5404 lines of diff (skipped)