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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 614EF13835A for ; Sat, 24 Apr 2021 23:19:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7B1BE0844; Sat, 24 Apr 2021 23:19:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6A06EE0844 for ; Sat, 24 Apr 2021 23:19:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8F096341344 for ; Sat, 24 Apr 2021 23:19:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5060E722 for ; Sat, 24 Apr 2021 23:19:41 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1619260223.ed101e00ee873d95f0d01b2d637dff8e22c8c86e.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: ed101e00ee873d95f0d01b2d637dff8e22c8c86e X-VCS-Branch: master Date: Sat, 24 Apr 2021 23:19:41 +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: 035b92e1-ba05-446e-82e6-480bdfe705d0 X-Archives-Hash: ce86a6ca5d6ad4c12f8ec97ec3e4be6c commit: ed101e00ee873d95f0d01b2d637dff8e22c8c86e Author: Sergey Torokhov yandex ru> AuthorDate: Sat Apr 24 10:26:01 2021 +0000 Commit: Theo Anderson posteo de> CommitDate: Sat Apr 24 10:30:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ed101e00 games-board/rmahjong: fix bot install path; fix exec permissions The bot file is installed wrong path since fix module installation. Without shell-scripts and bot exec permissions app doesn't start. Signed-off-by: Sergey Torokhov yandex.ru> games-board/rmahjong/rmahjong-0.4_p20201106.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/games-board/rmahjong/rmahjong-0.4_p20201106.ebuild b/games-board/rmahjong/rmahjong-0.4_p20201106.ebuild index 4453adf3c..a8a3e6da8 100644 --- a/games-board/rmahjong/rmahjong-0.4_p20201106.ebuild +++ b/games-board/rmahjong/rmahjong-0.4_p20201106.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7,8,9} ) +PYTHON_COMPAT=( python3_{7..9} ) inherit desktop python-single-r1 xdg @@ -62,9 +62,12 @@ 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 - python_moduleinto bot - python_domodule "bot/bot" + python_moduleinto ${PN}/bot + python_domodule bot/bot + fperms 755 $(python_get_sitedir)/${PN}/bot/bot python_optimize "${D}/$(python_get_sitedir)/${PN}/"{client,server}/*.py