graaff      14/11/17 15:47:30

  Modified:             ChangeLog
  Added:                sprockets-2.11.3.ebuild
  Log:
  Add a 2.11 version of sprockets because it turns out 2.12 is not compatible 
with 2.11.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  Changes    Path
1.30                 dev-ruby/sprockets/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sprockets/ChangeLog?rev=1.30&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sprockets/ChangeLog?rev=1.30&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sprockets/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/sprockets/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog   7 Nov 2014 10:11:55 -0000       1.29
+++ ChangeLog   17 Nov 2014 15:47:30 -0000      1.30
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/sprockets
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sprockets/ChangeLog,v 1.29 
2014/11/07 10:11:55 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sprockets/ChangeLog,v 1.30 
2014/11/17 15:47:30 graaff Exp $
+
+*sprockets-2.11.3 (17 Nov 2014)
+
+  17 Nov 2014; Hans de Graaff <gra...@gentoo.org> +sprockets-2.11.3.ebuild:
+  Add a 2.11 version of sprockets because it turns out 2.12 is not compatible
+  with 2.11.
 
   07 Nov 2014; Hans de Graaff <gra...@gentoo.org> -sprockets-2.1.3.ebuild,
   -sprockets-2.2.2-r1.ebuild, -sprockets-2.11.0.ebuild,



1.1                  dev-ruby/sprockets/sprockets-2.11.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sprockets/sprockets-2.11.3.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sprockets/sprockets-2.11.3.ebuild?rev=1.1&content-type=text/plain

Index: sprockets-2.11.3.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sprockets/sprockets-2.11.3.ebuild,v 
1.1 2014/11/17 15:47:30 graaff Exp $

EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="README.md"

RUBY_FAKEGEM_GEMSPEC="sprockets.gemspec"

inherit ruby-fakegem versionator

DESCRIPTION="Ruby library for compiling and serving web assets"
HOMEPAGE="https://github.com/sstephenson/sprockets";
SRC_URI="https://github.com/sstephenson/sprockets/archive/v${PV}.tar.gz -> 
${P}-git.tgz"

LICENSE="MIT"
SLOT="2.11"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"

IUSE=""

ruby_add_rdepend "
        =dev-ruby/hike-1* >=dev-ruby/hike-1.2
        =dev-ruby/multi_json-1*
        =dev-ruby/rack-1*
        =dev-ruby/tilt-1* >=dev-ruby/tilt-1.3.1
        !!<dev-ruby/sprockets-2.2.2-r1:2.2"

ruby_add_bdepend "test? (
                dev-ruby/json
                dev-ruby/rack-test
                =dev-ruby/coffee-script-2*
                =dev-ruby/execjs-2*
                =dev-ruby/sass-3* >=dev-ruby/sass-3.1
        )"

all_ruby_prepare() {
        # Avoid tests for template types that we currently don't package:
        # eco and ejs.
        sed -i -e '/eco templates/,/end/ s:^:#:' \
                -e '/ejs templates/,/end/ s:^:#:' test/test_environment.rb || 
die

        # Add missing 'json' require
        sed -i -e '4irequire "json"' test/test_manifest.rb || die

        # Avoid test breaking on specific javascript error being thrown,
        # most likely due to using node instead of v8.
        sed -i -e '/bundled asset cached if theres an error/,/^  end/ s:^:#:' 
test/test_environment.rb || die

        # Require a newer version of execjs since we do not have this slotted.
        sed -i -e '/execjs/ s/1.0/2.0/' ${RUBY_FAKEGEM_GEMSPEC} || die
}

each_ruby_prepare() {
        sed -i -e "s:ruby:${RUBY}:" test/test_sprocketize.rb || die
}

each_ruby_test() {
        # Make sure we have completely separate copies. Hardlinks won't work
        # for this test suite.
        cp -R test test-new || die
        rm -rf test || die
        mv test-new test || die

        each_fakegem_test
}




Reply via email to