summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* gd: upgrade 2.3.1 -> 2.3.2zhengruoqin2021-03-161-1/+1
| | | | | Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fio: upgrade 3.25 -> 3.26zangrc2021-03-161-1/+1
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dialog: upgrade 1.3-20210117 -> 1.3-20210306zangrc2021-03-161-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fetchmail: upgrade 6.4.16 -> 6.4.17zangrc2021-03-161-1/+1
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dovecot: upgrade 2.3.13 -> 2.3.14zangrc2021-03-161-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dbus-broker: upgrade 26 -> 27Luca Boccassi2021-03-151-1/+1
| | | | | | | See full changelog https://github.com/bus1/dbus-broker/releases/tag/v27 Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* breakpad: Do not fallback to android implementation for ↵Khem Raj2021-03-153-48/+58
| | | | | | | | | getcontext/setcontext on musl with musl, it tried to use local implementation which is geared towards android and does not compile with musl/linux Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libxmlb: upgrade to 0.3.0Ross Burton2021-03-151-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* neon: Add ptestAditya.Tayade2021-03-152-1/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | Reused below test suites from neon source package: BASIC_TESTS: auth basic request session socket string-tests stubs uri-tests util-tests DAV_TESTS: acl3744 lock oldacl props xml xmlreq Overall execution time of above test suite is approximately 15sec. Signed-off-by: Neetika.Singh <Neetika.Singh@kpit.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-grpcio,python3-grpcio-tools: Enable build on ppc64/glibcKhem Raj2021-03-143-5/+5
| | | | | | We can compile abseil-cpp now for ppc64 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sentry-sdk: update to 1.0.0Oleksandr Kravchuk2021-03-141-1/+2
| | | | | Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-robotframework: update to 4.0Oleksandr Kravchuk2021-03-141-2/+2
| | | | | Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-prompt-toolkit: Upgrade 3.0.16 -> 3.0.17Leon Anavi2021-03-141-1/+1
| | | | | | | | | | | Upgrade to release 3.0.17: - Accept `style` parameter in `print_container` utility. - On Windows, handle Control-Delete. - Avoid leaking file descriptors in SSH server. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-croniter: Upgrade 1.0.6 -> 1.0.8Leon Anavi2021-03-141-1/+1
| | | | | | | | | | | Upgrade to release 1.0.8: - Update _expand to lowercase each component of the expression - Fix _expand to reject int literals with underscores - Remove a debug statement to make flake8 happy Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyscaffold: Upgrade 3.3.1 -> 4.0Leon Anavi2021-03-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 4.0: - Cookiecutter, Django and Travis extensions extracted to their own repositories - Support for Python 3.4 and 3.5 dropped - Dropped deprecated requirements.txt file - Added support for global configuration (avoid retyping common putup's options) - PyScaffold is no longer a build-time dependency, it just generates the project structure - Removed contrib subpackage, vendorized packages are now runtime dependencies - setuptools_scm is included by default in setup.cfg, setup.py and pyproject.toml - API changed to use pyscaffold.operations instead of integer flags - Allow string.Template and callable as file contents in project structure - Extract file system functions from utils.py into file_system.py - Extract identification/naming functions from utils.py into identification.py - Extract action related functions from api/__init__.py to actions.py - helpers.{modify,ensure,reject} moved to structure.py - helpers.{register,unregister} moved to actions.py - New extension for automatically creating virtual environments (--venv) - Added instructions to use pip-tools to docs - pre-commit extension now attempts to install hooks automatically - A nice message is now displayed when PyScaffold finishes running (actions.report_done) - Removed mutually exclusive argparse groups for extensions - Progressive type annotations adopted in the code base together with mypy linting - Simplified isort config - pyproject.toml and isolated builds adopted by default - Added comment to setup.cfg template instructing about extra links - Generate tox.ini by default - Replace pkg_resources with importlib.{metadata,resources} and packaging - Adopt PEP 420 for namespaces - Adopt SPDX identifiers for the license field in setup.cfg - Removed deprecated log.configure_logger - Add links to issues and pull requests to changelog - Add an experimental --interactive mode (inspired by git rebase -i) - Reorganise the FAQ (including version questions previously in Features) - Updated setuptools and setuptools_scm dependencies to minimal versions 46.1 and 5, respectively - Adopted no-guess-dev version scheme from setuptools_scm (semantically all stays the same, but non-tag commits are now versioned LAST_TAG.post1.devN instead of LAST_TAG.post0.devN) - Fix problem of not showing detailed log with --verbose if error happens when loading extensions Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pako: Upgrade 0.3.0 -> 0.3.1Leon Anavi2021-03-141-1/+1
| | | | | | | | | | Upgrade to release 0.3.1: - Adds an optional no-confirm flag particularly for use in non-interactive setups. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-waitress: Upgrade 1.4.4 -> 2.0.0Leon Anavi2021-03-141-2/+1
| | | | | | | | | | | | | | | | | | Upgrade to release 2.0.0: - Fix a crash on startup when listening to multiple interfaces. - Waitress no longer attempts to guess at what the server_name should be for a listen socket, instead it always use a new adjustment/argument named server_name. - Allow tasks to notice if the client disconnected. - Drop Python 2.7 and 3.5 support - The server now issues warning output when it there are enough open connections (controlled by "connection_limit"), that it is no longer accepting new connections. This situation was previously difficult to diagnose. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* zstd: remove the recipe since it moved to oe-coreRandy MacLeod2021-03-142-66/+0
| | | | | Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* breakpad: Exclude for ppc64Khem Raj2021-03-142-2/+4
| | | | | | | It does not build, errors out like ../git/src/client/linux/dump_writer_common/raw_context_cpu.h:48:2: error: #error "This code has not been ported to your platform yet." Signed-off-by: Khem Raj <raj.khem@gmail.com>
* kexec-tools-klibc: Use SITEINFO_BITS to construct includepathKhem Raj2021-03-141-12/+3
| | | | | | This helps getting rid of per arch overrides Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ssiapi: Disable for ppc64Khem Raj2021-03-142-0/+2
| | | | | | | Internal boost headers are missing ppc64 support ssiapi.1.3.0/lib/boost/smart_ptr/detail/sp_counted_base.hpp:66:11: fatal error: boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp: No such file or directory Signed-off-by: Khem Raj <raj.khem@gmail.com>
* breakpad: Upgrade to latestKhem Raj2021-03-148-164/+49
| | | | | | | | License-Update: added APSL 2.0 and BSD-3-Clause and libunwind license Forward patches as needed and drop patches applied upstream Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xterm: upgrade 362 -> 366Randy MacLeod2021-03-131-2/+2
| | | | | Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Fix build on ppc64leKhem Raj2021-03-132-0/+19
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mariadb: Fix build on musl/ppcKhem Raj2021-03-132-0/+52
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* abseil-cpp: Fix build on musl and ppc64Khem Raj2021-03-132-0/+95
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Fix cross build on ppc64leKhem Raj2021-03-132-3/+22
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gperftools: Update SRCREV to point to 2.9.1 releaseKhem Raj2021-03-137-59/+79
| | | | | | | | | | Refresh patches Drop upstreamed patch 0001-profile-handler-Specify-libc-specific-thread_id.patch Fix build on musl/ppc Disable heap and cpu profilers on ppc64le/musl since it does not build stacktrace utility yet Signed-off-by: Khem Raj <raj.khem@gmail.com>
* oprofile: Fix build on muslKhem Raj2021-03-132-0/+18
| | | | | | MAX_INPUT is defined in linux/limits.h, therefore include it Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ltrace: Fix build on ppc64le/muslKhem Raj2021-03-132-0/+41
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ply: Disable on ppc64Khem Raj2021-03-122-3/+3
| | | | | | Port does not exist Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ply: upgrade to latestKhem Raj2021-03-121-1/+3
| | | | | | Set PV 2.1.1+git Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xrdp: Upgrade to 0.9.15Khem Raj2021-03-125-90/+24
| | | | | | | Remove upstreamed patches Add patch to support ppc64le Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libnma: Disbale vapiKhem Raj2021-03-121-2/+3
| | | | | | introspection is not supported for ppc64 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs: Set correct nodejs arch for ppc64leKhem Raj2021-03-121-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* abseil-cpp: reorder content of packagesJan Kaisrlik2021-03-121-3/+2
| | | | | | | | move cmake target files to -dev package and remove check for empty package since package contains shared libraries Signed-off-by: Jan Kaisrlik <ja.kaisrlik@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* czmq: Conflict resolution for sha1.hWang Mingyu2021-03-121-0/+4
| | | | | | | libmd(oe-core) also uses the doc 'sha1.h', so package it in own subdirs of czmq. Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cryptsetup: depend on new util-linux-uuid to break cycleLuca Boccassi2021-03-121-1/+1
| | | | | | | | | | | | | | | | | The util-linux recipe in Poky has been split, and libuuid is separate now: http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=d42487bf52310d095178e480b7ddec2666471009 This allows to build util-linux with cryptsetup, for native dm-verity support. The main cryptsetup build needs libuuid and not the full util-linux, so switch the build-dependency over, thus allowing users to enable the cryptsetup util-linux's PACKAGECONFIG. The libblkid dependency is handled individually by the crypsetup's PACKAGECONFIG option. Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libhugetlbfs: Fix ARCH setting for ppc64 LEKhem Raj2021-03-121-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ufs-utils: Upgrade to 1.9Khem Raj2021-03-123-58/+67
| | | | | | Fix build with ppc64 while here Signed-off-by: Khem Raj <raj.khem@gmail.com>
* openh264: Disable building for ppc64leKhem Raj2021-03-112-0/+2
| | | | | | Needs porting to ppc Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-grpcio,python3-grpcio-tools: Disable for ppc64leKhem Raj2021-03-113-0/+9
| | | | | | abseil-cpp does not have support for ppc64le yet Signed-off-by: Khem Raj <raj.khem@gmail.com>
* waf-cross-answers: Add powerpc64le versionKhem Raj2021-03-111-0/+41
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pillow: 8.1.0 -> 8.1.2Kai Kang2021-03-111-1/+1
| | | | | | | | | | | | | | | | | 8.1.2 fixes: * CVE-2021-27921 * CVE-2021-27922 * CVE-2021-27923 8.1.1 fixes: * CVE-2021-25289 * CVE-2021-25290 * CVE-2021-25291 * CVE-2021-25292 * CVE-2021-25293 Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-incremental: Upgrade 17.5.0 -> 21.3.0Leon Anavi2021-03-111-2/+1
| | | | | | | | | | | | | | Upgrade to release 21.3.0: - The output of incremental is now compatible with Black - Incremental now properly supports PEP 440-compliant dev, rc, post suffixes - Incremental now properly supports PEP 440-compliant post releases 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-pychromecast: Upgrade 8.1.0 -> 9.1.1Leon Anavi2021-03-111-1/+1
| | | | | | | | | | | | | | | Upgrade to release 9.1.1: - BREAKING CHANGE: Update discovery to support a list of known hosts - Add HostBrowser.update_hosts - Handle audio groups removed from known host - Bump pylint from 2.7.1 to 2.7.2 - Remove useless pylint and flake8 directives 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-huey: Upgrade 2.3.0 -> 2.3.1Leon Anavi2021-03-111-2/+1
| | | | | | | | | | | | | | Upgrade to release 2.3.1: - Add SIGNAL_INTERRUPTED to signal when a task is interrupted when a consumer exits abruptly. - Use the Huey.create_consumer() API within the Django management command, to allow Django users to customize the creation of the Consumer instance. 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-prettytable: Upgrade 2.0.0 -> 2.1.0Leon Anavi2021-03-111-1/+1
| | | | | | | | | | | | | | | Upgrade to release 2.1.0: - Support formatting options in get_json_string() - Replace setuptools/pkg_resources with importlib.metadata for getting version - Docs: Add documentation for align, max_width, etc. - Docs: Remove reference to Python 2.x print statement in README - Docs: Update get_html_string with thead and tbody tags 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-ruamel-yaml: Upgrade 0.16.12 -> 0.16.13Leon Anavi2021-03-111-3/+2
| | | | | | | | | | | | | | | | | Upgrade to release 0.16.13: - fix: could not update() CommentedMap with keyword arguments - fix: unable to dump mutated TimeStamp objects - fix: unable to addd comment without starting space - fix: recursive call to walk_tree not preserving all params - a None value in a flow-style sequence is now dumped as `null` instead of `!!null ''` 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>
* quagga: Update SRC_URIMingli Yu2021-03-111-1/+1
| | | | | | | | | Update the SRC_URI as the previous is unaccessible to fix the below warning: WARNING: quagga-1.2.4-r0 do_fetch: Failed to fetch URL https://download.savannah.gnu.org/releases/quagga/quagga-1.2.4.tar.gz;, attemptin MIRRORS if available Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>