svn commit: r392987 - head/Mk/Uses

Jimmy Olgeni olgeni at FreeBSD.org
Mon Jul 27 15:34:26 UTC 2015


Author: olgeni
Date: Mon Jul 27 15:34:25 2015
New Revision: 392987
URL: https://svnweb.freebsd.org/changeset/ports/392987

Log:
  Not all Hex package specifications start with the '~' character,
  so let's just look for '"'.

Modified:
  head/Mk/Uses/elixir.mk

Modified: head/Mk/Uses/elixir.mk
==============================================================================
--- head/Mk/Uses/elixir.mk	Mon Jul 27 15:21:19 2015	(r392986)
+++ head/Mk/Uses/elixir.mk	Mon Jul 27 15:34:25 2015	(r392987)
@@ -72,7 +72,7 @@ RUN_DEPENDS+=	${depend:T}>=0:${PORTSDIR}
 .if !target(do-build)
 do-build:
 .if ${MIX_REWRITE} != ""
-	@${REINPLACE_CMD} -i '' -E -e "s@{.*(only|optional): .*},?@@; s@{ *:([a-zA-Z0-9_]+), *(github:|\"~).*}@{ :\1, path: \"${ELIXIR_LIB_ROOT}/\\1\", compile: false }@" ${WRKSRC}/mix.exs
+	@${REINPLACE_CMD} -i '' -E -e "s@{.*(only|optional): .*},?@@; s@{ *:([a-zA-Z0-9_]+), *(github:|\").*}@{ :\1, path: \"${ELIXIR_LIB_ROOT}/\\1\", compile: false }@" ${WRKSRC}/mix.exs
 .endif
 	@${RM} -f ${WRKSRC}/mix.lock
 	@cd ${WRKSRC} && ${MIX_COMPILE}


More information about the svn-ports-all mailing list