summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* pipewire: update 1.2.5 -> 1.2.6Markus Volk2024-10-262-12/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - replace patch by the one that was implemented upstream PipeWire 1.2.6 (2024-10-23) This is a bugfix release that is API and ABI compatible with the previous 1.2.x and 1.0.x releases. Highlights - The filter-chain param changes were not aggregated correctly, causing some param changes to be ignored. (#4331) - Clear the JACK io ports correctly when stopping to avoid crashes. (#4337) - Some more small fixes and improvements. PipeWire - Stream states are now updated based on the underlying node state. - Exported nodes now have their state change done synchronously so that the server can immediately start the driver and avoid some initial xruns. - Improve stream flush handling and improve the docs. - Don't send mix_info to destroyed ports to avoid some errors in the JACK clients. Modules - The filter-chain param changes were not aggregated correctly, causing some param changes to be ignored. (#4331) - The filter-chain now correctly optimizes unlinked nodes in all cases. SPA - ALSA PCM node properties are now no longer overwritten with card properties. (#4135) - Increase the adapter retry count to avoid xruns in some cases. (#4334) - Fix potential crash in cleanup of ALSA nodes. Bluetooth - Fix a crash with broadcast sinks. - Improve compatibility with Phonak hearing aids. - Don't exit when DBus goes down. JACK - Clear the io ports correctly when stopping to avoid crashes. (#4337) Docs - Backport docs from master. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ptyprocess: Fix ptests with python 3.13Khem Raj2024-10-262-0/+36
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyroute2: Add missing rdeps for ptestsKhem Raj2024-10-261-0/+2
| | | | | | These are needed with python 3.13 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aioresponses: Add recipeKhem Raj2024-10-251-0/+25
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-oauth2client: Remove recipeKhem Raj2024-10-251-19/+0
| | | | | | | | | This module has been deprecated [1] since 2018 and it recommends to use oauth2.googleapis.com variants [1] https://github.com/googleapis/oauth2client/commit/50d20532a748f18e53f7d24ccbe6647132c979a9#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4edR9 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-auth: Upgrade to 2.35.0Khem Raj2024-10-251-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2.35.0 (2024-09-17) Features Add cred info to ADC creds Add support for asynchronous AuthorizedSession api Bug Fixes Remove token_info call from token refresh path 2.34.0 (2024-08-13) Features auth: Update get_client_ssl_credentials to support X.509 workload certs Bug Fixes Retry token request on retryable status code (#1563) (f858a15) 2.33.0 (2024-08-06) Features Implement async StaticCredentials using access tokens Implement base classes for credentials and request sessions Bug Fixes metadata: Enhance retry logic for metadata server access in _metadata.py Documentation Update argument for Credentials initialization 2.32.0 (2024-07-08) Features Adds support for X509 workload credential type 2.31.0 (2024-06-27) Features Adds X509 workload cert logic Bug Fixes Added py.typed to MANIFEST.in Pass trust_env kwarg to ClientSession Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-zopeinterface: Upgrade to 7.1.1Khem Raj2024-10-251-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes 7.1.1 (2024-10-23) Fix segmentation faults in weakrefobject.c on Python 3.12 and 3.13. 7.1.0 (2024-10-10) Declare support for Python 3.13. Fix segmentation faults on Python 3.13. 7.0.3 (2024-08-27) Fix Assertion ‘memb->type == T_PYSSIZET’ failed. for Python < 3.12. 7.0.2 (2024-08-26) Fix reference-counting bug in C module initialization (broken in 7.0). 7.0.1 (2024-08-06) Fix subclassability of ObjectSpecificationDescriptor (broken in 7.0). 7.0 (2024-08-06) Enable heap-based types (PEP 384) for Python >= 3.11. Adopt multi-phase module initialization (PEP 489). Drop support for Python 3.7. 6.4.post2 (2024-05-24) Publish missing Windows wheels, second attempt. 6.4.post1 (2024-05-23) Publish missing Windows wheels. 6.4.post0 (2024-05-22) The sdist of version 6.4 was uploaded to PyPI as zope_interface-6.4.tar.gz instead of zope.interface-6.4-py2.tar.gz which cannot be installed by zc.buildout. This release is a re-release of version 6.4 with the correct sdist name. 6.4 (2024-05-15) Adjust for incompatible changes in Python 3.13b1. Build windows wheels on GHA. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* graphviz: remove obsolete and problematic patchChen Qi2024-10-252-46/+0
| | | | | | | | | | | | | | | | | | | | | | | | Remove 0001-Set-use_tcl-to-be-empty-string-if-tcl-is-disabled.patch. This patch is obsolete and not needed because the current graphviz configure.ac has correct logic of checking use_tcl. This use_tcl variable needs to be set when '--disable-tcl' is set, otherwise, things will behave as if no option is supplied and the configure process will check tcl automatically. This patch is problematic because its logic against the current version is wrong. The recipe has already explicitly set '--disable-tcl', so the configure process should not do automatic checking for tcl at do_configure. This patch fixes do_configure error when host has tcl8.6-dev installed. The error is like below: QA Issue: This autoconf log indicates errors, it looked at host include and/or library paths while determining system capabilities. Rerun configure task after fixing this. [configure-unsafe] Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk: set AUTOTOOLS_SCRIPT_PATH instead of having to mess with S/../Ross Burton2024-10-242-18/+20
| | | | | | | | | | | | | | We want to run the configure script in ${S}/unix, so instead of setting S to BP/unix and then having to use ../ to reach up a level constantly (including some deep changes to DEBUG_PREFIX_MAP and PSEUDO_IGNORE_PATHS) we can set S to the top of the source tree as usual and tell autotools where the configure script is. This both makes the recipe clearer, and enables tk-src to be generated correctly. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libxml-sax-writer-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libxml-libxml-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libxml-filter-buffertext-perl: Change references to search.cpan.org to use ↵J. S.2024-10-241-2/+2
| | | | | | | metacpan.org Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtext-wrapi18n-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtext-iconv-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtext-diff-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtext-charwidth-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtest-warn-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtest-nowarnings-perl: Change references to search.cpan.org to use ↵J. S.2024-10-241-1/+1
| | | | | | | metacpan.org Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libterm-readkey-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libproc-waitstat-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libnet-telnet-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libnet-ssleay-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libnet-libidn-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libnet-dns-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libmodule-runtime-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libmodule-build-tiny-perl: Change references to search.cpan.org to use ↵J. S.2024-10-241-1/+1
| | | | | | | metacpan.org Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libmime-types-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libmime-charset-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* liblocale-gettext-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libipc-signal-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libio-socket-ssl-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libimport-into-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libhtml-parser-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libfile-slurper-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libfile-slurp-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libextutils-parsexs-perl: Change references to search.cpan.org to use ↵J. S.2024-10-241-1/+1
| | | | | | | metacpan.org Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libextutils-installpaths-perl: Change references to search.cpan.org to use ↵J. S.2024-10-241-1/+1
| | | | | | | metacpan.org Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libextutils-helpers-perl: Change references to search.cpan.org to use ↵J. S.2024-10-241-1/+1
| | | | | | | metacpan.org Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libextutils-cppguess-perl: Change references to search.cpan.org to use ↵J. S.2024-10-241-1/+1
| | | | | | | metacpan.org Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libextutils-config-perl: Change references to search.cpan.org to use ↵J. S.2024-10-241-1/+1
| | | | | | | metacpan.org Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libenv-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdigest-sha1-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdata-hexdump-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libconfig-autoconf-perl: Change references to search.cpan.org to use ↵J. S.2024-10-241-1/+1
| | | | | | | metacpan.org Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libconfig-tiny-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcgi-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcapture-tiny-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libauthen-sasl-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libauthen-radius-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-2/+2
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libalgorithm-diff-perl: Change references to search.cpan.org to use metacpan.orgJ. S.2024-10-241-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>