From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6EDDA158015 for ; Thu, 28 Dec 2023 19:49:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97FDB2BC02F; Thu, 28 Dec 2023 19:49:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 028492BC02F for ; Thu, 28 Dec 2023 19:49:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1294434068A for ; Thu, 28 Dec 2023 19:49:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64D1BEE8 for ; Thu, 28 Dec 2023 19:49:16 +0000 (UTC) From: "Gonçalo Negrier Duarte" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gonçalo Negrier Duarte" Message-ID: <1703792667.250f7e701ef7f3aecb2bddcf0d69e2483727d16d.gonegrier.duarte@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-util/r2modman-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-util/r2modman-bin/r2modman-bin-3.1.45.ebuild X-VCS-Directories: games-util/r2modman-bin/ X-VCS-Committer: gonegrier.duarte X-VCS-Committer-Name: Gonçalo Negrier Duarte X-VCS-Revision: 250f7e701ef7f3aecb2bddcf0d69e2483727d16d X-VCS-Branch: dev Date: Thu, 28 Dec 2023 19:49:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0bb6f3ba-16a3-4eeb-9c5d-384f57f308a7 X-Archives-Hash: d86e6d8410030e2203c26ea464dace1f commit: 250f7e701ef7f3aecb2bddcf0d69e2483727d16d Author: Gonçalo Negrier Duarte gmail com> AuthorDate: Thu Dec 28 19:44:27 2023 +0000 Commit: Gonçalo Negrier Duarte gmail com> CommitDate: Thu Dec 28 19:44:27 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=250f7e70 games-util/r2modman-bin: update LICENSE Signed-off-by: Gonçalo Negrier Duarte gmail.com> games-util/r2modman-bin/r2modman-bin-3.1.45.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/games-util/r2modman-bin/r2modman-bin-3.1.45.ebuild b/games-util/r2modman-bin/r2modman-bin-3.1.45.ebuild index 1793d45137..979bc070d1 100644 --- a/games-util/r2modman-bin/r2modman-bin-3.1.45.ebuild +++ b/games-util/r2modman-bin/r2modman-bin-3.1.45.ebuild @@ -20,7 +20,7 @@ SRC_URI=" DESCRIPTION="A simple and easy to use mod manager for several games using Thunderstore" HOMEPAGE="https://github.com/ebkr/r2modmanPlus" -LICENSE="GPL-3" +LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" @@ -28,12 +28,15 @@ KEYWORDS="~amd64 ~x86" S="${WORKDIR}" src_install() { - ## Install binaries file + # Install binaries file mv "${M_PN}-${PV}" "${M_PN}" || die #Fix folder name insinto /opt doins -r "${M_PN}" fperms 755 "/opt/${M_PN}/r2modman" + #Install License file in proper location + find "${ED}" -name "LICENSE*" -delete || die + # Install desktop file domenu "${FILESDIR}/${M_PN}".desktop @@ -47,7 +50,3 @@ src_install() { newicon -s 192 "${DISTDIR}/${M_PN}"-192x192.png "${M_PN}".png newicon -s 256 "${DISTDIR}/${M_PN}"-256x256.png "${M_PN}".png } - -pkg_postinst() { - xdg_desktop_database_update -}