Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 01 Nov 2014 12:14:34 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 194478] [new port] java/wildfly81
Message-ID:  <bug-194478-13-jN1QsgqAXA@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-194478-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-194478-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194478

John Marino <marino@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |marino@FreeBSD.org

--- Comment #3 from John Marino <marino@FreeBSD.org> ---
two problems:

1) the @dirrm lines are obsolete.  The latest portlint probably confirms this.
2) this line:
X    ${MKDIR} ${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION} && cd ${WRKSRC} &&
${FIND} . | ${CPIO} -pdmu -R ${USER}:${GROUP}
${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION}

That needs to be split up.  We assume each line is successful.  It would
probably be something like:
@${MKDIR} ${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION}
(cd ${WRKSRC} && ${FIND} . | ${CPIO} -pdmu -R ${USER}:${GROUP}
${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION})

Except that second line is wrong too.  You need to use ${COPYTREE_SHAR} macro,
not $CPIO with roll-your-own permissions settings

also, do you have the ability to provide poudriere logs proving this port is
fully tested with stage-qa checks?  (e.g. poudriere bulk -t or poudriere
testport commands).  If yes, please attach the log.  This is really important
for new ports.

-- 
You are receiving this mail because:
You are the assignee for the bug.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-194478-13-jN1QsgqAXA>