Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Apr 2017 13:08:04 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r439606 - head/devel/stack
Message-ID:  <201704281308.v3SD8458058679@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Fri Apr 28 13:08:04 2017
New Revision: 439606
URL: https://svnweb.freebsd.org/changeset/ports/439606

Log:
  Remove gcc run dependency
  
  - ghc uses USE_GCC=yes and when USE_GCC=yes implies a different one of
    the lang/gcc* ports (which will happen after PR 218330 or when the
    user sets a different version of GCC via Mk/bsd.default-versions.mk),
    devel/stacks pulls in two conflicting ports - lang/gcc and lang/gcc5 -
    in the first case, or pulls in the wrong port for its own dependency.
  
  - Some Haskell libraries/programs require gcc in the PATH, but not all
    do; the port should not have a gcc dependency for this reason alone.
  
  PR:		218482
  Reported by:	gerald
  Approved by:	lme (mentor)
  Differential Revision:	https://reviews.freebsd.org/D10459

Modified:
  head/devel/stack/Makefile

Modified: head/devel/stack/Makefile
==============================================================================
--- head/devel/stack/Makefile	Fri Apr 28 12:34:53 2017	(r439605)
+++ head/devel/stack/Makefile	Fri Apr 28 13:08:04 2017	(r439606)
@@ -11,6 +11,7 @@
 PORTNAME=	stack
 PORTVERSION=	1.4.0
 DISTVERSIONPREFIX=	v
+PORTREVISION=	1
 CATEGORIES=	devel haskell
 MASTER_SITES=	GH \
 		https://github.com/applicative-tech/stack-dependencies/releases/download/v${PORTVERSION}/:deps
@@ -26,7 +27,6 @@ BUILD_DEPENDS=	ghc>0:lang/ghc \
 LIB_DEPENDS=	libgmp.so:math/gmp \
 		libffi.so:devel/libffi
 RUN_DEPENDS=	ca_root_nss>0:security/ca_root_nss \
-		${LOCALBASE}/bin/gcc:lang/gcc \
 		gmake:devel/gmake
 
 USES=		gmake iconv perl5



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