From owner-svn-ports-all@freebsd.org Mon Sep 21 18:11:08 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4E77A06A84; Mon, 21 Sep 2015 18:11:07 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA3B81B11; Mon, 21 Sep 2015 18:11:07 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8LIB7mn050260; Mon, 21 Sep 2015 18:11:07 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8LIB6AR050256; Mon, 21 Sep 2015 18:11:06 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201509211811.t8LIB6AR050256@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Mon, 21 Sep 2015 18:11:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r397515 - in head/textproc: . rubygem-scss_lint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Sep 2015 18:11:08 -0000 Author: mmoll Date: Mon Sep 21 18:11:06 2015 New Revision: 397515 URL: https://svnweb.freebsd.org/changeset/ports/397515 Log: new port: textproc/rubygem-scss_lint scss-lint is a tool to help keep your SCSS files clean and readable. You can run it manually from the command line, or integrate it into your SCM hooks. WWW: https://github.com/brigade/scss-lint Added: head/textproc/rubygem-scss_lint/ head/textproc/rubygem-scss_lint/Makefile (contents, props changed) head/textproc/rubygem-scss_lint/distinfo (contents, props changed) head/textproc/rubygem-scss_lint/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Sep 21 18:02:10 2015 (r397514) +++ head/textproc/Makefile Mon Sep 21 18:11:06 2015 (r397515) @@ -1438,6 +1438,7 @@ SUBDIR += rubygem-sass-rails5 SUBDIR += rubygem-sass32 SUBDIR += rubygem-sax-machine + SUBDIR += rubygem-scss_lint SUBDIR += rubygem-simplecov-html SUBDIR += rubygem-spreadsheet SUBDIR += rubygem-stamp Added: head/textproc/rubygem-scss_lint/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-scss_lint/Makefile Mon Sep 21 18:11:06 2015 (r397515) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= scss_lint +PORTVERSION= 0.41.0 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= SCSS linter + +LICENSE= MIT + +RUN_DEPENDS= rubygem-rainbow>=2.0:${PORTSDIR}/devel/rubygem-rainbow \ + rubygem-sass>=3.4.15:${PORTSDIR}/textproc/rubygem-sass + +NO_ARCH= yes + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= bin/scss-lint + +.include Added: head/textproc/rubygem-scss_lint/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-scss_lint/distinfo Mon Sep 21 18:11:06 2015 (r397515) @@ -0,0 +1,2 @@ +SHA256 (rubygem/scss_lint-0.41.0.gem) = b36069088b4ac8b3432995adc8706ef780a9ef3e286b8c233d9d0ad712d212a1 +SIZE (rubygem/scss_lint-0.41.0.gem) = 90624 Added: head/textproc/rubygem-scss_lint/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-scss_lint/pkg-descr Mon Sep 21 18:11:06 2015 (r397515) @@ -0,0 +1,4 @@ +scss-lint is a tool to help keep your SCSS files clean and readable. You can +run it manually from the command line, or integrate it into your SCM hooks. + +WWW: https://github.com/brigade/scss-lint