[Bug 194478] [new port] java/wildfly81

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sat Nov 1 12:14:34 UTC 2014


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194478

John Marino <marino at FreeBSD.org> changed:

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

--- Comment #3 from John Marino <marino at 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.


More information about the freebsd-ports-bugs mailing list