summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* python3-msgpack: re-add functional ptestsDerek Straka2024-02-213-2/+2
| | | | | | | | Verified tests pass with via the test image execution (bitbake meta-python-image-ptest-python3-msgpack -c testimage) Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-jdcal: re-add functional ptestsDerek Straka2024-02-213-2/+2
| | | | | | | | Verified tests pass with via the test image execution (bitbake meta-python-image-ptest-python3-jdcal -c testimage) Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* netdata: version bump 1.43.2 -> 1.44.3Jan Vermaete2024-02-211-8/+6
| | | | | | | | | | * fixed a few minor oelint-adv warnings in the recipe * placed all SRC_URI lines in one block Tested on Raspberry PI 4 Signed-off-by: Jan Vermaete <jan.vermaete@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wavemon: add recipe for version 0.9.5Romain Naour2024-02-211-0/+28
| | | | | | | | | | | | | | | | | | | | | | wavemon is an ncurses-based monitoring application for wireless network devices on Linux. We have to provide the path to libnl3 headers since the build system is not able to find them. In order to workaround a link issue with pthread library, we have to add -pthread to CFLAGS in order to add the library after the object file. arm-none-linux-gnueabihf/bin/ld: info_scr.o: undefined reference to symbol 'pthread_mutex_trylock@@GLIBC_2.4' [...]/wavemon/0.9.5-r0/recipe-sysroot/lib/libpthread.so.0: error adding symbols: DSO missing from command line "We should mention the library on the command line after the object files being compiled" [1] [1] https://stackoverflow.com/questions/19901934/libpthread-so-0-error-adding-symbols-dso-missing-from-command-line Signed-off-by: Romain Naour <romain.naour@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sentry-sdk: upgrade 1.40.0 -> 1.40.4Wang Mingyu2024-02-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== -Only start metrics flusher thread on demand -Bump checkouts/data-schemas from aa7058c to 6121fd3 -Turn off metrics for uWSGI -Minor improvements -test: Fix pytest error (#2712) -build(deps): bump types-protobuf from 4.24.0.4 to 4.24.0.20240129 -Fix uWSGI workers hanging -Make metrics work with gevent -Guard against engine.url being None -Fix performance regression in sentry_sdk.utils._generate_installed_modules -Guard against Sentry initialization mid SQLAlchemy cursor -Fix yaml generation script -Fix AWS Lambda workflow -Bump codecov/codecov-action from 3 to 4 -Bump actions/cache from 3 to 4 -Bump actions/checkout from 3.1.0 to 4.1.1 -Bump github/codeql-action from 2 to 3 -Bump actions/setup-python from 4 to 5 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-socketio: upgrade 5.11.0 -> 5.11.1Wang Mingyu2024-02-211-1/+1
| | | | | | | | | | | Changelog: ========= -Connection retry option in the client -use Socket.IO sid in transport -Add support for Python 3.12 and drop 3.7 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-gspread: upgrade 6.0.1 -> 6.0.2Wang Mingyu2024-02-211-1/+1
| | | | | | | | Changelog: Fixup gspread client init arguments Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-auth: upgrade 2.27.0 -> 2.28.0Wang Mingyu2024-02-211-1/+1
| | | | | | | | | | | Changelog: ========== -Adding universe domain support for downscroped credentials -Change log level to debug for return_none_for_not_found_error -Make requests import conditional for gce universe domain Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* unixodbc: fix odbc.pc file generationChen Qi2024-02-212-1/+71
| | | | | | | | | | | | | | | | | | | | | | | The build process currently succeeds but the odbc.pc file is not correctly generated. The error message is like below in log.do_compile and log.do_install: /bin/bash: line 1: ../exe/odbc_config: cannot execute binary file: Exec format error I can see the message comes from the following line in exe/Makefile.am: @sed "s![@]ODBC_ULEN[@]!`$(top_builddir)/exe/odbc_config$(EXEEXT) --ulen`!" \ $(top_builddir)/DriverManager/odbc.pc > $(top_builddir)/exe/odbc.pc.tmp It's running the exe/odbc_config program we built out. But the binary is for the target platform and if we run it on the build host, we get that error message. The resulting ulen and build_cflags in the final odbc.pc file are also empty. Fix the issue by using qemu usermode to launch the target binary. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* webkitgtk3: Fix build on 32bit x86Khem Raj2024-02-212-0/+39
| | | | | | | | | | | | | | | Backport a patch to fix the compile problems seen on 32bit x86 Fixes TOPDIR/build/tmp/work/core2-32-yoe-linux/webkitgtk3/2.42.5/webkitgtk-2.42.5/Source/JavaScriptCore/llint/LowLevelInterpreter.cpp:339:21: error: use of undeclared identifier 't6' 339 | UNUSED_VARIABLE(t6); | ^ TOPDIR/build/tmp/work/core2-32-yoe-linux/webkitgtk3/2.42.5/webkitgtk-2.42.5/Source/JavaScriptCore/llint/LowLevelInterpreter.cpp:340:21: error: use of undeclared identifier 't7' 340 | UNUSED_VARIABLE(t7); | ^ 2 errors generated. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dav1d: Inherit missing pkgconfigKhem Raj2024-02-211-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcamera: Replace VLAs with allocaKhem Raj2024-02-212-0/+35
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* snort3: Fix contains reference to TMPDIR [buildpaths] warningsKhem Raj2024-02-212-2/+38
| | | | | | | | | Fixes WARNING: snort3-3+git-r0 do_package_qa: QA Issue: File /usr/lib/pkgconfig/snort.pc in package snort3-dev contains reference to TMPDIR [buildpaths] WARNING: snort3-3+git-r0 do_package_qa: QA Issue: File /usr/src/debug/snort3/3+git/src/js_norm/pdf_tokenizer.cc in package snort3-src contains reference to TMPDIR File /usr/src/debug/snort3/3+git/src/js_norm/js_tokenizer.cc in package snort3-src contains reference to TMPDIR [buildpaths] Signed-off-by: Khem Raj <raj.khem@gmail.com>
* snort: Do not use llvm libunwindKhem Raj2024-02-212-1/+35
| | | | | | | If llvm unwind is present then disable unwinding support since it will not have all unw_* functions eg. unw_strerror Signed-off-by: Khem Raj <raj.khem@gmail.com>
* snort: add snort3 initial recipeKhawaja Shaheryar2024-02-211-0/+34
| | | | | | | | I am adding this recipe as snort2 is legacy now. See more: https://github.com/snort3/snort3 Signed-off-by: Khawaja Shaheryar <behzadshaheryar@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdaq: add recipeKhawaja Shaheryar2024-02-212-0/+50
| | | | | | | | | I am adding this recipe as snort3 depends on it. snort3 recipe will be provided in next commit. See more: https://github.com/snort3/libdaq Signed-off-by: Khawaja Shaheryar <behzadshaheryar@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sip: upgrade 6.8.2 -> 6.8.3Wang Mingyu2024-02-201-1/+1
| | | | | | | | | | | | | | | Changelog: ============ - The use of 'throw' specifiers is now deprecated and will be removed in SIP v7. Instead of 'throw()', 'noexcept' should be used. Other forms of 'throw' are no longer required. - Support for ABI v13.0 and ABI v12.8 and older is now deprecated and will be removed in SIP v7. - Documentation fixes. - Bug fixes. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remmina: upgrade 1.4.33 -> 1.4.34Wang Mingyu2024-02-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== * [REM-2981] Move ssh-unrelated code outside of HAVE_LIBSSH ifdef * [REM-2974] only attempt to resolve hostname if initial ssh_connect fails * [REM-2980] Remove flag that prevented remote audio from working with flatpak version of Remmina * [REM-2982] Update Flatpak to use GNOME runtime version 44 * initial port to core22 * [REM-2984] Add null check to prevent freeze when opening an rdp connection * Fix GTK critical error when editing RDP profile * Remove snap installs for broken link executables * SSH private key auth: If username is empty, prompt user to enter it * Fix Flatpak freeze on connection when importing RDP profile * Fix of some grammatic issues in German translation * [REM-3003] Re-add line removed by accident in !2532 * GtkFileChooserNative support * Spice UNIX socket channel initialization enhancement * Fix segfault for 'remmina -p' * Add unlocking code to let plugins use passwords * CI Pipeline Updates * [freerdp] update to build for stable-3.0 * Allow Remmina to be built without FreeRDP * [REM-3048] Fix crash on multi-monitor with FreeRDP3 * Added developer_name to meet new flathub requirements * [New features] Bring back remmina server features with new additions * [REM-2983] compile ssh with gcrypt for flatpak builds. Also sync flatpak... * Update copyright info Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-zopeinterface: upgrade 6.1 -> 6.2Wang Mingyu2024-02-201-1/+1
| | | | | | | | | | Changelog: =========== -Add preliminary support for Python 3.13 as of 3.13a3. -Add support to use the pipe (|) syntax for typing.Union. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-watchdog: upgrade 3.0.0 -> 4.0.0Wang Mingyu2024-02-201-1/+1
| | | | | | | | | | | | | | | | | | Changelog: =========== -Drop support for Python 3.7. -Add support for Python 3.12. -Add typing to dirsnapshot (#1012) -Added DirectorySnapshotDiff.ContextManager (#1011) -FileSystemEvent, and subclasses, are now dataclass"es, and their "repr() has changed -WinAPINativeEvent is now a dataclass, and its repr() has changed -Log FileOpenedEvent, and FileClosedEvent, events in LoggingEventHandler -Improve FileSystemEvent coverage -Log all events in LoggerTrick -The observers.read_directory_changes.WATCHDOG_TRAVERSE_MOVED_DIR_DELAY hack was removed. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-twine: upgrade 4.0.2 -> 5.0.0Wang Mingyu2024-02-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tox: upgrade 4.12.1 -> 4.13.0Wang Mingyu2024-02-201-1/+1
| | | | | | | | | | | | | | | | | | | Changelog: ========== -Document usage of Pytest with Tox as a FAQ entry -docs/config.rst: State in config directive sections their ini file sections -.gitignore: Add /tests/demo_pkg_inline/.tox/ -docs/development: Summarise important points experienced devs need to know -Add tests for CliEnv -Document how CliEnv works -docs/development "Key points": Two updates and general improvement -session.env_select.CliEnv: Document and test spaces behaviour -config.cli.test_cli_ini: Re-order for clarity (textual moves only) -Revert previous "precommit autoupdate (#3214)" commit; it's broken -Extract packaging virtualenv code to its own class Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pytest-asyncio: upgrade 0.23.4 -> 0.23.5Wang Mingyu2024-02-201-1/+1
| | | | | | | | | | | Changelog: ============ -Declare compatibility with pytest 8 -Fix typing errors with recent versions of mypy -Prevent DeprecationWarning about internal use of asyncio.get_event_loop() from affecting test cases Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymodbus: upgrade 3.6.3 -> 3.6.4Wang Mingyu2024-02-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== -Update datastore_simulator example with client -Test and correct receiving more than one packet -Remove unused FifoTransactionManager. -Always set exclusive serial port access. -Add server/client network stub, to allow test of network packets. -Combine conftest to a central file -Call on_reconnect_callback. -Readd ModbusBaseClient to external API. -Update README.rst -minor fix for typo and consistency -More coverage. -Client coverage 100%. -Run coverage in CI with % check of coverage. -transport 100% coverage. -contrib example: TCP drainage simulator with two devices -Remove "pragma no cover". -transport_serial -> serialtransport. -Fix behavior after Exception response -Correct expected length for udp sync client. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymisp: upgrade 2.4.184 -> 2.4.185Wang Mingyu2024-02-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-protobuf: upgrade 4.25.2 -> 4.25.3Wang Mingyu2024-02-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-polyline: upgrade 2.0.1 -> 2.0.2Wang Mingyu2024-02-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-langtable: upgrade 0.0.64 -> 0.0.65Wang Mingyu2024-02-201-1/+1
| | | | | | | | | | | | | | | Changelog: ============ -Add wuu, tok, glk, gbm, ssy -Remove aa_ER.UTF-8@saaho -Add kv_RU.UTF-8, chr_RU.UTF-8 -Add EU, EZ -Improve README and Makefile (Resolves: #19) -Add more translations from CLDR -Get translation changes from CLDR Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-jsbeautifier: upgrade 1.14.11 -> 1.15.1Wang Mingyu2024-02-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-httpcore: upgrade 1.0.2 -> 1.0.3Wang Mingyu2024-02-201-1/+1
| | | | | | | | | | | Changelog: ========== -Fix support for async cancellations. -Fix trace extension when used with socks proxy. -Fix SSL context for connections using the "wss" scheme Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-api-python-client: upgrade 2.116.0 -> 2.118.0Wang Mingyu2024-02-201-1/+1
| | | | | | | | Changelog: https://github.com/googleapis/google-api-python-client/releases/tag/v2.118.0 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tqdm: upgrade 4.66.1 -> 4.66.2Wang Mingyu2024-02-201-2/+2
| | | | | | | | | | | | | | | | | | | | | License_Update: Copyright year updated to 2024. Changelog: ============ -pandas: add DataFrame.progress_map -notebook: fix HTML padding -keras: fix resuming training when verbose>=2 -fix format_num negative fractions missing leading zero -fix Python 3.12 DeprecationWarning on import -linting: use f-strings -update tests -fix pandas warnings -fix asv (https://github.com/airspeed-velocity/asv/issues/1323) -fix macos notebook docstring indentation -CI: bump actions Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* webkitgtk3: upgrade 2.42.4 -> 2.42.5Wang Mingyu2024-02-201-1/+1
| | | | | | | | | | | | | Changelog: ========= - Fix webkit_web_context_allow_tls_certificate_for_host to handle IPv6 URIs produced by SoupURI. - Ignore stops with offset zero before last one when rendering gradients with cairo. - Write bwrapinfo.json to disk for xdg-desktop-portal. - Fix gamepads detection by correctly handling focused window in GTK4. - Fix several crashes and rendering issues. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: upgrade 4.25.2 -> 4.25.3Wang Mingyu2024-02-201-1/+1
| | | | | | | | | | | | | Changelog: =========== Remove use of mach_absolute_time [ObjC] Use a local to avoid warnings in 32bit builds. Bump python version to 3.9 for gcloud 460.0.0 Update Ruby GHA to test against Ruby 3.3. Pin bundler version to 2.4.22 for Ruby 2.7 support. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wireshark: upgrade 4.2.2 -> 4.2.3Wang Mingyu2024-02-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* unbound: upgrade 1.19.0 -> 1.19.1Wang Mingyu2024-02-201-2/+2
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Fix install error when enable multilib.Lei Maohui2024-02-201-0/+1
| | | | | | | | | | | ERROR: samba-4.19.4-r0 do_package: QA Issue: samba: Files/directories were installed but not shipped in any package: /usr/lib/python3.12/site-packages/samba/domain_update.py /usr/lib/python3.12/site-packages/samba/ntstatus.so /usr/lib/python3.12/site-packages/samba/descriptor.py ...... Signed-off-by: Lei Maohui <leimaohui@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pocketsphinx: Upgrade to 5.0.3Khem Raj2024-02-203-14/+49
| | | | | | | | | License-Update: New licenses added for WebRTC json parser, and json escaping [1] https://github.com/cmusphinx/pocketsphinx/commit/4cb5845898c7d9e53688aba370ea3c00c0ef7db2 [2] https://github.com/cmusphinx/pocketsphinx/commit/6b9a923832a1fd77c5304eba18e63d8b0e2ef0b8 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pytest-lazy-fixture: drop recipeTim Orling2024-02-194-32/+1
| | | | | | | | | | | | | | This recipe is no longer maintained (since 2020) and is not compliant with python3-pytest_8.0.0+. The only dependency in meta-python was the old version of python3-prettytable-ptest, which now RDEPENDS upon python3-pytest-lazy-fixtures (with the s). * Drop the recipe * Drop it from packagegroup-meta-python * Drop it from PTEST_PROBLEMS in ptest-packagelists-meta-python.inc Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-prettytable: upgrade 3.9.0 => 3.10.0; fix ptestsTim Orling2024-02-191-16/+17
| | | | | | | | | | | | | | | | | | | | | | | | | * Add all tests/* to be more complete and also to help pytest find the tests (previously, no test cases were actually being run) * Sort RDEPENDS alphabetically * ptest now RDEPENDS on python3-pytest-lazy-fixtures (with the s) instead of python3-pytest-lazy-fixture (without the s) because of python3-pytest 8.0.0 compatability. * Rearrange the recipe a bit https://github.com/jazzband/prettytable/releases/tag/3.10.0 Added * Add support for Python 3.13 (#281) @hugovk Changed * Speedup: lazy imports and remove import (#276) @hugovk * Use GitHub Flavored Markdown for table formatting (#268) @mumblingMac * Use flake8-errmsg for friendlier tracebacks (#254) @hugovk * Replace Flake8 with Ruff (#278) @hugovk Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pytest-lazy-fixtures: add 1.0.5Tim Orling2024-02-191-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | Use your fixtures in @pytest.mark.parametrize. This project was inspired by pytest-lazy-fixture. Improvements that have been made in this project: 1. You can use fixtures in any data structures 2. You can access the attributes of fixtures 3. You can use functions in fixtures * Dependency for python3-prettytable ptest. (Not the same as python3-pytest-lazy-fixture without the s) * Upstream does not package tests/ in the sdist on pypi, so we do not try to enable ptest at this time (it would require using git fetcher instead of pypi.bbclass). * The ptest for the predecessor (python3-pytest-lazy-fixture without the s) was already in PTEST_PROBLEMS, meaning its ptests did not run cleanly. Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-gnome: drop ${PYTHON_PN}Tim Orling2024-02-191-1/+1
| | | | | | | python 2 is long unsupported, so we no longer need this variable Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-networking: drop ${PYTHON_PN}Tim Orling2024-02-191-4/+4
| | | | | | | python 2 is long unsupported, so we no longer need this variable Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-filesystems: drop ${PYTHON_PN}Tim Orling2024-02-192-2/+2
| | | | | | | python 2 is long unsupported, so we no longer need this variable Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-oe: drop ${PYTHON_PN}Tim Orling2024-02-197-25/+25
| | | | | | | python2 is long unsupported, so we no longer need this variable Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-python: drop ${PYTHON_PN}Tim Orling2024-02-19231-846/+846
| | | | | | | python 2 is long unsupported, so we no longer need this variable. Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-license-expression: re-enable passing ptests for the packageDerek Straka2024-02-191-1/+3
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-inotify: re-enable working ptests for the packageDerek Straka2024-02-191-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-gunicorn: re-enable working ptests for the packageDerek Straka2024-02-191-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-trustme: add runtime dependency for tests and re-add to ptestDerek Straka2024-02-192-1/+2
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>