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 4C61C138206 for ; Sat, 30 Apr 2016 16:57:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B823921C037; Sat, 30 Apr 2016 16:57:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 337A021C00E for ; Sat, 30 Apr 2016 16:57:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D738D340D57 for ; Sat, 30 Apr 2016 16:57:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78FB533B for ; Sat, 30 Apr 2016 16:57:44 +0000 (UTC) From: "Andreas Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" Message-ID: <1462035372.0ebe69b5a4f45573dfb56bbd90c3bf4be8521db1.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/g-cpan/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/g-cpan/g-cpan-9999.ebuild X-VCS-Directories: app-portage/g-cpan/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 0ebe69b5a4f45573dfb56bbd90c3bf4be8521db1 X-VCS-Branch: master Date: Sat, 30 Apr 2016 16:57:44 +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: 8de27c6e-0357-4644-9173-d0693a1b40e3 X-Archives-Hash: af8231f5b06a3515d90c2d6c0fa74a62 commit: 0ebe69b5a4f45573dfb56bbd90c3bf4be8521db1 Author: Sergiy Borodych gmail com> AuthorDate: Wed Apr 27 13:01:40 2016 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Sat Apr 30 16:56:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ebe69b5 app-portage/g-cpan: change to create dirs for portage user/group this is allow to use g-cpan users besides root more easely, just add users into portage group and do not fix permissions every install app-portage/g-cpan/g-cpan-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-portage/g-cpan/g-cpan-9999.ebuild b/app-portage/g-cpan/g-cpan-9999.ebuild index 1d1c113..1ff7291 100644 --- a/app-portage/g-cpan/g-cpan-9999.ebuild +++ b/app-portage/g-cpan/g-cpan-9999.ebuild @@ -32,15 +32,15 @@ RDEPEND="${DEPEND} src_install() { perl-module_src_install - diropts "-m0755" + diropts -m0775 -o portage -g portage dodir "/var/tmp/g-cpan" dodir "/var/log/g-cpan" keepdir "/var/log/g-cpan" } pkg_postinst() { - elog "You may wish to adjust the permissions on /var/tmp/g-cpan" - elog "if you have users besides root expecting to use g-cpan." + elog "If you want to use g-cpan besides root you may wish to" + elog " adjust the permissions on /var/tmp/g-cpan or add users into portage group." elog "Please note that some CPAN packages need additional manual" elog "parameters or tweaking, due to bugs in their build systems." }