[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 48804dc4da2bb5e0035a2
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: n0nb <n0...@us...> - 2025-07-28 00:04:56
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hamlib -- Ham radio control libraries". The branch, master has been updated via 48804dc4da2bb5e0035a2600a75f568b6e2280b3 (commit) via c0ec84ca4b8ce135af5d2c859ada50ce9e3e11eb (commit) via ed138699c343b3a0049a4d1bea84c2db35ef3d53 (commit) from 66acf19efedb17ad22a6734dbbed5b6b4466ba85 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 48804dc4da2bb5e0035a2600a75f568b6e2280b3 Merge: 66acf19ef c0ec84ca4 Author: Nate Bargmann <n0...@n0...> Date: Sun Jul 27 18:45:52 2025 -0500 Merge GitHub PR #1819 commit c0ec84ca4b8ce135af5d2c859ada50ce9e3e11eb Author: Daniele Forsi IU5HKX <iu...@gm...> Date: Sun Jul 27 20:13:07 2025 +0200 Add default values for make (dist)check diff --git a/bindings/python/conftest.py b/bindings/python/conftest.py index 4f5510778..a91d7684d 100644 --- a/bindings/python/conftest.py +++ b/bindings/python/conftest.py @@ -20,6 +20,12 @@ def pytest_addoption(parser): metavar='ID', help='select rotator model number') parser.addoption('--rot-file', default=None, metavar='DEVICE', help='set device of the rotator to operate on') + else: + # fallbacks for invocations through a Makefile + parser.addoption('--model', type=int, default=1) + parser.addoption('--amp-file', default=None) + parser.addoption('--rig-file', default=None) + parser.addoption('--rot-file', default=None) parser.addoption('--serial-speed', type=int, default=0, metavar='BAUD', help='set serial speed of the serial port') parser.addoption('--hamlib-verbose', action='count', default=0, commit ed138699c343b3a0049a4d1bea84c2db35ef3d53 Author: Daniele Forsi IU5HKX <iu...@gm...> Date: Sun Jul 27 19:53:45 2025 +0200 Add missing files for make distcheck diff --git a/bindings/Makefile.am b/bindings/Makefile.am index 41b44a92a..651a7328c 100644 --- a/bindings/Makefile.am +++ b/bindings/Makefile.am @@ -22,11 +22,15 @@ SWGDEP = \ EXTRA_DIST = $(SWGFILES) \ Makefile.PL perltest.pl tcltest.tcl.in \ + python/conftest.py \ python/generate_tests.py \ python/test_Hamlib_Amp_class.py \ - python/test_Hamlib_class.py \ python/test_Hamlib_Rig_class.py \ python/test_Hamlib_Rot_class.py \ + python/test_Hamlib_class.py \ + python/test_amp.py \ + python/test_rig.py \ + python/test_rot.py \ python/test_startup.py \ luatest.lua README.python ----------------------------------------------------------------------- Summary of changes: bindings/Makefile.am | 6 +++++- bindings/python/conftest.py | 6 ++++++ 2 files changed, 11 insertions(+), 1 deletion(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |