From fed2a329827f0a98192980ccfa042bba2fd2dd73 Mon Sep 17 00:00:00 2001 From: Sheldon Lee Date: Thu, 6 Oct 2022 20:58:13 +0100 Subject: [PATCH] Bump to version 3.8.6 --- metadata/md5-cache/net-im/webcord-bin-3.8.6 | 9 ++++ net-im/webcord-bin/Manifest | 1 + net-im/webcord-bin/webcord-bin-3.8.6.ebuild | 53 +++++++++++++++++++++ 3 files changed, 63 insertions(+) create mode 100644 metadata/md5-cache/net-im/webcord-bin-3.8.6 create mode 100644 net-im/webcord-bin/webcord-bin-3.8.6.ebuild diff --git a/metadata/md5-cache/net-im/webcord-bin-3.8.6 b/metadata/md5-cache/net-im/webcord-bin-3.8.6 new file mode 100644 index 0000000..8eed5cd --- /dev/null +++ b/metadata/md5-cache/net-im/webcord-bin-3.8.6 @@ -0,0 +1,9 @@ +DEFINED_PHASES=install prepare unpack +DESCRIPTION=A Discord and Fosscord client implemented directly without Discord API. +EAPI=8 +HOMEPAGE=https://github.com/SpacingBat3/WebCord +KEYWORDS=~amd64 +LICENSE=MIT +SLOT=0 +SRC_URI=https://github.com/SpacingBat3/WebCord/releases/download/v3.8.6/WebCord-3.8.6-x64.AppImage +_md5_=52579231c73f87a29455fe138d3697f1 diff --git a/net-im/webcord-bin/Manifest b/net-im/webcord-bin/Manifest index 3dafa02..51c3645 100644 --- a/net-im/webcord-bin/Manifest +++ b/net-im/webcord-bin/Manifest @@ -1 +1,2 @@ DIST WebCord-3.8.3-x64.AppImage 103695552 BLAKE2B 90fc5a7dd9eb0e159fddfa01b6cdc50df7a481eefc99bc83950a0a425ae94d46c5024f8d16e9799e19029997862326f619e5d209efac0b54792afc4fd3269165 SHA512 b7517ac295a678e7668fb6acad0aab28ba4e144b73e5e5005202f68c8087158be0db6b0ae2d8fde4c8568d2768c090c3f174a4709fe461a5d83ff1af110c4528 +DIST WebCord-3.8.6-x64.AppImage 105657536 BLAKE2B 593d8f5e43f2da2ea2ca4fedfaf462a707a09b375eeb9ca2fc465955f7372510e7a6de2536dfeec8b5945d3f2e5645846aac351cfe60bf5d26d9c02fe338ef7b SHA512 3329d94429714e30d0cc44a307eca2788e96600d4f1a991996200e0f62395f409c211f214cc4a5d03f123f479360332233a0f2c0d22cd50461c0cc0dcf050bbc diff --git a/net-im/webcord-bin/webcord-bin-3.8.6.ebuild b/net-im/webcord-bin/webcord-bin-3.8.6.ebuild new file mode 100644 index 0000000..d5587b8 --- /dev/null +++ b/net-im/webcord-bin/webcord-bin-3.8.6.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A Discord and Fosscord client implemented directly without Discord API." + +HOMEPAGE="https://github.com/SpacingBat3/WebCord" +SRC_URI="https://github.com/SpacingBat3/WebCord/releases/download/v${PV}/WebCord-${PV}-x64.AppImage" + +LICENSE="MIT" + +SLOT="0" + +KEYWORDS="~amd64" + +src_unpack() { + mkdir "${S}" || die + cp "${DISTDIR}/${A}" "${S}" || die +} + +src_prepare() { + chmod +x ${A} + ./${A} --appimage-extract || die "Extraction Failed" + + default + + # Edit files to reflect naming. + sed -i -e "s/lib\/webcord/lib\/${PN}/" "squashfs-root/usr/bin/webcord" || die "Sed failed!" + sed -i -e "s/webcord/${PN}/" "squashfs-root/WebCord.desktop" || die "Sed failed!" + sed -i -e "s/\.\/${PN}.png/${PN}/" "squashfs-root/WebCord.desktop" || die "Sed failed!" + + mv "squashfs-root/usr/lib/webcord" "squashfs-root/usr/lib/${PN}" || die + # Move executable out to be installed as executable later. + mv "squashfs-root/usr/lib/${PN}/webcord" ./ || die +} + +src_install() { + exeinto "/usr/bin" + newexe "squashfs-root/usr/bin/webcord" "${PN}" + + insinto "/usr/lib" + doins -r "squashfs-root/usr/lib/${PN}" + + exeinto "/usr/lib/${PN}" + doexe "webcord" + + insinto "/usr/share/applications" + newins "squashfs-root/WebCord.desktop" "${PN}.desktop" + + insinto "/usr/share/pixmaps" + newins "squashfs-root/webcord.png" "${PN}.png" +}