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 AD0AA15800F for ; Sun, 19 Feb 2023 05:17:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA24FE0827; Sun, 19 Feb 2023 05:17:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 AE552E0824 for ; Sun, 19 Feb 2023 05:17:55 +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 99DA1340F22 for ; Sun, 19 Feb 2023 05:17:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD7AD8AB for ; Sun, 19 Feb 2023 05:17:52 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1676783006.81630af485b010d84d0b11f8462bec3902f3c906.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-board/rmahjong/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-board/rmahjong/rmahjong-0.4_p20201106.ebuild X-VCS-Directories: games-board/rmahjong/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 81630af485b010d84d0b11f8462bec3902f3c906 X-VCS-Branch: dev Date: Sun, 19 Feb 2023 05:17:52 +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: 582bd64d-6c90-44b2-86b3-5e6158cefc72 X-Archives-Hash: deaa2df2af6bcc1d4690a4e2485ee69f commit: 81630af485b010d84d0b11f8462bec3902f3c906 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sun Feb 19 05:03:26 2023 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Sun Feb 19 05:03:26 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=81630af4 games-board/rmahjong: enable py3.11 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> games-board/rmahjong/rmahjong-0.4_p20201106.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/games-board/rmahjong/rmahjong-0.4_p20201106.ebuild b/games-board/rmahjong/rmahjong-0.4_p20201106.ebuild index aa3171c7b..a098bb1c0 100644 --- a/games-board/rmahjong/rmahjong-0.4_p20201106.ebuild +++ b/games-board/rmahjong/rmahjong-0.4_p20201106.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_{9..11} ) inherit desktop python-single-r1 toolchain-funcs xdg @@ -72,16 +72,16 @@ src_test() { src_install() { python_moduleinto ${PN} python_domodule {client/,server/,start.sh} - fperms 755 $(python_get_sitedir)/${PN}/start.sh - fperms 755 $(python_get_sitedir)/${PN}/server/run_server.sh + chmod 755 "${D}"/$(python_get_sitedir)/${PN}/start.sh + chmod 755 "${D}"/$(python_get_sitedir)/${PN}/server/run_server.sh python_moduleinto ${PN}/bot python_domodule bot/bot - fperms 755 $(python_get_sitedir)/${PN}/bot/bot + chmod 755 "${D}"/$(python_get_sitedir)/${PN}/bot/bot - python_optimize "${D}/$(python_get_sitedir)/${PN}/"{client,server}/*.py + python_optimize - dobin "rmahjong" + dobin rmahjong doicon -s 48 "${DISTDIR}/kmahjongg_${PN}.png" - make_desktop_entry "${PN}" "RMahjong" "kmahjongg_${PN}" "Game;BoardGame;" || die "Failed making desktop entry!" + make_desktop_entry "${PN}" "RMahjong" "kmahjongg_${PN}" "Game;BoardGame;" }