- Fix packaging When packaging with poudriere, poudriere complains: ====>> Error: Filesystem touched during stage (files must install to ${STAGEDIR}): usr/local/etc/apache22/httpd.conf: size (16915, 16974) because apxs modifies the apache config. This is done in the pkg-plist @exec as well, so there's no need to call it when packaging. So the attached patch takes care of the issue. Port maintainer (douglas@douglasthrift.net) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: SVN)
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Maintainer of www/mod_wsgi3, Please note that PR ports/186749 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/186749 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
Hello, This looks fine, I approve. Would this also apply to the mod_wsgi2 port as well? Thanks! Douglas William Thrift <douglas@douglasthrift.net> <http://douglasthrift.net/> On 2/13/2014 2:50 PM, Edwin Groothuis wrote: > Maintainer of www/mod_wsgi3, > > Please note that PR ports/186749 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/186749 >
State Changed From-To: feedback->open Maintainer approved. Assign to submitter.
Responsible Changed From-To: freebsd-ports-bugs->swills Maintainer approved. Assign to submitter.
Hi, Yes, this would apply to the mod_wsgi2 port as well (and probably all ports that call APXS, but that's a separate topic). Would you like me to go ahead and commit the change there as well? Steve
Yes, please do. Thanks! Douglas William Thrift <douglas@douglasthrift.net> <http://douglasthrift.net/> On 2/14/2014 11:03 AM, Steve Wills wrote: > Hi, > > Yes, this would apply to the mod_wsgi2 port as well (and probably all ports > that call APXS, but that's a separate topic). Would you like me to go ahead and > commit the change there as well? > > Steve >
Author: swills Date: Fri Feb 14 19:31:07 2014 New Revision: 344298 URL: http://svnweb.freebsd.org/changeset/ports/344298 QAT: https://qat.redports.org/buildarchive/r344298/ Log: - Calling apxs when building packages breaks staging checks, so only do it if PACKAGE_BUILDING is not set. PR: ports/186749 Submitted by: swills (myself) Approved by: Douglas Thrift <douglas@douglasthrift.net> (maintainer) Modified: head/www/mod_wsgi2/Makefile head/www/mod_wsgi3/Makefile Modified: head/www/mod_wsgi2/Makefile ============================================================================== --- head/www/mod_wsgi2/Makefile Fri Feb 14 19:22:27 2014 (r344297) +++ head/www/mod_wsgi2/Makefile Fri Feb 14 19:31:07 2014 (r344298) @@ -37,6 +37,8 @@ pre-everything:: @${ECHO_MSG} "=========================================================" post-install: +.if !defined(PACKAGE_BUILDING) @${APXS} -e -a -n "${SHORTMODNAME}" "${APACHEMODDIR}/${MODULENAME}.so" +.endif .include <bsd.port.mk> Modified: head/www/mod_wsgi3/Makefile ============================================================================== --- head/www/mod_wsgi3/Makefile Fri Feb 14 19:22:27 2014 (r344297) +++ head/www/mod_wsgi3/Makefile Fri Feb 14 19:31:07 2014 (r344298) @@ -35,6 +35,8 @@ pre-everything:: @${ECHO_MSG} "=========================================================" post-install: +.if !defined(PACKAGE_BUILDING) @${APXS} -e -a -n "${SHORTMODNAME}" "${APACHEMODDIR}/${MODULENAME}.so" +.endif .include <bsd.port.mk> _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!