ports/152224: [patch] fix installed permissions for
?lang/python27
John Hein
jhein at symmetricom.com
Mon Nov 15 18:30:15 UTC 2010
The following reply was made to PR ports/152224; it has been noted by GNATS.
From: John Hein <jhein at symmetricom.com>
To: Oliver Fromme <olli at lurza.secnetix.de>
Cc: Anonymous <swell.k at gmail.com>,
python at FreeBSD.org,
bug-followup at FreeBSD.org
Subject: Re: ports/152224: [patch] fix installed permissions for ?lang/python27
Date: Mon, 15 Nov 2010 11:21:06 -0700
--9oaHwTfnCu
Content-Type: text/plain; charset=us-ascii
Content-Description: message body text
Content-Transfer-Encoding: 7bit
Oliver Fromme wrote at 18:35 +0100 on Nov 15, 2010:
> Anonymous <swell.k at gmail.com> wrote:
> > John Hein <jhein at symmetricom.com> writes:
> > > +post-extract:
> > > +# The distribution tarball for python 2.7 has permission bits for 'others'
> > > +# set to 0. Later during install, we copy Tools and Demo to the installed
> > > +# prefix, so set them right here.
> > > + ${FIND} ${WRKSRC}/Tools ${WRKSRC}/Demo -type d | ${XARGS} ${CHMOD} a+rx
> > > + ${FIND} ${WRKSRC}/Tools ${WRKSRC}/Demo -type f | ${XARGS} ${CHMOD} a+r
> > > +
> >
> > This can be reduced to one command
> >
> > ${FIND} ${WRKSRC}/Tools ${WRKSRC}/Demo \
> > -type d -exec ${CHMOD} a+rx {} + \
> > -or -type f -exec ${CHMOD} a+r {} +
>
> It's unclear to me why you have to use find(1) at all.
> The following simple command should work equally well:
>
> ${CHMOD} -R og=u-w ${WRKSRC}/Tools ${WRKSRC}/Demo
Yes, that's better still and will work fine since the user bits are
good in the tarball. Updated patch (with a fix for the path, too)...
--9oaHwTfnCu
Content-Type: text/plain; name="p"
Content-Description: just use chmod; fix path with PYTHON_WRKSRC
Content-Disposition: inline;
filename="p"
Content-Transfer-Encoding: 7bit
Index: Makefile
===================================================================
RCS file: /base/FreeBSD-CVS/ports/lang/python27/Makefile,v
retrieving revision 1.169
diff -u -p -r1.169 Makefile
--- Makefile 6 Sep 2010 00:25:04 -0000 1.169
+++ Makefile 15 Nov 2010 18:16:55 -0000
@@ -146,6 +146,12 @@ CONFIGURE_ARGS+= --disable-ipv6
CONFIGURE_ARGS+= --with-fpectl
.endif
+post-extract:
+# The distribution tarball for python 2.7 has permission bits for 'others'
+# set to 0. Later during install, we copy Tools and Demo to the installed
+# prefix, so set them right here.
+ ${CHMOD} og=u-w ${PYTHON_WRKSRC}/Tools ${PYTHON_WRKSRC}/Demo
+
pre-patch:
${CP} -r ${PATCH_WRKSRC}/Lib/plat-freebsd8 \
${PATCH_WRKSRC}/Lib/plat-freebsd9
@@ -260,12 +266,12 @@ post-install:
.if !defined(NOPORTDATA)
@${MKDIR} ${DATADIR}
@cd ${PYTHON_WRKSRC}; ${TAR} -cf - Tools | \
- (cd ${DATADIR}; ${TAR} -xf -)
+ (cd ${DATADIR}; ${TAR} --no-same-owner -xf -)
.endif
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
@cd ${PYTHON_WRKSRC}/Demo; ${TAR} -cf - * | \
- (cd ${EXAMPLESDIR}; ${TAR} -xf -)
+ (cd ${EXAMPLESDIR}; ${TAR} --no-same-owner -xf -)
.endif
@${CAT} ${PKGMESSAGE}
--9oaHwTfnCu--
More information about the freebsd-python
mailing list