From owner-svn-ports-all@FreeBSD.ORG Tue May 26 15:29:04 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C5EDFFB8; Tue, 26 May 2015 15:29:04 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.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 A579D8C1; Tue, 26 May 2015 15:29:04 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4QFT4K6010327; Tue, 26 May 2015 15:29:04 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4QFT35x010320; Tue, 26 May 2015 15:29:03 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201505261529.t4QFT35x010320@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Tue, 26 May 2015 15:29:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387483 - in head/devel: . rubygem-sprockets-sass 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: Tue, 26 May 2015 15:29:05 -0000 Author: zi Date: Tue May 26 15:29:02 2015 New Revision: 387483 URL: https://svnweb.freebsd.org/changeset/ports/387483 Log: - New port: devel/rubygem-sprockets-sass: When using Sprockets 2.0 with Sass you will eventually run into a pretty big issue. `//= require` directives will not allow Sass mixins, variables, etc. to be shared between files. So you'll try to use `@import`, and that'll also blow up in your face. `sprockets-sass` fixes all of this by creating a Sass::Importer that is Sprockets aware. WWW: https://rubygems.org/gems/sprockets-sass Added: head/devel/rubygem-sprockets-sass/ head/devel/rubygem-sprockets-sass/Makefile (contents, props changed) head/devel/rubygem-sprockets-sass/distinfo (contents, props changed) head/devel/rubygem-sprockets-sass/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue May 26 15:28:13 2015 (r387482) +++ head/devel/Makefile Tue May 26 15:29:02 2015 (r387483) @@ -4730,6 +4730,7 @@ SUBDIR += rubygem-sprockets SUBDIR += rubygem-sprockets-helpers SUBDIR += rubygem-sprockets-rails + SUBDIR += rubygem-sprockets-sass SUBDIR += rubygem-sprockets211 SUBDIR += rubygem-sprockets22 SUBDIR += rubygem-spruz Added: head/devel/rubygem-sprockets-sass/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-sprockets-sass/Makefile Tue May 26 15:29:02 2015 (r387483) @@ -0,0 +1,19 @@ +# Created by: Ryan Steinmetz +# $FreeBSD$ + +PORTNAME= sprockets-sass +PORTVERSION= 1.3.1 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Implements a sprockets-aware sass importer + +RUN_DEPENDS= rubygem-sprockets>=2.0:${PORTSDIR}/devel/rubygem-sprockets \ + rubygem-tilt1>=1.1:${PORTSDIR}/devel/rubygem-tilt1 + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-sprockets-sass/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-sprockets-sass/distinfo Tue May 26 15:29:02 2015 (r387483) @@ -0,0 +1,2 @@ +SHA256 (rubygem/sprockets-sass-1.3.1.gem) = a5197d3a47b28ff78be9c3bb57b48db9ee0ff022ad2e740936f083bb194e3fad +SIZE (rubygem/sprockets-sass-1.3.1.gem) = 15360 Added: head/devel/rubygem-sprockets-sass/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-sprockets-sass/pkg-descr Tue May 26 15:29:02 2015 (r387483) @@ -0,0 +1,7 @@ +When using Sprockets 2.0 with Sass you will eventually run into a pretty big +issue. `//= require` directives will not allow Sass mixins, variables, etc. +to be shared between files. So you'll try to use `@import`, and that'll also +blow up in your face. `sprockets-sass` fixes all of this by creating a +Sass::Importer that is Sprockets aware. + +WWW: https://rubygems.org/gems/sprockets-sass