upgpkg: discord-electron-openasar 0.0.27+809-3

Fix whitespace indentation in install file
Replace ignore-gpu-blacklist with ignore-gpu-blocklist as the former does not work anymore
This commit is contained in:
Manuel 2023-05-27 21:55:29 +02:00
parent 834d95a5ed
commit d5513a1e94
Signed by: SunRed
GPG Key ID: 4085037435E1F07A
4 changed files with 8 additions and 7 deletions

View File

@ -1,7 +1,7 @@
pkgbase = discord-electron-openasar
pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance
pkgver = 0.0.27+809
pkgrel = 2
pkgrel = 3
url = https://discord.com
install = discord-electron-openasar.install
arch = x86_64
@ -22,7 +22,7 @@ pkgbase = discord-electron-openasar
source = discord-launcher.sh
source = git+https://github.com/goosemod/openasar.git#commit=a8b07392808032f95ac3a7c5856e76d2619c91ae
sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f
sha512sums = d8c531d23014611b1e9dfa2d268747ba601f647c2cbfc26c15c9eebcec6f9feb454d10c6f603b9938e8da568da3080372b14309e966e0d00c0e1284a14591a83
sha512sums = ad2c16b6fc539f4315755df10c969822a38879558badfbd2ff9bf53558e755a7b215ce7415e35d7f294539a971ebc5c283f9293b79891893d5f28cd441ca6279
sha512sums = SKIP
pkgname = discord-electron-openasar

View File

@ -9,7 +9,7 @@ _pkgname=discord
_electron=22
pkgver=0.0.27+809
_pkgver=${pkgver%%+*}
pkgrel=2
pkgrel=3
pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance"
arch=('x86_64')
provides=("${_pkgname}")
@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/discord-${_pkgver}.tar.
'discord-launcher.sh'
"git+https://github.com/goosemod/openasar.git#commit=a8b07392808032f95ac3a7c5856e76d2619c91ae")
sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f'
'd8c531d23014611b1e9dfa2d268747ba601f647c2cbfc26c15c9eebcec6f9feb454d10c6f603b9938e8da568da3080372b14309e966e0d00c0e1284a14591a83'
'ad2c16b6fc539f4315755df10c969822a38879558badfbd2ff9bf53558e755a7b215ce7415e35d7f294539a971ebc5c283f9293b79891893d5f28cd441ca6279'
'SKIP')
# just in case I get the version wrong

View File

@ -4,7 +4,7 @@ post_upgrade() {
cat <<EOF
==> You can now add or uncomment additional Electron flags in
'~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set)
'~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set)
EOF
}
@ -12,7 +12,7 @@ EOF
post_install() {
cat <<EOF
==> In case of performance problems consider adding or uncommenting Electron
flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set)
flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set)
EOF
}

View File

@ -7,10 +7,11 @@ flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf"
declare -a flags
if [[ -f "${flags_file}" ]]; then
sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}"
mapfile -t < "${flags_file}"
else
cat > "${flags_file}" <<EOF
#--ignore-gpu-blacklist
#--ignore-gpu-blocklist
#--enable-gpu-rasterization
#--enable-zero-copy
EOF