svn commit: r550410 - head/mail/getmail6

Joseph Mingrone jrm at FreeBSD.org
Mon Sep 28 08:52:39 UTC 2020


Author: jrm
Date: Mon Sep 28 08:52:38 2020
New Revision: 550410
URL: https://svnweb.freebsd.org/changeset/ports/550410

Log:
  mail/getmail6: fix build errors on package-as-user
  
  This build fails as user, because in python3 __pycache__ files are always
  created with root as owner.  Therefore, the @${CHMOD} command in
  post-install: fails when run as user.  Upon closer inspection, the
  @${CHMOD} operation is superfluous. File permissions in the final package
  are fine without it.
  
  PR:		249175
  Submitted by:	m.bueker at berlin.de (maintainer)

Modified:
  head/mail/getmail6/Makefile   (contents, props changed)

Modified: head/mail/getmail6/Makefile
==============================================================================
--- head/mail/getmail6/Makefile	Mon Sep 28 08:43:08 2020	(r550409)
+++ head/mail/getmail6/Makefile	Mon Sep 28 08:52:38 2020	(r550410)
@@ -26,9 +26,6 @@ PORTEXAMPLES=	getmailrc-examples
 
 OPTIONS_DEFINE=	DOCS EXAMPLES
 
-post-install:
-	@${CHMOD} -R 644 ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/getmailcore/*
-
 post-install-DOCS-on:
 	@${CP} ${WRKSRC}/README ${WRKSRC}/docs/
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}


More information about the svn-ports-all mailing list