Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/pycnb/
Date: Wed, 30 Sep 2015 16:28:15
Message-Id: 1443630481.c4dde78aec07ee85fdc400e9d5db7d161da89899.floppym@gentoo
1 commit: c4dde78aec07ee85fdc400e9d5db7d161da89899
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 30 16:24:58 2015 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 30 16:28:01 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4dde78a
7
8 net-misc/pycnb: Simplify permissions fix
9
10 Package-Manager: portage-2.2.22_p3
11
12 net-misc/pycnb/pycnb-0.0.4-r1.ebuild | 3 +--
13 1 file changed, 1 insertion(+), 2 deletions(-)
14
15 diff --git a/net-misc/pycnb/pycnb-0.0.4-r1.ebuild b/net-misc/pycnb/pycnb-0.0.4-r1.ebuild
16 index c6468e4..54cfa23 100644
17 --- a/net-misc/pycnb/pycnb-0.0.4-r1.ebuild
18 +++ b/net-misc/pycnb/pycnb-0.0.4-r1.ebuild
19 @@ -23,6 +23,5 @@ RDEPEND="${DEPEND}"
20
21 src_unpack() {
22 default
23 - find ${P} -type d -exec chmod 0755 {} + || die
24 - find ${P} -type f -exec chmod 0644 {} + || die
25 + chmod -R a+rX,u+w,g-w,o-w ${P} || die
26 }