Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Sep 2020 08:52:38 +0000 (UTC)
From:      Joseph Mingrone <jrm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r550410 - head/mail/getmail6
Message-ID:  <202009280852.08S8qcKA046143@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009280852.08S8qcKA046143>