From c1b6619077ef4ba92ea06608fd26f88a77ba2a4a Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Sat, 1 Feb 2025 16:00:46 -0500 Subject: [PATCH] Update isd-bin to 0.4.1 and use desktop entry from upstream --- sys-apps/isd-bin/Manifest | 4 ++-- sys-apps/isd-bin/files/isd.desktop | 11 ----------- .../{isd-bin-0.3.0.ebuild => isd-bin-0.4.1.ebuild} | 10 +++++----- 3 files changed, 7 insertions(+), 18 deletions(-) delete mode 100644 sys-apps/isd-bin/files/isd.desktop rename sys-apps/isd-bin/{isd-bin-0.3.0.ebuild => isd-bin-0.4.1.ebuild} (79%) diff --git a/sys-apps/isd-bin/Manifest b/sys-apps/isd-bin/Manifest index eadeb63..ccd65b0 100644 --- a/sys-apps/isd-bin/Manifest +++ b/sys-apps/isd-bin/Manifest @@ -1,2 +1,2 @@ -DIST isd-bin-0.3.0.AppImage 84307344 BLAKE2B 59974ccaf53ee52cc6cd8052c1ae63c823799ef2d5e31255e82448530837d9b53a06435b32eb0be859b5da85314516af9d0348c1304c6756f816189a903105d5 SHA512 c1ea2620359c9dce8794e855b3de9e3de6dce96f63c9c6bbf07842781643f67436e3e12f1f25da0ba93d95c70428afce546bc036f58ec9b5070093279cf29d16 -DIST isd-bin-0.3.0.tar.gz 338588 BLAKE2B 820b9a0b5247faad2686192bdc21673001e249b0f5a24376804eb907ac46dbec89f5f95440e444e9be2505f6a042b9833f03f6862a194372b5eb09109a26158e SHA512 933d1bc5c1165129dfcd5a522c4232ee35888df91d24214185bda539a6b827c57123de2a072182e9afd7adc1faed157d77c2dac221c93c413a4e06f87e040f36 +DIST isd-bin-0.4.1.AppImage 85118352 BLAKE2B 3fc0fa9b7b409c0e9dac5f86f9d1402129009fa9f0bd810c61c7954d2fbe08241a657f884e9ce0424b1fdb530d70c0a000f8e397276b7f9a8081b59e1ac72aa1 SHA512 1ebd6c13c0eaeefdee52a9107c87862156be8f1c95c2f39204478ee03d7e9a423d33175613b7d520ac91c7a6f2f8f2bdf46ffce6c47bbfd866f6b62e960407da +DIST isd-bin-0.4.1.tar.gz 300782 BLAKE2B e04f6321a08bfe7575aa3b58367339bfca5307ac43b7e98d8285d090563ec21213c1c37b6ce9d10eceb477d06bdb42583307bf7bfe198239b193be8511b3529a SHA512 d060b04b630c18f40989c53265308a35c08b101130ad78832b192cf9f8dfb13795a8ab4e973f92f2bf8942f615e2adbc0e07beb041eec2fc9aa746637563eee8 diff --git a/sys-apps/isd-bin/files/isd.desktop b/sys-apps/isd-bin/files/isd.desktop deleted file mode 100644 index 8aafeca..0000000 --- a/sys-apps/isd-bin/files/isd.desktop +++ /dev/null @@ -1,11 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=isd -GenericName=Interactive Systemd -Comment=A better way to work with systemd units -Icon=isd -Exec=isd -Terminal=true -Categories=System;Monitor;ConsoleOnly; -Keywords=system;process;task diff --git a/sys-apps/isd-bin/isd-bin-0.3.0.ebuild b/sys-apps/isd-bin/isd-bin-0.4.1.ebuild similarity index 79% rename from sys-apps/isd-bin/isd-bin-0.3.0.ebuild rename to sys-apps/isd-bin/isd-bin-0.4.1.ebuild index 2489190..2057252 100644 --- a/sys-apps/isd-bin/isd-bin-0.3.0.ebuild +++ b/sys-apps/isd-bin/isd-bin-0.4.1.ebuild @@ -6,7 +6,7 @@ EAPI=8 DESCRIPTION="isd (interactive systemd) - a better way to work with systemd units" HOMEPAGE="https://isd-project.github.io/isd" SRC_URI=" - https://github.com/isd-project/isd/releases/download/v${PV}/isd.AppImage -> ${P}.AppImage + https://github.com/isd-project/isd/releases/download/v${PV}/isd.x86_64-linux.AppImage -> ${P}.AppImage https://github.com/isd-project/isd/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz " @@ -28,11 +28,11 @@ src_install() { cp ${DISTDIR}/${P}.AppImage isd || die dobin isd - cd ${S}/assets - insinto /usr/share/icons/hicolor/1024x1024/apps + cd ${S}/share/icons/hicolor/512x512/apps + insinto /usr/share/icons/hicolor/512x512/apps doins isd.png - # Add version to desktop file + cd ${S}/share/applications insinto /usr/share/applications - doins ${FILESDIR}/isd.desktop + doins isd.desktop }