From owner-svn-ports-head@freebsd.org Thu Nov 22 04:36:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E28A211366D1; Thu, 22 Nov 2018 04:36:54 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 850C08980C; Thu, 22 Nov 2018 04:36:54 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 630FA2BBA; Thu, 22 Nov 2018 04:36:54 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wAM4asTY008752; Thu, 22 Nov 2018 04:36:54 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wAM4as4L008751; Thu, 22 Nov 2018 04:36:54 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201811220436.wAM4as4L008751@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 22 Nov 2018 04:36:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485580 - head/devel/hs-ShellCheck X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/devel/hs-ShellCheck X-SVN-Commit-Revision: 485580 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 850C08980C X-Spamd-Result: default: False [1.31 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_LONG(0.40)[0.400,0]; NEURAL_SPAM_MEDIUM(0.49)[0.489,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_SPAM_SHORT(0.42)[0.419,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Nov 2018 04:36:55 -0000 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