summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* python3-prctl: Upgrade 1.7 -> 1.8.1Leon Anavi2021-02-012-9/+10
| | | | | | | | | | | | | | Upgrade to release 1.8.1: - Master was renamed to main - Backwards compatibility fixes - Install dependencies before trying to build/publish License-Update: Update year Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aiohttp-jinja2: Upgrade 1.2.0 -> 1.4.2Leon Anavi2021-02-011-2/+2
| | | | | | | | | | | | | | | | | Upgrade to release 1.4.2: - Fix type annotation for context_processors argument - Bump the minimal supported aiohttp version to 3.6.3 to avoid problems with uncompatibility between aiohttp and yarl - Add async rendering support - Document async rendering functions - Add CHANGES.rst to MANIFEST.in and sdist License-Update: Remove an empty line at the end of the file Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyzmq: Upgrade 21.0.2 -> 22.0.2Leon Anavi2021-02-012-8/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 22.0.2: - Add workaround for bug in DLL loading for Windows wheels with conda Python >= 3.8 - Fix type of Frame.bytes for non-copying recvs with CFFI backend (regression in 21.0) - Add manylinux wheels for pypy - Some typing fixes - Bump bundled libzmq to 4.3.4 - Strip unused symbols in manylinux wheels, resulting in dramatically smaller binaries. This matches behavior in v20 and earlier. - Windows CPython wheels bundle public libzmq binary builds, instead of building libzmq as a Python Extension. This means they include libsodium for the first time. - Our own implementation of bundling libzmq into pyzmq on Windows is removed, instead relying on delvewheel (or installations putting dlls on %PATH%) to bundle dependency dlls. - The (new in 21.0) Windows wheels for PyPy likely require the Windows vcredist package. This may have always been the case, but the delvewheel approach doesn't seem to work. - Windows + PyPy is now the only remaining case where a wheel has libzmq built as an Extension. All other builds ship libzmq built using its own tooling, which should result in better, more stable builds. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cantools: Upgrade 36.1.0 -> 36.2.0Leon Anavi2021-02-011-1/+1
| | | | | | | | | | | Upgrade to release 36.2.0: - Make matplotlib optional - Only run release job for tagged commits Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-croniter: Upgrade 1.0.2 -> 1.0.4Leon Anavi2021-02-011-1/+1
| | | | | | | | | | | Upgrade to release 1.0.4: - Raise CroniterBadCronError when error syntax - Fix spelling Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-h5py: improve reproducibilityMingli Yu2021-02-012-0/+31
| | | | | | | | Prevent absolute path from ending up in the egg-info SOURCES.txt. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-xlrd: Upgrade 1.2.0 -> 2.0.1Leon Anavi2021-02-011-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 2.0.1: - Use the README as the long description on PyPI. - Remove support for anything other than .xls files. - Remove support for psyco. - Change the default encoding used when no CODEPAGE record can be found from ascii to iso-8859-1. - Add support for iterating over :class:`~xlrd.book.Book` objects. - Add support for item access from :class:`~xlrd.book.Book` objects, where integer indices and string sheet names are supported. - Non-unicode spaces are now stripped from the "last author" information. - Workbook corruption errors can now be ignored using the ignore_workbook_corruption option to :class:`~xlrd.open_workbook`. - Handle WRITEACCESS records with invalid trailing characters. - Officially support Python 3.8 and 3.9. Get the source code from the git repository rather than from PyPI to obtain the tests. License-Update: Use file LICENSE. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pybind11: Upgrade 2.5.0 -> 2.6.2Leon Anavi2021-02-013-31/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 2.6.2: - enum: add missing Enum.value property. - Allow thread termination to be avoided during shutdown for CPython 3.7+ via .disarm for gil_scoped_acquire/gil_scoped_release. - Fix bug where the constructor of object subclasses would not throw on being passed a Python object of the wrong type. - The type_caster for integers does not convert Python objects with __int__ anymore with noconvert or during the first round of trying overloads. - When casting to a C++ integer, __index__ is always called and not considered as conversion, consistent with Python 3.8+. - Fixed segfault in multithreaded environments when using scoped_ostream_redirect. - Leave docstring unset when all docstring-related options are disabled, rather than set an empty string. - The module key in builtins that pybind11 uses to store its internals changed from std::string to a python str type (more natural on Python 2, no change on Python 3). - Fixed assertion error related to unhandled (later overwritten) exception in CPython 3.8 and 3.9 debug builds. - Fix py::gil_scoped_acquire assert with CPython 3.9 debug build. - Fix issue with a test failing on PyTest 6.2. - Fix warning modifying constructor parameter 'flag' that shadows a field of 'set_flag' [-Wshadow-field-in-constructor-modified]. - Suppressed some deprecation warnings about old-style __init__/__setstate__ in the tests. - Fix invalid access when calling a pybind11 __init__ on a non-pybind11 class instance. - Fixed various minor memory leaks in pybind11's test suite. - Resolved memory leak in cpp_function initialization when exceptions occurred. - Added a Valgrind build, checking for leaks and memory-related UB, to CI. - Intel compiler was not activating C++14 support due to a broken define. - Support ICC and NVIDIA HPC SDK in C++17 mode. - Support Intel OneAPI compiler (ICC 20.2) and add to CI. License-Update: Update a link. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-urllib3: Upgrade 1.26.2 -> 1.26.3Leon Anavi2021-02-011-1/+1
| | | | | | | | | | | | Upgrade to release 1.26.3: - Fixed bytes and string comparison issue with headers - Changed ProxySchemeUnknown error message to be more actionable if the user supplies a proxy URL without a scheme Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-prompt-toolkit: Upgrade 3.0.11 -> 3.0.14Leon Anavi2021-02-011-1/+1
| | | | | | | | | | | | Upgrade to release 3.0.14: - Disable bell when `PROMPT_TOOLKIT_BELL=false` environment variable has been set. - Improve cancellation of history loading. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-gevent: Upgrade 20.9.0 -> 21.1.2Leon Anavi2021-02-011-2/+1
| | | | | | | | | - Update the embedded libev from 4.31 to 4.33. - Update the embedded libuv from 1.38.0 to 1.40.0. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* zbar: use 4 spaces for indentationMartin Jansa2021-01-301-12/+12
| | | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* zbar: fix random do_prepare_recipe_sysroot_gettext failuresMartin Jansa2021-01-301-3/+2
| | | | | | | | | | | | | | | * do_prepare_recipe_sysroot task is added as: addtask do_prepare_recipe_sysroot before do_configure after do_fetch which doesn't ensure that directory is created * we can run this task as "after do_unpack", but it's just easier to run it in do_configure_prepend without the need for extra task * fixes: zbar/0.23.1+gitAUTOINC+89e7900d85-r0/temp/run.do_prepare_recipe_sysroot_gettext.30306' failed with exit code 1: install: target 'zbar/0.23.1+gitAUTOINC+89e7900d85-r0/git/' is not a directory: No such file or directory WARNING: exit code 1 from a shell command. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sanlock: upgrade 3.8.2 -> 3.8.3Zang Ruochen2021-01-291-1/+1
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libmbim: upgrade 1.24.4 -> 1.24.6Zang Ruochen2021-01-291-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libjson-perl: upgrade 4.02000 -> 4.03000Zang Ruochen2021-01-291-1/+1
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libio-pty-perl: upgrade 1.15 -> 1.16Zang Ruochen2021-01-291-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libfastjson: upgrade 0.99.8 -> 0.99.9Zang Ruochen2021-01-292-49/+2
| | | | | | | | 0001-fix-jump-misses-init-gcc-8-warning.patch Removed since this is included in 0.99.9. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dnsmasq: upgrade 2.82 -> 2.84Wang Mingyu2021-01-293-12/+13
| | | | | | | | Refresh the following patch: lua.patch Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* net-snmp: improve reproducibilityMingli Yu2021-01-292-2/+44
| | | | | | | | | Add a patch to fix the gap between 32bit and 64bit system when the configure option "--with-openssl=${STAGING_EXECPREFIXDIR}" passed in. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* minifi-cpp: set PSEUDO_CONSIDER_PATHSQi.Chen@windriver.com2021-01-291-0/+1
| | | | | Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* openipmi: upgrade 2.0.30 -> 2.0.31Yi Zhao2021-01-293-21/+22
| | | | | | | Refresh openipmi-remove-host-path-from-la_LDFLAGS.patch Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libgpiod: add ptestSakib Sajal2021-01-282-2/+24
| | | | | | | | Added ptest for libgpiod. Requires CONFIG_GPIO_MOCKUP kernel config to be enabled. Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gparted: upgrade 1.1.0 -> 1.2.0Andreas Müller2021-01-281-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GParted 1.2.0 (2021-01-25) Release Notes This release of GParted includes enhancements, bug fixes and language translation updates. Key changes include: Add exFAT support using exfatprogs Wait for udev change on /dev/DISK when erasing signatures Don't try to mask non-existent Systemd \xe2\x97\x8f.service Bug Fixes Add exFAT support using exfatprogs (!30) Fix gparted not launching when PS_FORMAT environment variable set (!54) Wait for udev change on /dev/DISK when erasing signatures(#83, !55) Raise minimum supported dosfstools to 3.0.18 (!57) Fix formatting directive in it.po (!58) Fix GNOME GitLab CI test job failures because of missing /dev entries (!59) Fix GitLab CI job failures following Ubuntu docker image updates (!60) Fix CentOS 7 CI test job fails because of zero sized /etc/machine-id (!62) Set default alignment to cylinder for amiga partition table (#116, !63) Don't try to mask non-existent Systemd \xe2\x97\x8f.service (#129, !64) Code Credits Code enhancements are courtesy of Mike Fleetwood, Antoine Viallon and Curtis Gedak. Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-notes-plugin: re-add 1.9.0Andreas Müller2021-01-282-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * we lost by xfce 4.16 * it is a development release but it was run tested and as soon as a stable version is released we can come back Release notes for 1.9.0 ======================= [Please note that this is a development release.] This is a development release which (finally) port the plugin to gtk3 and make it compatible with xfce 4.16. - Remove unused variable - Update deprecated autotools macros - Do not mark text with ':' after '://' as a link (bug #52) - Add support for links with scheme other than HTTP (bug #52) - Fix missing-prototypes - Create README.md. Update configure.ac.in - Add basic gitlab CI - Fix "Disabled labels on context menu are dark yellow" - Fix a few deprecation warnings - Fix make distcheck - Fix blinking image on panel - Remove commented code - Update build system - Fix make distcheck - Remove deprecated gtk stock usage - Fix build system - Continue the gtk3 port - Update URLs from goodies.x.o to docs.x.o (Bug #16171) - po: update POTFILES.in - gtk3: update css style with required changes from 3.20 - gtk3: drop libunique leftover flags and code - gtk3: Drop support for GTK+-2.0 - bump post release - Translation Updates Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-panel: upgrade 4.16.0 -> 4.16.1Andreas Müller2021-01-281-1/+1
| | | | | | | | | | | | | | | | | | | Release notes for 4.16.1 ======================== - pager: Use gobject bindings (Fixes #376) - pager: Switch to new workspaces icon name - launcher: avoid double fork - statustray: Display tooltip title of statusnotifier items as plaintext - statustray: Prevent crash when parsing properties (Fixes #379) - windowmenu: fix use-after-free in window_menu_plugin_window_item_new - Fix compilation warnings - Update `.gitignore` - Translation Updates Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-whiskermenu-plugin: upgrade 2.5.2 -> 2.5.3Andreas Müller2021-01-281-1/+1
| | | | | | | | | | | Release notes for 2.5.3 ======================= - Fix invalid command expansion with Xfce 4.14 (Issue #39) - Translation updates: Basque, Portuguese (Brazil). Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-appfinder: upgrade 4.16.0 -> 4.16.1Andreas Müller2021-01-281-1/+1
| | | | | | | | | | Release notes for 4.16.1 ======================== - Launch applications as children again Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* networkmanager: Add PACKAGECONFIG for ovsNicolas Jeker2021-01-281-1/+1
| | | | | | | | | | | | | | | Open vSwitch support is enabled by default in NetworkManager, but only useful in the context of several virtualisation environments, e.g. Xen, KVM, OpenStack and more. Therefore, the ovs PACKAGECONFIG is now disabled by default. The jansson dependency is only required for Open vSwitch and teamsdctl support in NetworkManager. As there is no libteamsdctl recipe around (and no teamsdctl PACKAGECONFIG), make it dependent on the ovs PACKAGECONFIG. Signed-off-by: Nicolas Jeker <n.jeker@gmx.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* network-manager-applet: Build without libteam supportNicolas Jeker2021-01-281-0/+2
| | | | | | | NetworkManager is curently built without libteamdctrl support, so disable it in the applet, too. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyzmq: Upgrade 21.0.1 -> 21.0.2Leon Anavi2021-01-281-1/+1
| | | | | | | | | | | Upgrade to release 21.0.2: - Fix wheels on macOS older than 10.15 (sets MACOSX_DEPLOYMENT_TARGET to 10.9, matching wheel ABI tag). Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-typed-ast: Upgrade 1.4.1 -> 1.4.2Leon Anavi2021-01-281-1/+1
| | | | | | | | | | | | | Upgrade to release 1.4.2: - Fix linker error in debug build - Fix cross compile by adjusting includes - ast27: prefix exported symbols - Add 3.9 to supported versions Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pako: Upgrade 0.2.3 -> 0.3.0Leon Anavi2021-01-281-2/+1
| | | | | | | | | | | | | | | | Upgrade to release 0.3.0 which adds support for the following package managers: - DNF (as used by RPM based distributions) - RPM-ostree (as used by Fedora CoreOS and RHEL CoreOS) - Pacman (as used by Arch based distributions) - Yum (as used by some RPM based distributions) - Zypper (as used by OpenSUSE based distributions) - APK (as used by Alpine Linux and postmarketOS) Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-portion: Add recipeLeon Anavi2021-01-281-0/+12
| | | | | | | | | | | | Portion is a Python library providing data structure and operations for intervals. It replaces python-intervals. Release 2.1.4 brings: - Much faster get, copy and | operations for IntervalDict. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-intervals: Upgrade 1.10.0 -> 1.10.0.post1Leon Anavi2021-01-281-2/+1
| | | | | | | | | | | Upgrade to release 1.10.0.post1: - IntervalDict has a .combine method to merge its keys and values with another IntervalDict. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-xmlschema: Upgrade 1.4.1 -> 1.4.2Leon Anavi2021-01-281-3/+2
| | | | | | | | | | | | | Upgrade to release 1.4.2: - Add decoding of binary datatypes (xs:hexBinary and xs:base64Binary) - Fix encoding from string values for some builtin datatypes (decimal, binary, duration and datetime) Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aenum: Upgrade 2.2.6 -> 3.0.0Leon Anavi2021-01-281-2/+1
| | | | | | | | | | | | | | | | | | | Upgrade to release 3.0.0: - Flags only list single bit names, multi-bit are aliases - error checking to go with that - getattr magic is off for AutoValue - Member creation has been redone to match Python 3.10's methods. This also allows all supported Pythons (2.7, 3.3+) to use the __set_name__ and __init_subclass__ protocols (more robustly than in aenum 2.2.5) - enum_property() has been renamed to property() (old name still available, but deprecated) - bin() replacement shows negative integers in twos-complement Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-diskcache: Upgrade 5.1.0 -> 5.2.1Leon Anavi2021-01-281-3/+2
| | | | | | | | | | Upgrade to release 5.2.1: - Install libmemcached-dev for release GitHub action Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-coverage: Upgrade 5.3.1 -> 5.4Leon Anavi2021-01-281-1/+1
| | | | | | | | | | | | | | | | | | | | | Upgrade to release 5.4: - The text report produced by coverage report now always outputs a TOTAL line, even if only one Python file is reported. This makes regex parsing of the output easier. - The skip_covered and skip_empty settings in the configuration file can now be specified in the [html] section, so that text reports and HTML reports can use separate settings. The HTML report will still use the [report] settings if there isn't a value in the [html] section. - Combining files on Windows across drives how works properly. - Fix an obscure warning from deep in the _decimal module. - Update to support Python 3.10 alphas in progress, including PEP 626: Precise line numbers for debugging and other tools. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cachetools: Upgrade 4.2.0 -> 4.2.1Leon Anavi2021-01-281-2/+1
| | | | | | | | | | | Upgrade to release 4.2.1: - Handle __missing__() not storing cache items. - Clean up __missing__() example. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-nmap: upgrade 1.4.8 -> 1.5.0Zang Ruochen2021-01-281-3/+6
| | | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ipy: upgrade 1.00 -> 1.01Zheng Ruoqin2021-01-281-2/+2
| | | | | | | | | | Version 1.01 (2020-12-01) ------------ * Update to support up to Python 3.9 Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-djangorestframework: upgrade 3.12.1 -> 3.12.2Zheng Ruoqin2021-01-281-2/+2
| | | | | | Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-custom-inherit: Upgrade 2.3.0 -> 2.3.1Leon Anavi2021-01-282-12/+10
| | | | | | | | | | | | Uprade to release 2.3.1: - Methods section is now recognized in NumPy-style docstrings License-Update: Use file LICENSE.md Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-lazy-object-proxy: Upgrade 1.5.1 -> 1.5.2Leon Anavi2021-01-281-2/+1
| | | | | | | | | | | | Upgrade to release 1.5.2: - Added Python 3.9 wheels. - Removed Python 2.7 Windows wheels (not supported on newest image with Python 3.9). Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-socketio: Upgrade 4.6.0 -> 5.0.4Leon Anavi2021-01-281-2/+1
| | | | | | | | | | | | | | | - Include error message and arguments in CONNECT_ERROR packet - Fix typos in the documentation - Updated connection options in the documentation - Update to match the JavaScript Socket.IO 3.x releases (Socket.IO v5 protocol revision) - Remove unnecessary binary argument - Remove dependency on the six package - Added version compatibility chart to README Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymisp: Upgrade 2.4.135.3 -> 2.4.137.1Leon Anavi2021-01-281-2/+4
| | | | | | | | | | | | | | | | | Upgrade to release 2.4.137.1: - Fail if a duplicate object is added to an event. - Add test case for page/limit in logs search. - Improve docstring for get_event. - Better warning if lief is outdated. - Update minimal dependency for lief in setup.py. Fetch source from the git repository to avoid extras_require issue in setup.py from the archive for this release in PyPI. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-natsort: Upgrade 7.1.0 -> 7.1.1Leon Anavi2021-01-281-1/+1
| | | | | | | | | | | | Upgrade to release 7.1.1: - Use GitHub Actions instead of Travis-CI - No longer pin testing dependencies - Correct a minor typo Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dfu-util-native: Adjust Inherit orderKhem Raj2021-01-271-1/+1
| | | | | | | Fixes dfu-util-native_0.10.bb: QA Issue: dfu-util-native: native/nativesdk class is not inherited last, this can result in unexpected behaviour. [native-last] Signed-off-by: Khem Raj <raj.khem@gmail.com>
* autoconf-2.13-native,xserver-xorg-cvt-native: Move inheriting native to the endKhem Raj2021-01-272-2/+2
| | | | | | | Should fix QA Issue: xserver-xorg-cvt-native: native/nativesdk class is not inherited last, this can result in unexpected behaviour. [native-last] Signed-off-by: Khem Raj <raj.khem@gmail.com>