Commit Graph

1723 Commits

Author SHA1 Message Date
Hongxu Jia
c693c2c932 python-configparser: add python-pkgutil to runtime depends
...
$ python
$ >>> import backports
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/site-packages/backports/__init__.py", line 4, in <module>
    from pkgutil import extend_path
ImportError: No module named pkgutil
...

Modeule pkgutil comes from python-pkgutil

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-06 19:58:01 -08:00
Hongxu Jia
c88a349fd7 python-importlib-metadata: add python-compression to runtime depends
...
$ python
$ >>> import importlib_metadata
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/site-packages/importlib_metadata/__init__.py", line 9, in <module>
    import zipp
  File "/usr/lib/python2.7/site-packages/zipp.py", line 8, in <module>
    import zipfile
ImportError: No module named zipfile
...

Module zipfile comes from python-compression

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-06 19:58:01 -08:00
Hongxu Jia
894a6e333d python3-importlib-metadata: add python3-misc to runtime depends
...
$ python3
$ >>> import importlib_metadata
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python3.7/site-packages/importlib_metadata/__init__.py", line 15, in <module>
    from ._compat import (
  File "/usr/lib/python3.7/site-packages/importlib_metadata/_compat.py", line 28, in <module>
    import pathlib
ModuleNotFoundError: No module named 'pathlib'
...

Module pathlib comes from python3-misc

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-06 19:58:01 -08:00
Hongxu Jia
47a88044f1 python-contextlib2/python3-contextlib2: add version 0.6.0
The python-contextlib2 is required by python-importlib-metadata,
the newly added recipes refers the one in meta-cloud-services

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-06 19:58:01 -08:00
Hongxu Jia
04f80435e8 python-scandir: add version 1.10.0
It is required by python-pathlib2.

The recipe refers the duplicated one in meta-iot-cloud

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-06 19:58:01 -08:00
Hongxu Jia
f86bcc10cf python-pathlib2: add python-scandir and python-misc to runtime depends
...
$ >>> python
$ >>> import pathlib2 as pathlib
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib64/python2.7/site-packages/pathlib2/__init__.py", line 52, in <module>
    from scandir import scandir as os_scandir
ImportError: No module named scandir

$ >>> import pathlib2 as pathlib
ceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/site-packages/pathlib2/__init__.py", line 9, in <module>
    import ntpath
ImportError: No module named ntpath
...

Module scandir comes from python-scandir and ntpath comes from python-misc

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-06 19:58:01 -08:00
Hongxu Jia
51d1251f8b python-importlib-metadata: add missing runtime depends
>From setup.cfg:
...
 20 install_requires =
 21     zipp>=0.5
 22     pathlib2; python_version=='3.4.*' or python_version < '3'
 23     contextlib2; python_version < '3'
 24     configparser>=3.5; python_version < '3'
...

Add missing runtime depends while python version < '3'

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-06 19:58:01 -08:00
Hongxu Jia
ee4ee7645c python-more-itertools: downgrade 7.2.0 -> 5.0.0
Python 2.7 is no longer supported. The 5.0.0 release will be the last
version targeting Python 2.7. [1]

[1] 560b045b43

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-06 19:58:01 -08:00
Ming Liu
2c84c0b9a0 python-jsonschema: RDEPENDS on python-importlib-metadata
This fixes a following runtime issue:
|      raise DistributionNotFound(req, requirers)
| pkg_resources.DistributionNotFound: The 'importlib_metadata'
| distribution was not found and is required by jsonschema

Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-06 06:32:14 -08:00
Hongxu Jia
03e44aafb1 python-more-itertools.inc: fix python2 package not incorrectly generated
The package of python2 is incorrected generated to python3
...
tmp-glibc/work/core2-64-wrs-linux/python-more-itertools/7.2.0-r0$ find image/
image/
image/usr
image/usr/lib64
image/usr/lib64/python3.7
image/usr/lib64/python3.7/site-packages
image/usr/lib64/python3.7/site-packages/more_itertools
image/usr/lib64/python3.7/site-packages/more_itertools/__init__.py
image/usr/lib64/python3.7/site-packages/more_itertools/more.py
image/usr/lib64/python3.7/site-packages/more_itertools/recipes.py
image/usr/lib64/python3.7/site-packages/more_itertools/tests
image/usr/lib64/python3.7/site-packages/more_itertools/tests/__init__.py
image/usr/lib64/python3.7/site-packages/more_itertools/tests/test_more.py
image/usr/lib64/python3.7/site-packages/more_itertools/tests/test_recipes.py
image/usr/lib64/python3.7/site-packages/more_itertools/tests/__pycache__
image/usr/lib64/python3.7/site-packages/more_itertools/tests/__pycache__/__init__.cpython-37.pyc
image/usr/lib64/python3.7/site-packages/more_itertools/tests/__pycache__/test_more.cpython-37.pyc
image/usr/lib64/python3.7/site-packages/more_itertools/tests/__pycache__/test_recipes.cpython-37.pyc
image/usr/lib64/python3.7/site-packages/more_itertools/__pycache__
image/usr/lib64/python3.7/site-packages/more_itertools/__pycache__/__init__.cpython-37.pyc
image/usr/lib64/python3.7/site-packages/more_itertools/__pycache__/more.cpython-37.pyc
image/usr/lib64/python3.7/site-packages/more_itertools/__pycache__/recipes.cpython-37.pyc
image/usr/lib64/python3.7/site-packages/more_itertools-7.2.0-py3.7.egg-info
image/usr/lib64/python3.7/site-packages/more_itertools-7.2.0-py3.7.egg-info/PKG-INFO
image/usr/lib64/python3.7/site-packages/more_itertools-7.2.0-py3.7.egg-info/SOURCES.txt
image/usr/lib64/python3.7/site-packages/more_itertools-7.2.0-py3.7.egg-info/dependency_links.txt
image/usr/lib64/python3.7/site-packages/more_itertools-7.2.0-py3.7.egg-info/top_level.txt
...

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-06 06:32:14 -08:00
Hongxu Jia
9744aad358 python-pluggy: add python-importlib-metadata to RDEPENDS
$ python3
$ >>> import pluggy
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib64/python2.7/site-packages/pluggy/__init__.py", line 16, in <module>
    from .manager import PluginManager, PluginValidationError
  File "/usr/lib64/python2.7/site-packages/pluggy/manager.py", line 11, in <module>
    import importlib_metadata
ImportError: No module named importlib_metadata

$ python
$ >>> import pluggy
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib64/python2.7/site-packages/pluggy/__init__.py", line 16, in <module>
    from .manager import PluginManager, PluginValidationError
  File "/usr/lib64/python2.7/site-packages/pluggy/manager.py", line 11, in <module>
    import importlib_metadata
  File "/usr/lib64/python2.7/site-packages/importlib_metadata/__init__.py", line 9, in <module>
    import zipp
  File "/usr/lib64/python2.7/site-packages/zipp.py", line 12, in <module>
    import more_itertools
ImportError: No module named more_itertools

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-06 06:32:14 -08:00
Zang Ruochen
5c8c8e7d05 python-pymisp: upgrade 2.4.93 -> 2.4.117.2
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-04 12:14:08 -08:00
Zang Ruochen
ac19cfb30b python-pyjwt: upgrade 1.6.4 -> 1.7.1
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-04 12:14:08 -08:00
Zang Ruochen
3ceedc1bf9 python-pyjks: upgrade 17.1.1 -> 19.0.0
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-04 12:14:08 -08:00
Khem Raj
15d60dd3d0 python-docutils: Upgrade to 0.15.2
- License-Update: Formatting changes due to change in SRC_URI
- This is reflected as latest release on PyPI
- Add python3 variant
- Add python3 variant to meta-python packagegroup

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-02 11:07:22 -07:00
Zang Ruochen
1dd3814995 python-pyfirmata: upgrade 1.0.3 -> 1.1.0
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:53 -07:00
Zang Ruochen
83fed0f1c2 python-pyexpect: upgrade 1.0.17 -> 1.0.19
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:53 -07:00
Zang Ruochen
5101c99ab4 python-pycryptodome: upgrade 3.4.11 -> 3.9.0
-License-Update: Add Apache 2.0 license.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:53 -07:00
Zang Ruochen
9db8a1fa6b python-pybind11: upgrade 2.2.3 -> 2.4.3
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:53 -07:00
Zang Ruochen
f3cf839598 python-prompt-toolkit: upgrade 2.0.4 -> 2.0.10
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:53 -07:00
Zang Ruochen
683f83a8b5 python-progress: upgrade 1.4 -> 1.5
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:53 -07:00
Zang Ruochen
0e68a7c4f0 python-pint: upgrade 0.8.1 -> 0.9
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:53 -07:00
Zang Ruochen
9b6f65b3c4 python-periphery: upgrade 1.1.1 -> 2.0.0
-License-Update: Upgrade file PKG-INFO.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:53 -07:00
Zang Ruochen
f23b3c7013 python-pathlib2: upgrade 2.3.4 -> 2.3.5
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:53 -07:00
Zang Ruochen
2c9dd472b5 python-parse: upgrade 1.8.4 -> 1.12.1
-License-Update: Copyright year updated to 2019.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:53 -07:00
Zang Ruochen
2a679e2182 python-lazy-object-proxy: upgrade 1.3.1 -> 1.4.3
-License-Update: Copyright year updated to 2019.

-Add setuptools_scm native recipe to DEPENDS.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:53 -07:00
Zang Ruochen
a7cd4edade python-javaobj-py3: upgrade 0.2.4 -> 0.3.0
-License-Update: The old version of the license file was deleted in the new version, so choose another file containing the license information for verification.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:53 -07:00
Zang Ruochen
6c1900ea20 python-isort: upgrade 4.3.4 -> 4.3.21
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:52 -07:00
Zang Ruochen
0c101816ef python-intervals: upgrade 1.5.4 -> 1.10.0
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:52 -07:00
Zang Ruochen
6fe521fec5 python-future: upgrade 0.16.0 -> 0.18.2
-License-Update: Copyright year updated to 2019.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:52 -07:00
Zang Ruochen
686609c996 python-evdev: upgrade 0.7.0 -> 1.2.0
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:52 -07:00
Zang Ruochen
e6aeb1ae5c python-engineio: upgrade 3.9.3 -> 3.10.0
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:52 -07:00
Zang Ruochen
da472f404e python-dnspython: upgrade 1.15.0 -> 1.16.0
-License-Update: Copyright year updated to 2017.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:52 -07:00
Zang Ruochen
f0c1e0d80d python-simplejson: enable native and nativesdk
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-01 17:22:52 -07:00
Paul Eggleton
29d6510134 python3-pillow: update to 6.2.1
Upstream release notes:

  https://pillow.readthedocs.io/en/stable/releasenotes/6.2.0.html
  https://pillow.readthedocs.io/en/stable/releasenotes/6.2.1.html

Also fixes CVE-2019-16865:

  https://nvd.nist.gov/vuln/detail/CVE-2019-16865

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-28 23:48:27 -07:00
Zang Ruochen
2404e1ea11 python-daemonize: upgrade 2.4.7 -> 2.5.0
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-28 13:10:20 -07:00
Zang Ruochen
e82c09b8e5 python-can: upgrade 2.2.1 -> 3.3.2
-License-Update:changed from dos to unix.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-28 13:10:20 -07:00
Zang Ruochen
29227dcf30 python-bitarray: upgrade 0.8.3 -> 1.0.1
-License-Update: Update PKG-INFO.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-28 13:10:20 -07:00
Christophe PRIOUZEAU
fe6a574803 Python: ujson: Clarify BSD license variant
The License of python ujson is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
a0d0dbefe0 Python: pyusb: Clarify BSD license variant
The License of python pyusb is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
07ae17981b Python: pyhamcrest: Clarify BSD license variant
The License of python pyhamcrest is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
a6493abce3 Python: psutil: Clarify BSD license variant
The License of python psutil is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
0c014da04e Python: oauthlib: Clarify BSD license variant
The License of python oauthlib is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
2fa4579987 Python: flask scrypt: Clarify BSD license variant
The License of python flask scrypt is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
d2d53a42a1 Python: ndg httpsclient: Clarify BSD license variant
The License of python ndg httpsclient is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
92b78dc3a9 Python: jsonpatch: Clarify BSD license variant
The License of python jsonpatch is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
e46867f96f Python: flask bcrypt: Clarify BSD license variant
The License of python flask bcrypt is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
fa43a10ea3 Python: dnspython: Clarify BSD license variant
The License of python dnspython is ISC.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
864eba7e8b Python: markdown: Clarify BSD license variant
The License of python markdown is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
9376fd7c00 Python: xxhash: Clarify BSD license variant
The License of python xxhash is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
7ba62cd2da Python: jsonpointer: Clarify BSD license variant
The License of python jsonpointer is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
4bbfadc761 Python: flask user: Clarify BSD license variant
The License of python flask user is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Christophe PRIOUZEAU
4d759a3ce3 Python: babel: Clarify BSD license variant
The License of python babel is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-26 02:41:33 -07:00
Michal Lower
6507845ce8 update python setuptools-scm from 2.1.0 to 3.3.3 2019-10-25 10:29:52 -07:00
Christophe PRIOUZEAU
233735fae5 Python: click: Clarify BSD license variant
The License of python click is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:52 -07:00
Christophe PRIOUZEAU
7e04c5e88d Python: flask wtf: Clarify BSD license variant
The License of python flask wtf is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:52 -07:00
Christophe PRIOUZEAU
e33675e649 Python: flask: Clarify BSD license variant
The License of python flask is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:52 -07:00
Christophe PRIOUZEAU
700cc35742 Python: pika: Clarify BSD license variant
The License of python pika is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:52 -07:00
Christophe PRIOUZEAU
c9a22eb71b Python: pyserial: Clarify BSD license variant
The License of python pyserial is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:52 -07:00
Christophe PRIOUZEAU
05812160bf Python: whoosh: Clarify BSD license variant
The License of python whoosh is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:52 -07:00
Christophe PRIOUZEAU
1954ed6f1a Python: lazy object proxy: Clarify BSD license variant
The License of python lazy object proxy is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
cb18ff55ba Python: flask xstatic: Clarify BSD license variant
The License of python flask xstatic is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
6aa7a6e466 Python: flask pymongo: Clarify BSD license variant
The License of python flask pymongo is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
dfdc28f711 Python: pysnmp: Clarify BSD license variant
The License of python pysnmp is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
74158e2997 Python: supervisor: Clarify BSD license variant
The License of python supervisor is BSD-4-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
564f9be44e Python: wtforms: Clarify BSD license variant
The License of python wtforms is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
7e971c4496 Python: rdflib: Clarify BSD license variant
The License of python rdflib is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
995504037d Python: pysocks: Clarify BSD license variant
The License of python pysocks is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
c84d6abc57 Python: prettytable: Clarify BSD license variant
The License of python prettytable is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
711ca85602 Python: pretend: Clarify BSD license variant
The License of python pretend is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
46cff8da7d Python: netaddr: Clarify BSD license variant
The License of python netaddr is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
aa3709c0d8 Python: evdev: Clarify BSD license variant
The License of python evdev is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
14bbd8d32b Python: werkzeug: Clarify BSD license variant
The License of python werkzeug is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
0986d2db17 Python: webcolors: Clarify BSD license variant
The License of python webcolors is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
a95cd60f2b Python: pynetlinux: Clarify BSD license variant
The License of python pynetlinux is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
a9a922a4af Python: passlib: Clarify BSD license variant
The License of python passlib is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
bba01f4971 Python: isodate: Clarify BSD license variant
The License of python isodate is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
1f32b2b873 Python: falsk mail: Clarify BSD license variant
The License of python falsk mail is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
fd205b4e66 Python: flask babel: Clarify BSD license variant
The License of python falsk babel is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
6ac5fba229 Python: decorator: Clarify BSD license variant
The License of python decorator is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
8015b0b974 Python: feed formatter: Clarify BSD license variant
The License of python feed formatter is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
3a6d44eeb0 Python: alembic: Clarify BSD license variant
The License of python alembic is MIT.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
9dd6bfac3f Python: xlrd: Clarify BSD license variant
The License of python xlrd is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
a9a9f39e3c Python: h5py: Clarify BSD license variant
The License of python h5py is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
1c46bdf657 Python: wrapt: Clarify BSD license variant
The License of python wrapt is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
0591114b58 Python: speaklater: Clarify BSD license variant
The License of python speaklater is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
e012e5fdff Python: pysmi: Clarify BSD license variant
The License of python pysmi is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
1a6ae3203a Python: pocket sphinx: Clarify BSD license variant
The License of python pocket sphinx is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
b2a3cc3363 Python: prompt toolkit: Clarify BSD license variant
The License of python prompt toolkit is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
eb5d926a5d Python: ply: Clarify BSD license variant
The License of python ply is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
296f77e620 Python: meld3: Clarify BSD license variant
The License of python meld3 is BSD-4-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
ee2dedee7c Python: flask-sqlalchemy: Clarify BSD license variant
The License of python flask-sqlalchemy is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Zang Ruochen
69bc4effbe python-bcrypt: upgrade 3.1.4 -> 3.1.7
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Zang Ruochen
935fec95d0 python-backports-ssl: upgrade 3.5.0.1 -> 3.7.0.1
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Zang Ruochen
98d5f7afea python-aws-iot-device-sdk-python: upgrade 1.4.0 -> 1.4.7
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Zang Ruochen
0b8ed3c33c python-astroid: upgrade 1.6.5 -> 2.3.2
-Add depends:pytest-runner-native.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:51 -07:00
Khem Raj
9aae0c91fc python3-astor: Fix build with setuptools>=41.4
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:50 -07:00
Khem Raj
2768146fd2 python3-astor: Upgrade to 0.8
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-25 10:29:50 -07:00
nick83ola
903bfb78a0 python3-dbus-next: first commit of dbus-next 0.1.2
>From pypi page:

python-dbus-next plans to improve over other DBus libraries for Python in the
following ways:

 * Zero dependencies and pure Python 3.
 * Support for multiple IO backends including asyncio and the GLib main loop.
 * Nonblocking IO suitable for GUI development.
 * Target the latest language features of Python for beautiful services and
   clients.
 * Complete implementation of the DBus type system without ever guessing types.
 * Integration tests for all features of the library.
 * Completely documented public API.

Signed-off-by: Nicola Lunghi <nick83ola@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-24 01:01:44 -07:00
Zang Ruochen
5886d97572 python-pip: upgrade 19.3 -> 19.3.1
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-10-24 01:01:44 -07:00