aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2022-07-14python3-pytest-forked: loosen dependsross/picobuildRoss Burton
2022-07-14python3-path: add missing build dependenciesRoss Burton
Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-07-14python3-pyzmq: add missing build dependencyRoss Burton
Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-07-14python3-pytest-helpers-namespace: add missing build dependenciesRoss Burton
Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-07-14python3-ansi2html: fix DEPENDSRoss Burton
There's no need to depend on python3-toml-native, but this does need python3-setuptools-scm-git-archive-native. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-07-14python3-pytest-html: fix DEPENDS, don't depend on pipRoss Burton
Add a DEPENDS on ptyhon3-setuptools-scm-git-archive-native as the setup.py uses it. In the future we'll have a Python building tool which validates build requirements, so remove pip from those dependencies as it shouldn't depend on a specific build tool being present. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-07-14python3-pyrad: fix build system specificationRoss Burton
The upstream pyproject.toml says it needs to be built with the Poetry frontend, but that's deprecated behaviour and it should use the Poetry Core API instead. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-07-14python3-simpleeval: remove 'build' build dependencyRoss Burton
In the future we'll have a Python building tool which validates build requirements. No package should require a specific tool to be present (not even used, just present), so remove the dependency on 'build'. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-07-14python3-cbor2: add missing build dependencyRoss Burton
The build doesn't generate the right filenames without this package. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-07-13poco: upgrade 1.11.3 -> 1.12.0Andrej Valek
- switch from PCRE -> PCRE2 - add Prometheus library - add option to enable/disable ActiveRecord (disabled by default) Signed-off-by: Andrej Valek <andrej.valek@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-12nftables: Upgrade 1.0.2 -> 1.0.4Alex Kiernan
Drop backported patch, switch PACKAGECONFIG assignment to ?= (matches current practice), add in editline, linenoise CLI options and xtables option. Switch to --disable-python when building without python to avoid a configure time warning. We can drop UPSTREAM_CHECK_REGEX as the version no longer gets confused by the 0.099 version which exists. Fix buildpaths warning by switching to setuptools and add dependency on ${PN}-python to ${PN}-ptest so that the embedded paths in the compiled python files are correct. Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-12protobuf-c: update to 1.4.1 fix CVE-2022-33070Wentao Zhang
Signed-off-by: Wentao Zhang <wzhang4@ala-lpd-susbld2.wrs.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-12python3-ansi2html: Upgrade 1.7.0 -> 1.8.0Leon Anavi
Upgrade to release 1.8.0: - style.py: Drop unused CSS class .bold - Bring back putting a rendered man page into release archives - Migrate from mock to unittest.mock of Python >=3.3 - Fix for ANSI color codes that include blank values - Added py.typed file - style.py: Get CSS class .inv_foreground in sync with .body_foreground - Fix --input-encoding= regression added in PR #143 + related tests - Add ability to also recognize colons in ANSI escapes - Fixes to respect bright colors in palette Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-12python3-toolz: Upgrade 0.11.2 -> 0.12.0Leon Anavi
Upgrade to release 0.12.0: - Add apply - Support newer Python versions--up to Python 3.11-alpha - Improve warning when using toolz.compatibility - Improve documentation - Improve performance of merge_with - Improve import times - Auto-upload new releases to PyPI Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-12libencode-perl: upgrade 3.17 -> 3.18wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-12libcrypt-openssl-rsa-perl: upgrade 0.32 -> 0.33wangmy
0001-Fix-for-Issue-31.patch removed since it's included in 0.33 Changelog: ========= - Update for windows github CI - Remove duplicit 'LICENSE' key - Remove EUMM Remove version check - #31 by removing reference to RSA_SSLV23_PADDING (removed from OpenSSL starting from v3.0.0) - support passphase protected private key load - fix 'unsupported encryption' error on old library versions - Clarify croak message for missing passphrase on older cyphers - More structs opaqued in LibreSSL 3.5 - Use a macro for dealing with older SSL lacking macros - more CI fixups. Drop testing for 5.10 and 5.8. Something is broken upstream. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-12liburing: upgrade 2.1 -> 2.2wangmy
0001-test-Use-syscall-wrappers-instead-of-using-syscall-2.patch removed since it's included in 2.2. License-Update: Add "kernel version dependency" Add affect of "ulimit settings" Changelog: =========== - Support non-libc builds. - Optimized syscall handling for x86-64/x86/aarch64. - Enable non-lib function calls for fast path functions. - Add support for multishot accept. - io_uring_register_files() will set RLIMIT_NOFILE if necessary. - Add support for registered ring fds, io_uring_register_ring_fd(), reducingthe overhead of an io_uring_enter() system call. - Add support for the message ring opcode. - Add support for newer request cancelation features. - Add support for IORING_SETUP_COOP_TASKRUN, which can help reduce the overhead of io_uring in general. Most applications should set this flag, see the io_uring_setup.2 man page for details. - Add support for registering a sparse buffer and file set. - Add support for a new buffer provide scheme, see io_uring_register_buf_ring.3 for details. - Add io_uring_submit_and_wait_timeout() for submitting IO and waiting for completions with a timeout. - Add io_uring_prep_{read,write}v2 prep helpers. - Add io_uring_prep_close_direct() helper. - Add support for SQE128 and CQE32, which are doubly sized SQE and CQE rings. This is needed for some cases of the new IORING_OP_URING_CMD, notably for NVMe passthrough. - ~5500 lines of man page additions, including adding ~90 new man pages. - Synced with the 5.19 kernel release, supporting all the features of 5.19 and earlier. - 24 new regression test cases, and ~7000 lines of new tests in general. - General optimizations and fixes. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11libadwaita: upgrade 1.1.1 -> 1.1.2wangmy
Changelog: ========== - AdwLeaflet - Fix child sizing with fold-threshold-policy=natural - AdwStyleManager - Correctly handle removing a GdkDisplay - AdwSwipeTracker - Fix a memory leak - Fix high contrast setting name when using a portal - AdwTabBar - Fix middle click when inside GtkWindowHandle - Stylesheet - Fix action row title and subtitle inside GtkHeaderBar - Fix progressbar.osd overriding text color - Ensure active states consistently work with touchscreens - Fix GtkDropDown visual glitch when pressed on touchscreen - Translation updates: - Chinese (Taiwan) - Nepali Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11gnome-bluetooth: upgrade 42.1 -> 42.2wangmy
This version fixes duplicate devices appearing when bluetoothd restarts, as well as the discovery not being updated correctly in that same situation. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11gjs: upgrade 1.72.0 -> 1.72.1wangmy
Changelog: =========== - Various fixes ported from the development branch. - Closed bugs and merge requests: * Compilation error: call to deleted function 'js_value_to_c' * jsapi-util-strings: Ignore locale to compute the upper case of a char (i.e. fix implicit properties on Turkish locale) * Fix memory leak when passing a "transfer none" GBytes parameter to a native function * arg-cache: Do not leak an interface info structures on Callbacks * test-ci: Ignore safe directory errors on CI Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11evince: upgrade 42.2 -> 42.3wangmy
Changelog: ========== shell: * Disconnect signal handler to prevent invalid read Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11glmark2: Build with mesonAndreas Müller
Building with waf fails here with: | /bin/sh: line 1: /usr/bin/wayland-scanner: No such file or directory | | /bin/sh: line 1: /usr/bin/wayland-scanner: No such file or directory Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11opencv: Link with libatomic on rv32Khem Raj
Fixes undefined reference to `__atomic_fetch_add_8' Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11python3-unidiff: Upgrade 0.7.3 -> 0.7.4Leon Anavi
Upgrade to release 0.7.4: - Fixed git diff parsing issues (filename with spaces, only one added/deleted file). Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11python3-networkx: Upgrade 2.7.1 -> 2.8.4Leon Anavi
Upgrade to release 2.8.4: - Clean up maximal_independent_set tests - MAINT: Cleanup centrality module, remove unused variables - importorskip scipy instead of numpy for total spanning tree - Add initial_graph parameter to scale_free_graph and deprecate create_using - Add docstring example for attr transfer to linegraph. - Update ISMAGS.analyze_symmetry docstring. - Add default value p=2 for minkowski distance metric. - Update inline code to inline math in docstring - Update multigraph docstrings to reflect remove_edges_from behavior. - Update simple_cycles docstring w/ yields and examples - Chromatic polynomial - Catch ':' explicitly while working with pydot - Revert "Add workaround for pytest failures on 3.11b2" - Default to lightmode for documentation - Dont compute all biconnected components in is_biconnected() - Some more changes to make pytest-randomly happy - Add durations flag to coverage run on CI. - Recover order of layers in multipartite_layout when layers are sortable - Update doc requirements - Touchups to MG and MDG edges docstrings. - Add PendingDeprecation for pydot - Add example of topo_order kwarg to dag_longest_path Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11python3-email-validator: Upgrade 1.1.3 -> 1.2.1Leon Anavi
Upgrade to release 1.2.1: - Rejecting domains with NULL MX records (when deliverability checks are turned on). - Rejecting unsafe unicode characters. (Some of these checks you should be doing on all of your user inputs already!) - Rejecting most special-use reserved domain names. A new test_environment option is added for using @*.test domains. - Some fixes in the tests. - example and example.com/net/org are removed from the special-use domains list. - SPECIAL_USE_DOMAIN_NAMES is now a documented part of the API (and it is a list instead of a tuple) - New module-level attributes ALLOW_SMTPUTF8, CHECK_DELIVERABILITY, TEST_ENVIRONMENT, and DEFAULT_TIMEOUT can be used to change the default values of the keyword arguments. - Travis CI is updated to test from Python 3.6 forward, dropping 3.5. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11python3-coverage: Upgrade 6.3.2 -> 6.4.1Leon Anavi
Upgrade to release 6.4.1: - Greatly improved performance on PyPy, and other environments that need the pure Python trace function. - The conditions for using tomllib from the standard library have been made more precise, so that 3.11 alphas will continue to work. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11python3-tornado: Upgrade 6.1 -> 6.2Leon Anavi
Upgrade to release 6.2: - The minimum supported Python version is now 3.7. - Wheels are now published with the Python stable ABI (abi3) for compatibility across versions of Python. - SSL certificate verfication and hostname checks are now enabled by default in more places (primarily in client-side usage of SSLIOStream). - Various improvements to type hints throughout the package. - CI has moved from Travis and Appveyor to Github Actions. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11python3-humanize: Upgrade 4.2.0 -> 4.2.3Leon Anavi
Upgrade to release 4.2.3: - Update annotations, docs, and tests: naturaltime can also accept a timedelta - Update annotations: naturadelta and naturaltime can also accept a float - Rename Arabic locale from ar_SA to ar to enable fallbacks - Use %d for year translations, convert to string for intcomma after - Fix intcomma with ndigits=0 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-11redis: upgrade 7.0.0 to 7.0.2Changqing Li
Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-08openvpn: distribute sample-config-filesAlex Stewart
The openvpn tarball has additional sample config files which are generally useful to users, and which are typically distributed in other distros' openvpn packages. Include these sample configs in the OE recipe. Signed-off-by: Bill Pittman <bill.pittman@ni.com> Rebased to openvpn_2.5.7. Signed-off-by: Alex Stewart <alex.stewart@ni.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-08libsdl: The libsdl and libsdl2 are not virtualAndrew Davis
There is only one provider, these should not be virtual. Signed-off-by: Andrew Davis <afd@ti.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07fontforge: Use alternate way to detect libmKhem Raj
libm is folded into libc in latest glibc and build fails to detect it with given cmake mechanism, therefore use slighly different mechanism which work on hosts with or without libm Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07netdata: upgrade 1.35.0 -> 1.35.1wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07python3-pychromecast: Upgrade 12.1.3 -> 12.1.4Leon Anavi
Upgrade to release 12.1.4 and add runtime dependencies: - Improve timeout logs - pin to protobuf v3 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07python3-marshmallow: Upgrade 3.15.0 -> 3.17.0Leon Anavi
Upgrade to release 3.17.0: - Support serialization as float in TimeDelta field - Add messages_dict property to ValidationError to facilitate type checking Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07python3-tabulate: Upgrade 0.8.9 -> 0.8.10Leon Anavi
Upgrade to release 0.8.10: - Bug fixes - Column width parameter License-Update: update years Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07python3-lxml: upgrade 4.9.0 -> 4.9.1Xu Huan
Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07python3-grpcio: upgrade 1.45.0 -> 1.47.0Xu Huan
0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch refreshed for new version. Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07python3-grpcio-tools: upgrade 1.46.3 -> 1.47.0zhengruoqin
0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch refreshed for new version. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07python3-google-auth: upgrade 2.8.0 -> 2.9.0zhengruoqin
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07python3-google-api-core: upgrade 2.8.0 -> 2.8.2zhengruoqin
Changelog: ========= Bug Fixes --------- deps: allow protobuf < 5.0.0 (#400) (8f73d2e) drop support for grpc-gcp (#401) (5da6733) Documentation ------------- fix changelog header to consistent size (#394) (ac266e9) Fix typo in the BackgroundConsumer docstring (#395) (0eb727f) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07python3-engineio: upgrade 4.3.2 -> 4.3.3zhengruoqin
Changelog: ========== Handle ASGI lifespan when running with a secondary ASGI app #284 Update deprecated usage of asyncio.wait() #281 Better handling of queued WebSocket messages in uWSGI #256 Gracefully fail to decode empty packets #269 Only attempt to set an async signal handler once #276 Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07python3-awesomeversion: upgrade 22.5.2 -> 22.6.0Xu Huan
Changelog: =========== Handle ValueError for possible blank values when casting to int Remove deprecated method AwesomeVersion.ensure_strategy Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07python3-autobahn: upgrade 22.5.1 -> 22.6.1Xu Huan
Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07python3-pybind11: upgrade 2.8.1 -> 2.9.2Pascal Bach
Signed-off-by: Pascal Bach <pascal.bach@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07libqmi: upgrade 1.30.4 -> 1.30.8Adrian Freihofer
Update to latest stable version: 1.30.8 * New request/response/indications: ** dms: new 'Foxconn FCC authentication v2' request/response. 1.30.6 * build: ** meson: fix 'export_packages' in GIR setup. * libqmi-glib: ** net-port-manager: use unaligned netlink attribute length. Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07poppler: upgrade 22.06.0 -> 22.07.0wangmy
Changelog: ========== core: * Fix crash when filling in forms in some files. Issue #1258 * Fix first lines of Annotations sometimes being cut off. Issue #1246 * Signatures: Don't crash if the signature doesn't have a common name * CairoFontEngine: increment font_face reference when retrieving from the cache * Add ToUnicode support for lessorequalslant and greaterorequalslant glib: * Add support for stamp annotation build system: * Tweaks on how gperf is run Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07phoronix-test-suite: upgrade 10.8.3 -> 10.8.4wangmy
Changelog: =========== pts-core: Allow sub-folders within PTS_EXTRA_SYSTEM_LOGS_DIR when uploading to Phoromatic server pts-core: Fix TOTAL_LOOP_TIME handling pts-core: openSUSE external dependency handling fixes phodevi: Support for reporting video BIOS version phodevi: Budgie desktop version detection phodevi: Avoid deprecated wmic usage on Windows phoromatic: Input sanitization updates in the result viewer Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-07-07pegtl: upgrade 3.2.5 -> 3.2.6wangmy
License-Update: Copyright year updated to 2022. Changelog: ========= Made unwind() optional for parse tree nodes. Fixed demangle() for MSVC, again. Fixed demangle() for GCC 12. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>