From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C9A2813877A for ; Mon, 4 Aug 2014 22:54:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8963EE0963; Mon, 4 Aug 2014 22:54:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B7CFAE094E for ; Mon, 4 Aug 2014 22:54:24 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E4B8034016C for ; Mon, 4 Aug 2014 22:54:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id C646F18821 for ; Mon, 4 Aug 2014 22:54:21 +0000 (UTC) From: "Pavlos Ratis" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pavlos Ratis" Message-ID: <1205443711.207b47e9e3a634f9dc0ea157d2f794bc75b98347.dastergon@gentoo> Subject: [gentoo-commits] proj/games:master commit in: eclass/ X-VCS-Repository: proj/games X-VCS-Files: eclass/games.eclass X-VCS-Directories: eclass/ X-VCS-Committer: dastergon X-VCS-Committer-Name: Pavlos Ratis X-VCS-Revision: 207b47e9e3a634f9dc0ea157d2f794bc75b98347 X-VCS-Branch: master Date: Mon, 4 Aug 2014 22:54:21 +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-Archives-Salt: d069624d-b679-435a-94b6-8916ebcbaae1 X-Archives-Hash: 73928dcb38356f3300ad9d934d17dd4e commit: 207b47e9e3a634f9dc0ea157d2f794bc75b98347 Author: Chris Gianelloni gentoo org> AuthorDate: Thu Mar 13 21:28:31 2008 +0000 Commit: Pavlos Ratis gentoo org> CommitDate: Thu Mar 13 21:28:31 2008 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/games.git;a=commit;h=207b47e9 Comment out the code to change files in GAMES_BINDIR, since it fails it badly if the file is a shell script. svn path=/; revision=9 --- eclass/games.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/games.eclass b/eclass/games.eclass index 8a7f681..eaa6520 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -105,13 +105,13 @@ prepgamesdirs() { [[ -d ${D}/${GAMES_BINDIR} ]] || return 0 if [[ -n ${GAMES_SCORES_FILES} ]] then - perms=2775 +# perms=2775 for f in ${GAMES_SCORES_FILES} do GAMES_GROUP=${GAMES_SCORES_GROUP} gamesowners "${D}/${f}" done - GAMES_GROUP=${GAMES_SCORES_GROUP} gamesowners -R \ - "${D}/${GAMES_BINDIR}"/* +# GAMES_GROUP=${GAMES_SCORES_GROUP} gamesowners -R \ +# "${D}/${GAMES_BINDIR}"/* fi find "${D}/${GAMES_BINDIR}" -maxdepth 1 -type f -exec chmod ${perms} '{}' \; }