Commit Graph

22170 Commits

Author SHA1 Message Date
Changqing Li
a0f7710fe2 python3-psutil: fix test failure
fix serval failure of "python3 -m psutil.tests"

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Leon Anavi
aab5ca2175 python3-coverage: Upgrade 6.3 -> 6.3.2
Upgrade to release 6.3.2:

- Fix: adapt to pypy3.9's decorator tracing behavior. It now
  traces function decorators like CPython 3.8: both the @-line
  and the def-line are traced.
- Debug: added pybehave to the list of Diagnostics: coverage debug
  and --debug options
- Fix: show an intelligible error message if
  --concurrency=multiprocessing is used without a configuration file

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Leon Anavi
36bfb31674 python3-cmd2: Upgrade 2.3.3 -> 2.4.0
Upgrade to release 2.4.0:

- Fixed issue where tab completion was quoting argparse flags in
  some cases.
- Added broader exception handling when enabling clipboard
  functionality via pyperclip.
- Added PassThroughException to __init__.py imports.
- cmd2 now uses pyreadline3 when running any version of Python
  on Windows
- Improved memory usage in certain use cases of tables
  (e.g. nested colored tables)
- Deleted cmd2.fg and cmd2.bg which were deprecated in 2.3.0.
  Use cmd2.Fg and cmd2.Bg instead.

License-Update: Update years

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Leon Anavi
4d57f2a8be python3-langtable: Upgrade to release 0.0.57
Upgrade to release 0.0.57:

- Get translation changes from CLDR
- Add more translations from CLDR
- Replace "ibus/cangjie" with "ibus/table:cangjie"
- Updates for Sami languages
- Updates for Finnish keyboard layouts

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Leon Anavi
4eeaf0b550 python3-unidiff: Upgrade 0.7.0 -> 0.7.3
Upgrade to release 0.7.3:

- Fixed RE_BINARY_DIFF regex to make it a raw string
- Fixed issue when parsing git diff header generated with
  --no-prefix
- Improved git added/deleted file detection
- Added newline optional param when parsing from_filename

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Leon Anavi
91704ff653 python3-pandas: Upgrade 1.4.0 -> 1.4.1
Upgrade to release 1.4.1:

- Regression in Series.mask() with inplace=True and PeriodDtype and
  an incompatible other coercing to a common dtype instead of
  raising
- Regression in assert_frame_equal() not respecting check_flags=False
- Regression in DataFrame.loc() raising ValueError when indexing
  (getting values) on a MultiIndex with one level
- Regression in Series.fillna() with downcast=False incorrectly
  downcasting object dtype
- Regression in api.types.is_bool_dtype() raising an AttributeError
  when evaluating a categorical Series
- Regression in DataFrame.iat() setting values leading to not
  propagating correctly in subsequent lookups
- Regression when setting values with DataFrame.loc() losing Index
  name if DataFrame was empty before
- Regression in join() with overlapping IntervalIndex raising an
  InvalidIndexError
- Regression when setting values with Series.loc() raising with all
  False indexer and Series on the right hand side
- Regression in read_sql() with a DBAPI2 connection that is not an
  instance of sqlite3.Connection incorrectly requiring SQLAlchemy
  be installed
- Regression in DateOffset when constructing with an integer
  argument with no keywords (e.g. pd.DateOffset(n)) would behave
  like datetime.timedelta(days=0)
- Fixed segfault in DataFrame.to_json() when dumping tz-aware
  datetimes in Python 3.10
- Stopped emitting unnecessary FutureWarning in
  DataFrame.sort_values() with sparse columns
- Fixed window aggregations in DataFrame.rolling() and
  Series.rolling() to skip over unused elements
- Fixed builtin highlighters in Styler to be responsive to NA with
  nullable dtypes
- Bug in apply() with axis=1 raising an erroneous ValueError
- Reverted performance speedup of DataFrame.corr() for
  method=pearson to fix precision regression

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Leon Anavi
2ffdf3c340 python3-bitarray: Upgrade 2.3.6 -> 2.3.7
Upgrade to release 2.3.7:

- add optional step argument to `.count()` method
- add tests

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Leon Anavi
3b64db4722 python3-ordered-set: Upgrade 4.0.2 -> 4.1.0
Upgrade to release 4.1.0:

- Packaged using flit. Wheels now exist, and setuptools is no
  longer required.
- This package now has a typical package structure, instead of
  being a single module. The code is in ordered_set/__init__.py
  instead of ordered_set.py.
- There is an ordered_set/py.typed so that type checkers know
  about the types.
- Use the type aliases SetLike[T] and OrderedSetInitializer[T] to
  simplify some types.
- Updated the way overloaded type signatures are written to what
  MyPy currently expects.
- Minimum Python version is 3.7.

License-Update: Update years

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Xu Huan
d076ac1d8f python3-flask: upgrade 2.0.2 -> 2.0.3
changelog:
===============================================================================
-The test client's as_tuple parameter is deprecated and will be removed in
Werkzeug 2.1. It is now also deprecated in Flask, to be removed in Flask 2.1,
while remaining compatible with both in 2.0.x. Use response.request.environ
instead.
-Fix type annotation for errorhandler decorator.
-Revert a change to the CLI that caused it to hide ImportError tracebacks when
importing the application.
-app.json_encoder and json_decoder are only passed to dumps and loads if they
have custom behavior. This improves performance, mainly on PyPy.
-Clearer error message when after_this_request is used outside a request
context.

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Xu Huan
76cdfe5531 python3-autobahn: upgrade 21.11.1 -> 22.1.1
Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Tim Orling
1c53fcca6e python3-test-generator: drop recipe
python3-nose still contains Python 2 code which causes errors in
do_compile when using bdist_wheel or PEP-517 packaging.

Like nose, test-generator has not been touched since 2016.

Drop this recipe unless someone fixes the issues in python3-nose

[YOCTO #14638]

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Tim Orling
c720dc971b python3-wheel: drop; moved to oe-core
Because of layer priority, this recipe must be dropped before a build
with the new PEP-517 packaging can proceed due to dependency loops.

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Leon Anavi
3b481faaa6 python3-click: Upgrade 8.0.3 -> 8.0.4
Upgrade to release 8.0.4:

- open_file recognizes Path("-") as a standard stream, the same as
  the string "-".
- The option and argument decorators preserve the type annotation
  of the decorated function.
- A callable default value can customize its help text by
  overriding __str__ instead of always showing (dynamic).
- Fix a typo in the Bash completion script that affected file and
  directory completion. If this script was generated by a previous
  version, it should be regenerated.
- Fix typing for echo and secho file argument.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Leon Anavi
aa294ca1aa python3-distro: Upgrade 1.6.0 -> 1.7.0
Upgrade to release 1.7.0:

- Dropped support for EOL Pythons 2.7, 3.4 and 3.5
- Dropped support for LSB and uname back-ends when --root-dir is
  specified
- Moved distro.py to src/distro/distro.py
- Documented that distro.version() can return an empty string on
  rolling releases
- Documented support for Python 3.10
- Added official support for Rocky Linux distribution
- Added a shebang to distro.py to allow standalone execution
- Added support for AIX platforms
- Added compliance for PEP-561
- Fixed include_uname parameter oversight
- Fixed crash when uname -rs output is empty
- Fixed Amazon Linux identifier in distro.id() documentation
- Fixed OpenSuse >= 15 support
- Fixed encoding issues when opening distro release files
- Fixed linux_distribution regression

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Xu Huan
87ae20aa98 python3-alembic upgrade 1.7.5 -> 1.7.6
License-Update:
year updated to 2022

changelog:
===============================================================================
Add a new command alembic ensure_version, which will ensure that the Alembic
version table is present in the target database, but does not alter its
contents. Pull request courtesy Kai Mueller.

Fixed regression where usage of a with_variant() datatype in conjunction
with the existing_type option of op.alter_column() under batch mode would
lead to an internal exception.

Implemented support for recognizing and rendering SQLAlchemy “variant” types
going forward into SQLAlchemy 2.0, where the architecture of “variant”
datatypes will be changing.

Added a rule to the MySQL impl so that the translation between JSON / LONGTEXT
is accommodated by autogenerate, treating LONGTEXT from the server as
equivalent to an existing JSON in the model.

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-02-24 08:30:26 -08:00
Zheng Ruoqin
44a810f34e poppler: upgrade 22.01.0 -> 22.02.0
Changelog:
=========
core:
 * Signature: Add a way to detect unsigned FormFieldSignature
 * Signature: Suport background image when using left and right text
 * Signature: Fix path where to search for Firefox NSS in Windows
 * Signature: Fix NSS code to work correctly in Windows/Android
 * Count only signature fields in PDFDoc::getNumSignatureFields
 * Minor code improvements

qt:
 * Allow signing unsigned signature fields
 * Allow passing a background image for the signature when signing
 * Allow passing the document password when signing
 * Fix leftFontSize being ignored when signing

glib:
 * try with utf8 password if latin1 fails
 * New method for getting all signature fields of a document
 * Fix compile with MSVC

utils:
 * pdfsig: Fix compile with MSVC

build system:
         * Fix NSS cmake check for MSVC

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-23 09:25:19 -08:00
Zheng Ruoqin
e40eb83ded pugixml: upgrade 1.11.4 -> 1.12
License-Update: year updated to 2022.

Changelog:
=========
Bug fixes:
----------
-Fix a bug in xml_document move construction when the source of the move is empty
-Fix const-correctness issues with iterator objects to support C++20 ranges

XPath improvements:
-------------------
-Improved detection of overly complex queries that may result in stack overflow
 during parsing

Compatibility improvements:
--------------------------
-Fix Cygwin support for DLL builds
-Fix Windows CE support
-Add NuGet builds and project files for VS2022

Build system changes:
--------------------
-All CMake options now have the prefix PUGIXML_. This may require changing
 dependent build configurations.
-Many build settings are now exposed via CMake settings, most notably
 PUGIXML_COMPACT and PUGIXML_WCHAR_MODE can be set without changing pugiconfig.hpp

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-23 09:25:19 -08:00
Zheng Ruoqin
eb62c5af59 postgresql: upgrade 14.1 -> 14.2
refresh 0001-configure.ac-bypass-autoconf-2.69-version-check.patch
License-Update: year updated to 2022

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-23 09:25:19 -08:00
Zheng Ruoqin
0733019d04 phpmyadmin: upgrade 5.1.2 -> 5.1.3
Changelog:
=========
- Fix broken pagination links in the navigation sidebar
- Fix MariaDB has no support for system variable "disabled_storage_engines"
- Fix unsupported operand types in Results.php when running "SHOW PROCESSLIST" SQL query
- Fixed importing browser settings question box after login when having no pmadb
- Fix "First day of calendar" user override has no effect
- Fixed repeating headers are not working
- Fixed import of email-adresses or links from ODS results in empty contents
- Fixed a type error on ODS import with non string values
- Fixed header row show/hide columns buttons on each line after hover are shown on each row
- [security] Fix for path disclosure under certain server configurations (if display_errors is on, for instance)

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-23 09:25:19 -08:00
Zheng Ruoqin
fee9d14b43 protobuf: upgrade 3.19.3 -> 3.19.4
Changelog:
=========
Python
* Make libprotobuf symbols local on OSX to fix issue #9395 (#9435)

Ruby
* Fixed a data loss bug that could occur when the number of 'optional'
  fields in a message is an exact multiple of 32. (#9440).

PHP
* Fixed a data loss bug that could occur when the number of 'optional'
  fields in a message is an exact multiple of 32. (#9440).

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-23 09:25:19 -08:00
Wang Mingyu
d8f712b707 nautilus: upgrade 41.1 -> 41.2
Major changes in 41.2
=====================
* Avoid cropping format popover in Compress dialog
* Fix "Move to"/"Copy to" from Starred
* Fix memory leak on tab switch
* Translation updates

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-23 09:25:19 -08:00
Wang Mingyu
6ed9d2d546 netplan: upgrade 0.103 -> 0.104
refresh patches for 0.104:
0001-Makefile-do-not-use-Werror.patch
0001-don-t-fail-if-GLOB_BRACE-is-not-defined.patch

0001-parse-nm-fix-32bit-format-string.patch
removed since it's included in 0.104

Changelog:
=========
Enable embedded-switch-mode setting on SmartNICs (#253)
Permit multiple patterns for the driver globs in match (#202), LP#1918421
Improve routing capabilities (#248), LP#1892272, LP#1805038
Support additional link offload options for networkd (#225) (#242), LP#1771740
Consolidate enum-to-string arrays (#230)
Handle differing ip6-privacy default value for NetworkManager (#263)
YAML state tracking (--state rootdir) for DBus API and netplan try (#231), LP#1943120
Support ConfigureWithoutCarrier (ignore-carrier) for networkd (#215)
Move primary git branch master to main
Documentation improvements (#226)
Compatibility for glib-2.70 (#235)
Cleanup Makefile, install only public headers
Improve test reliability & enable integration testing CI for autopkgtests
Netplan get to use the libnetplan parser (#252)
libnetplan:
- introduce the notion of NetplanState (#232)
- use an explicit parser context (#233)
- expose coherent generator APIs (#239)
- improve overall error handling (#234)
- consolidation of YAML parsing into the library (#241, #249, #250, #251)
Restrict the symbol export to a determined public API (#227)
- WARNING: We dropped some internal symbols from the API that we know
  have no external consumers (that we are aware of)
- 0.103: _serialize_yaml, contains_netdef_type, tmp, validate_default_route_consistency
- 0.102: cur_filename, netplan_netdef_new
- 0.100: address_option_handlers, is_hostname, validate_ovs_target, wireguard_peer_handlers
- 0.99: current_file, is_ip4_address, is_ip6_address, missing_id,
  missing_ids_found, parser_error, validate_backend_rules, validate_netdef_grammar,
  yaml_error

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-23 09:25:19 -08:00
Wang Mingyu
124c19a0a6 rdma-core: upgrade 38.0 -> 39.0
Changelog:
=========
b2fedc4 rsocket: Make sure that the allocated memory is aligned
ebbdb85 Merge pull request #1107 from Sindhu-Devale/libirdma-12-9-fixes
a83619b providers: Move input validation for memory window bind to core
a274c9c providers/rxe: Replace '%' with '&' in check_qp_queue_full()
812ab81 Merge pull request #1128 from Wenpeng-Liang/clear_rq_sge
1a9b2db docs: Fix typo in pyverbs example
d498180 libhns: Clear remaining unused sges when post recv
d99f61c Merge pull request #1127 from Wenpeng-Liang/misc_bugfix
7307264 verbs: Fix description of manual for ibv wc read byte len function
c298130 verbs: Fix a typo

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-23 09:25:19 -08:00
Wang Mingyu
3e5cd95d80 nano: upgrade 6.0 -> 6.2
Changes between v6.0 and v6.2:
------------------------------
  display: suppress the bottom-bar wiping only when the user is editing
  linter: adjust the parsing to accommodate for a modern 'pyflakes'
  syntaxes: fold a couple of regexes together, and improve a few comments
  tweaks: change the type of a variable, to avoid a compiler warning
  tweaks: consistently backslash-escape the dash in M-letter keystrokes
  tweaks: rename a misnamed variable
  tweaks: rename a variable, reshuffle five lines, and snip two comments
  tweaks: rename a variable, to be more correct, and adjust two comments
  tweaks: rename a variable, to be more fitting
  tweaks: rename two more variables, and drop unneeded initializations
  tweaks: rename two variables (to get rid of a prefix), and elide a third
  tweaks: store a result, to avoid calling a function twice
  tweaks: use an intermediate variable, to avoid using one for two purposes
  build: fix compilation when configured with --enable-tiny
  build: prevent autopoint from overwriting a newer M4 file from gnulib
  copyright: update the last year for significantly changed files
  copyright: update the years for the FSF
  docs: mention bindable function 'zero', for toggling the interface bars
  docs: mention 'set guidestripe' and 'set unix' in the sample nanorc
  docs: remove obsolete Ctrl+Z from the cheatsheet; mention Alt+X instead
  files: let ^C cancel the exiting when the file on disk was changed
  gnulib: update to its current upstream state
  help: make the description of <Tab> more accurate
  help: update the description of M-D, to match the actual order of counts
  input: instead of moving waiting keycodes, just increment a pointer
  input: suppress any spotlighting when there are more keycodes waiting
  menus: don't show M-6 in the help lines of any prompt
  prompt: allow the user to copy the answer to the cutbuffer (with M-6)
  prompt: let ^K erase text after cursor (if any), otherwise whole answer
  tweaks: add some feedback to the autogen.sh script, to ease the wait
  tweaks: add some small, clarifying comments
  tweaks: adjust a translator hint, to fit the order in the POT file
  tweaks: drop foreign M-U and M-R from among the sample CUA bindings
  tweaks: remove a redundant check -- add a different one for symmetry
  tweaks: remove two redundant checks
  tweaks: rename a function and its two parameters, for clarity
  tweaks: rename a function and reshuffle its call
  tweaks: rename a function, to not contain the name of a variable
  tweaks: rename another variable, to better fit in with its sisters
  tweaks: rename a variable and a parameter, to be more descriptive
  tweaks: rename a variable, away from an abbreviation
  tweaks: rename a variable, for clarity and contrast
  tweaks: rename a variable, to make it clearer it refers to a window
  tweaks: rename two variables, and elide a near-enough duplicate
  tweaks: reshuffle some sample bindings, to group them differently
  tweaks: reword two comments, and rename a variable (away from an abbrev)
  tweaks: stop asking the terminal for its new size -- let ncurses do it
  tweaks: use some symbolic names instead of unclear numeric values
  tweaks: when discarding keycodes, don't bother parsing them

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-23 09:25:19 -08:00
Wang Mingyu
95c8527f9f php: upgrade 8.1.2 -> 8.1.3
Changelog:
=========
Core:
------
Fixed bug #81430 (Attribute instantiation leaves dangling pointer).
Fixed bug #7896 (Environment vars may be mangled on Windows).
Fixed bug #7883 (Segfault when INI file is not readable).

FFI:
-----
Fixed bug #7867 (FFI::cast() from pointer to array is broken).

Filter:
------
Fix #81708: UAF due to php_filter_float() failing for ints. (CVE-2021-21708)

FPM:
-----
Fixed memory leak on invalid port.
Fixed bug #7842 (Invalid OpenMetrics response format returned by FPM status page.

MBString:
--------
Fixed bug #7902 (mb_send_mail may delimit headers with LF only).

MySQLnd:
--------
Fixed bug #7972 (MariaDB version prefix 5.5.5- is not stripped).

pcntl:
------
Fixed pcntl_rfork build for DragonFlyBSD.

Sockets:
-------
Fixed bug #7978 (sockets extension compilation errors).

Standard:
---------
Fixed bug #7899 (Regression in unpack for negative int value).
Fixed bug #7875 (mails are sent even if failure to log throws exception).

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-23 09:25:19 -08:00
Wang Mingyu
80adbff00a mpv: upgrade 0.34.0 -> 0.34.1
This is a bug fix release for the 0.34 branch.

Fixes and Minor Enhancements
----------------------------

- player: fix autofit/geometry related segfault
- ao_oss: add missing PATH_DEV_MIXER define
- egl_helpers: fix context creation if GLES 3 is not available
- audio: stop corrupting audio on underreads
- wayland: fix a potential segfault on surface enter
- vo_gpu: opengl: fix wrong glMemoryBarrier call
- vo_gpu: opengl: create context at version 4.4 again
- af_lavcac3enc: fix memory leak on no-op
- subprocess: unblock/reset signals before running child process
- wayland: avoid doing unneccesary window resizes

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-23 09:25:19 -08:00
Khem Raj
e6e72ed4c4 Revert "libcamera: add pkg-config files"
This reverts commit 606eaedc8c.
2022-02-23 09:25:19 -08:00
Markus Volk
edd2a422cf xfce4-panel: disable vala
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Markus Volk
a50aba5570 libxfce4ui: disable vala
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Markus Volk
343ec1feec xfconf: inherit vala
This fixes do_configure error:

| ...xfconf/4.16.0-r0/recipe-sysroot/usr/bin/vapigen-wrapper: 2: vapigen-0.54: not found

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Markus Volk
26d9d0b627 libxfce4util: inherit vala
This fixes do_configure error:

| libxfce4util/Makefile.am:159: error: ENABLE_VAPIGEN does not appear in AM_CONDITIONAL

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Devendra Tewari
606eaedc8c libcamera: add pkg-config files
Signed-off-by: Devendra Tewari <devendra.tewari@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Wang Mingyu
4a80836f83 libio-socket-ssl-perl: upgrade 2.073 -> 2.074
Changelog:
=========
- add SSL_ciphersuites option for TLS 1.3 ciphers
- no longer use own default for ciphers, instead use system default but disable
  some weak ciphers which might still be enabled on older systems

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Christian Eggers
696aab3d80 graphviz: added PACKAGECONFIG for librsvg
nativesdk-librsvg is not available anymore ([2], transition to Rust).
According to [2], graphviz can be used fine (even with svg images)
without librsvg.

[1] oe-core: 67dd505c42 ("librsvg: do not enable nativesdk")
[2] https://www.linuxfromscratch.org/blfs/view/cvs/general/graphviz.html

Signed-off-by: Christian Eggers <ceggers@arri.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Wang Mingyu
da18587531 libjcat: upgrade 0.1.9 -> 0.1.10
Changelog:
=========
New Features:
- Add ED25519 support
- Define three more types used for the firmware transparency log

Bugfixes:
- Include the pkgconfig variables in the subproject dependency
- Drop the use of setuptools in the test script for regenerating ld version file
- Use the correct lookup method for the python3 script interpreter

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Wang Mingyu
5bb47bf2ee monit: upgrade 5.30.0 -> 5.31.0
Changelog:
==========
-Add support for Linux OpenZFS 2.x I/O statistics.
-Add support for FreeBSD ZFS I/O statistics for FreeBSD 12.x or later.
-If Monit 5.30.0 CLI action was executed for a non-existent service name, the
 error message was not reported properly. Thanks to Lutz Mader for fix.
-If Monit reload was requested during the optional start delay interval, Monit
 still waited for the delay to pass and performed one test cycle with the old
 configuration, before the reload was performed. Monit will reload the
 configuration immediately now.
-New precompiled binaries: Added binaries for musl-based Linux distributions,
 such as Alpine Linux.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Wang Mingyu
e20fb95fb5 libgusb: upgrade 0.3.9 -> 0.3.10
New Features:
 - Add API to change the hotplug poll interval

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Wang Mingyu
9fd3375530 libxmlb: upgrade 0.3.6 -> 0.3.7
Bugfixes:
 - Ensure reproducible results when importing a node
 - Ignore all hidden files when using _WATCH_DIRECTORY
 - Show the value bindings when using XB_SILO_PROFILE_FLAG_XPATH
 - Use the correct lookup method for the python3 script interpreter

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Wang Mingyu
2d41a2195a gnuplot: upgrade 5.4.2 -> 5.4.3
Changelog:
=========
NEW "set pm3d border retrace" will use quadrangle color for the border
NEW "nogrid" flag for plots to opt out of dgrid3d processing
NEW option "above|below y=<val>" for "plot with fillsteps"
NEW "set style histogram nokeyseparators" suppress blank key entries Bug #2473
CHANGE always allow palette color for non-plot elements of 2D plot
FIX contours were incorrectly allocated space in the key even if "notitle"
FIX evaluation of unary minus in front of ternary operator Bug #2468
FIX arm and s390 require "signed char" Bugs #2467 #2450
FIX range errors if "smooth csplines" applied with x-axis reversed Bug #2465
FIX handle various corner cases found by fuzzing
FIX textcolor should accept "linetype N" Bug #2459
FIX Windows: handling of Window messages for piped input Bugs #2204 #2412
FIX aquaterm: auto-configuration use of Frameworks Bug #2419
FIX qt: pm3d quadrangle borders for transparent surfaces
FIX png/gif: gdlib auto-configuration issues
FIX dumb: limit enhanced text markup to single-line vertical displacement

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Wang Mingyu
b73b7e42d8 inotify-tools: upgrade 3.21.9.6 -> 3.22.1.0
0001-libinotifytools-Include-limit.h-for-PATH_MAX.patch
removed since it's included in 3.22.1.0

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Wang Mingyu
4d278b9459 iotop: upgrade 1.20 -> 1.21
Changelog:
=========
* Update to new upstream release of 1.21
  - Better support for disabled task_delayacct sysctl
  - Add history and graph for all data
  - Restore simple inline help
* Remove filenamemangle from d/watch

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:51 -08:00
Wang Mingyu
358db10e03 iscsi-initiator-utils: upgrade 2.1.5 -> 2.1.6
0001-Fix-compiler-error-introduced-with-recent-IPv6-commi.patch
removed since it's included in 2.1.6.

Changelog:
=========
This release adds more bug fixes and cleanups. No major functionality changes.

 libopeniscsiusr: extend sysfs ignore_error to include EINVAL
 Fix compiler error introduced with recent IPv6 commit.
 Remove dependences from iscsi-init.service
 Use "sbindir" for path in systemd service files
 Updated README a bit
 Finish ability to have binary location configurable.
 Fix iscsi-init so that it runs when root writable
 remove redundant params in Makefile
 Fixing last parts of sbindir configuration
 Cosmetic cleanup on recent addition
 Update the iscsi-gen-initiatorname script: harden and generalize
 change iscsi-gen-initiatorname option -b => -p
 Add man page for the iscsi-gen-initiatorname script.
 Install new man page for iscsi-gen-initiatorname
 Fix issues discovered by gcc12
 Fix more issues discovered by gcc12
 iscsi sysfs: check state before onlining devs
 iscsistart: fix login timeout handling
 iscsid: use infinite timeout if passed in
 iscsid: add error code for req timeouts
 Improve 'iscsid.conf'
 iscsiadm: Call log_init() first to fix a segmentation fault
 iscsi_err: Add iscsid request timed out error messages
 Fix wrong install_systemd destination path
 actor: add name to struct actor and init it with function name
 actor: print thread name in log
 actor: enhanced: print error log when init a initilized thread
 initiator_common: make set operational parameter log easy to read
 iscsid: Check session id before start sync a thread

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:50 -08:00
Wang Mingyu
e5613af40e libwnck3: upgrade 40.0 -> 40.1
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:50 -08:00
Wang Mingyu
aca61b8dc7 gnome-autoar: upgrade 0.4.2 -> 0.4.3
Changelog:
=========
* Prevent NULL dereference when extracting to root
* Do not include basename in error messages
* Do not request password when encryption is unsupported
* Propagate libarchive errors when extraction failed

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:50 -08:00
Wang Mingyu
8918d9485c gedit: upgrade 40.1 -> 41.0
0001-Remove-incorrect-args-for-i18n.merge_file.patch
removed since it's included in 41.0

Changelog:
=========
* Fix some crashes, one when opening files, another when
  deleting the open folder with the file browser plugin active
* Fix buttons in the color scheme selector dialog
* Build fixes
* Improve symbolic icon coloring
* Improve Save As behavior when saving error infobar is showing
* Translation updates
* Note that gnome-text-editor will be GNOME's recommended text
  editor beginning with the GNOME 42 release next month

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:50 -08:00
Wang Mingyu
491ea7f7fc libwacom: upgrade 1.12 -> 2.1.0
Changelog:
=========
- New Devices:
  - Dell Latitude 5290
  - Lenovo ThinkPad X1 Tablet Gen3, Yoga 7
  - Pine64 PineNote
  - HP ProBook x360

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:30:50 -08:00
Leon Anavi
4d8a991551 python3-croniter: Upgrade 1.2.0 -> 1.3.4
Upgrade to release 1.3.4:

- Add a way to make next() easier to use
- Restore compat with python2
- Fix regressions with set_current
- Fix compat for tests under py27

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:29:53 -08:00
Leon Anavi
e5350050e1 python3-itsdangerous: Upgrade 2.0.1 -> 2.1.0
Upgrade to release 2.1.0:

- Drop support for Python 3.6
- Remove previously deprecated code

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:29:53 -08:00
Christian Eggers
c0be70f84c python3-dt-schema: remove recipe
Since 2021-11-23 this is on oe-core:
d56fcb5806 ("python: introduce python3-dtschema")

The recipe in oe-core is named python3-dtschema (without dash between
'dt' and 'schema'). It points to the correct GIT repository and uses a
much more recent version.

Signed-off-by: Christian Eggers <ceggers@arri.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-22 08:29:53 -08:00
Khem Raj
9d5081e524 libxml++-5.0: Add recipe for libxml++ 5.0
This is not ABI compatible with older version which is still used by
many packages so add it such that it can live alongside

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-02-21 18:12:04 -08:00