Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Nov 2018 04:36:54 +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: r485580 - head/devel/hs-ShellCheck
Message-ID:  <201811220436.wAM4as4L008751@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Thu Nov 22 04:36:53 2018
New Revision: 485580
URL: https://svnweb.freebsd.org/changeset/ports/485580

Log:
  devel/hs-ShellCheck: Link Haskell dependencies statically
  
  ShellCheck is an essential tool that should not require having the
  entire Haskell toolchain installed which most users do not need.
  
  The installed size (including all run dependencies) goes down from
  ~2 GiB to ~35 MiB.  This brings the hs-ShellCheck package more in
  line with what is provided by various Linux distributions and
  OpenBSD.
  
  PR:		233376
  Submitted by:	tobik
  Approved by:	pizzamig (maintainer), haskell (arrowd)

Modified:
  head/devel/hs-ShellCheck/Makefile

Modified: head/devel/hs-ShellCheck/Makefile
==============================================================================
--- head/devel/hs-ShellCheck/Makefile	Thu Nov 22 01:52:39 2018	(r485579)
+++ head/devel/hs-ShellCheck/Makefile	Thu Nov 22 04:36:53 2018	(r485580)
@@ -4,7 +4,7 @@ PORTNAME=	ShellCheck
 DISTVERSIONPREFIX=	v
 DISTVERSION=	0.4.7-129
 DISTVERSIONSUFFIX=	-gb5e5d24
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel haskell
 
 MAINTAINER=	pizzamig@FreeBSD.org
@@ -19,6 +19,10 @@ GH_ACCOUNT=	koalaman
 GH_PROJECT=	${PORTNAME:tl}
 
 EXECUTABLE=	shellcheck
+IGNORE_DOCS=	yes
+IGNORE_DYNAMIC=	yes
+IGNORE_PROFILE=	yes
+STANDALONE=	yes
 
 .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
 .include <bsd.port.mk>



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