diff options
author | Hans de Graaff <graaff@gentoo.org> | 2012-04-08 08:31:25 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2012-04-08 08:31:25 +0000 |
commit | d5105309988352b0db190b3eb045ada85c8856b8 (patch) | |
tree | 2ef0cd5d96b6ffb0bc1fd48bad17d4f0a679f812 /dev-ruby/jeweler | |
parent | Add einfo about slowing down the lo as whole. Thanks to Eugeny Shkrigunov for... (diff) | |
download | gentoo-2-d5105309988352b0db190b3eb045ada85c8856b8.tar.gz gentoo-2-d5105309988352b0db190b3eb045ada85c8856b8.tar.bz2 gentoo-2-d5105309988352b0db190b3eb045ada85c8856b8.zip |
Version bump.
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/jeweler')
-rw-r--r-- | dev-ruby/jeweler/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/jeweler/jeweler-1.8.3.ebuild | 47 |
2 files changed, 53 insertions, 1 deletions
diff --git a/dev-ruby/jeweler/ChangeLog b/dev-ruby/jeweler/ChangeLog index 88d909c97240..a211b490db2d 100644 --- a/dev-ruby/jeweler/ChangeLog +++ b/dev-ruby/jeweler/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/jeweler # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/jeweler/ChangeLog,v 1.15 2012/01/02 15:29:56 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/jeweler/ChangeLog,v 1.16 2012/04/08 08:31:25 graaff Exp $ + +*jeweler-1.8.3 (08 Apr 2012) + + 08 Apr 2012; Hans de Graaff <graaff@gentoo.org> +jeweler-1.8.3.ebuild: + Version bump. 02 Jan 2012; Hans de Graaff <graaff@gentoo.org> jeweler-1.6.4.ebuild: Add ruby19. diff --git a/dev-ruby/jeweler/jeweler-1.8.3.ebuild b/dev-ruby/jeweler/jeweler-1.8.3.ebuild new file mode 100644 index 000000000000..97f0ba566f99 --- /dev/null +++ b/dev-ruby/jeweler/jeweler-1.8.3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/jeweler/jeweler-1.8.3.ebuild,v 1.1 2012/04/08 08:31:25 graaff Exp $ + +EAPI=2 +USE_RUBY="ruby18 ruby19 ree18" + +RUBY_FAKEGEM_TASK_DOC="yard" +RUBY_FAKEGEM_DOCDIR="doc" + +# Tests and features also need the same set of dependencies present. +RUBY_FAKEGEM_TASK_TEST="" + +RUBY_FAKEGEM_EXTRADOC="ChangeLog.markdown README.markdown" + +RUBY_FAKEGEM_GEMSPEC="jeweler.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Rake tasks for managing gems and versioning and a generator for creating a new project" +HOMEPAGE="http://wiki.github.com/technicalpickles/jeweler" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +IUSE="" + +ruby_add_bdepend "doc? ( dev-ruby/yard )" + +ruby_add_rdepend "dev-ruby/bundler" + +# We do not depend on all runtime dependencies since the usage of jeweler in +# Rakefile's does not require this. However, the generator does, but it +# depends on gems that are obsolete and not supported in Gentoo. + +all_ruby_prepare() { + # Remove bundler support. + rm Gemfile Gemfile.lock || die + sed -i -e '/bundler/d' -e '/Bundler.setup/d' Rakefile test/test_helper.rb features/support/env.rb || die + + # Remove (currently) unused targets from the Rakefile that require + # additional dependencies. + sed -i -e '/rcov/,$d' Rakefile || die + + # Remove a runtime dependency that we can't satisfy. + sed -i -e '/<git>/d' jeweler.gemspec || die +} |