diff options
author | Nicola Vitale <nivit@FreeBSD.org> | 2025-09-06 11:08:55 +0200 |
---|---|---|
committer | Nicola Vitale <nivit@FreeBSD.org> | 2025-09-06 11:11:25 +0200 |
commit | ab5f4e9bc9a7db7815adc1db16baa01c45b73145 (patch) | |
tree | 0c5440a7530c1b790ab7d2c9f0fb2fecbb83914b /audio/py-pyradio/files/patch-pyradio_main.py | |
parent | devel/R-cran-sfsmisc: Update to 1.1-22 (diff) |
audio/py-pyradio: Update to 0.9.3.11.16
- Add files/patch-pyradio_main.py
( see https://github.com/coderholic/pyradio/issues/301 )
Release changes: https://github.com/coderholic/pyradio/releases/tag/0.9.3.11.16
Reported by: Spiros Georgaras <notifications@github.com>
Diffstat (limited to 'audio/py-pyradio/files/patch-pyradio_main.py')
-rw-r--r-- | audio/py-pyradio/files/patch-pyradio_main.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/audio/py-pyradio/files/patch-pyradio_main.py b/audio/py-pyradio/files/patch-pyradio_main.py new file mode 100644 index 000000000000..dbd9c6074182 --- /dev/null +++ b/audio/py-pyradio/files/patch-pyradio_main.py @@ -0,0 +1,12 @@ +--- pyradio/main.py.orig 2025-09-02 14:51:30 UTC ++++ pyradio/main.py +@@ -667,7 +667,8 @@ If nothing else works, try the following command: + if args.version: + pyradio_config.get_pyradio_version() + print(f'PyRadio version: [green]{pyradio_config.current_pyradio_version}[/green]') +- print(f"Python version: [green]{sys.version.replace('\\n', ' ').replace('\\r', ' ')}[/green]") ++ ver = sys.version.replace('\\n', ' ').replace('\\r', ' ') ++ print(f"Python version: [green]{ver}[/green]") + if pyradio_config.distro != 'None': + print(f'Distribution: [green]{pyradio_config.distro}[/green]') + return |