svn commit: r485580 - head/devel/hs-ShellCheck

Tobias Kortkamp tobik at FreeBSD.org
Thu Nov 22 04:36:55 UTC 2018


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 at 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>


More information about the svn-ports-all mailing list