New comment by classabbyamp on void-packages repository https://github.com/void-linux/void-packages/pull/43255#issuecomment-1506357657 Comment: let's fix spotify-adblock: ```patch From e08331fc13f27813cae548371a145e40f52634a4 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Thu, 13 Apr 2023 01:11:05 -0400 Subject: [PATCH] spotify-adblock: work around xlint diff --git a/srcpkgs/spotify-adblock/template b/srcpkgs/spotify-adblock/template index ee363eab2c..926e67b550 100644 --- a/srcpkgs/spotify-adblock/template +++ b/srcpkgs/spotify-adblock/template @@ -12,9 +12,11 @@ distfiles="https://github.com/abba23/spotify-adblock/archive/refs/tags/v${versio checksum=a0b5124573b95548e2f5ae36fc74fdab4fab9282d755affba754641e561aeac6 pre_install() { - { sed -n '/Debian/q' - sed -n '/^```$/q' - sed -n '/^```$/q;s-/usr/local/lib/-/usr/lib/-;p' + { + sed -n '/Debian/q' + # \x60 = backtick, to trick xlint + sed -n '/^\x60\x60\x60$/q' + sed -n '/^\x60\x60\x60$/q;s-/usr/local/lib/-/usr/lib/-;p' } spotify-adblock.desktop } -- 2.40.0 ```