head 1.1; access; symbols pkgsrc-2026Q2:1.1.0.24 pkgsrc-2026Q2-base:1.1 pkgsrc-2026Q1:1.1.0.22 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.20 pkgsrc-2025Q4-base:1.1 pkgsrc-2025Q3:1.1.0.18 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.16 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.14 pkgsrc-2025Q1-base:1.1 pkgsrc-2024Q4:1.1.0.12 pkgsrc-2024Q4-base:1.1 pkgsrc-2024Q3:1.1.0.10 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.8 pkgsrc-2024Q2-base:1.1 pkgsrc-2024Q1:1.1.0.6 pkgsrc-2024Q1-base:1.1 pkgsrc-2023Q4:1.1.0.4 pkgsrc-2023Q4-base:1.1 pkgsrc-2023Q3:1.1.0.2 pkgsrc-2023Q3-base:1.1; locks; strict; comment @# @; 1.1 date 2023.08.10.18.15.01; author sjmulder; state Exp; branches; next ; commitid MlceEDGcbnsFIgAE; desc @@ 1.1 log @net/tut: Fix beeep dependency on Illumos There were two issues with dependency 'beeep': 1. The 'unix' backends weren't selected for Illumos https://github.com/gen2brain/beeep/pull/54 2. The fallback 'unsupported' backend had a signature mismatch: https://github.com/gen2brain/beeep/pull/53 Both were fixed in a patched fork at https://github.com/sjmulder/beeep, which is used here. Once the issue is fixed upstream the original dependencies can be used again. @ text @$NetBSD$ Patched version of 'beeep' with fixes for Illumos. --- go.mod.orig 2023-01-26 17:42:48.000000000 +0000 +++ go.mod @@@@ -7,13 +7,13 @@@@ require ( github.com/adrg/xdg v0.4.0 github.com/atotto/clipboard v0.1.4 github.com/gdamore/tcell/v2 v2.5.4 - github.com/gen2brain/beeep v0.0.0-20220909211152-5a9ec94374f6 github.com/gobwas/glob v0.2.3 github.com/icza/gox v0.0.0-20230117093757-93f961aa2755 github.com/microcosm-cc/bluemonday v1.0.21 github.com/pelletier/go-toml/v2 v2.0.6 github.com/rivo/tview v0.0.0-20230104153304-892d1a2eb0da github.com/rivo/uniseg v0.4.3 + github.com/sjmulder/beeep v0.0.0-20230810161728-20d8a311bc17 github.com/spf13/pflag v1.0.5 golang.org/x/exp v0.0.0-20230125214544-b3c2aaf6208d golang.org/x/net v0.5.0 @@@@ -32,7 +32,7 @@@@ require ( github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect github.com/tadvi/systray v0.0.0-20190226123456-11a2b8fa57af // indirect github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80 // indirect - golang.org/x/sys v0.4.0 // indirect + golang.org/x/sys v0.6.0 // indirect golang.org/x/term v0.4.0 // indirect golang.org/x/text v0.6.0 // indirect ) @