diff options
author | 2015-06-08 05:33:47 +0000 | |
---|---|---|
committer | 2015-06-08 05:33:47 +0000 | |
commit | fcf190a7fb2e898079eb9e39ca71337ef64db15b (patch) | |
tree | 2c62c5fc0c077fef999fa4a00a0199bae1714f71 /dev-ruby/mime-types | |
parent | Stable for HPPA too. (diff) | |
download | gentoo-2-fcf190a7fb2e898079eb9e39ca71337ef64db15b.tar.gz gentoo-2-fcf190a7fb2e898079eb9e39ca71337ef64db15b.tar.bz2 gentoo-2-fcf190a7fb2e898079eb9e39ca71337ef64db15b.zip |
Version bump.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/mime-types')
-rw-r--r-- | dev-ruby/mime-types/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/mime-types/mime-types-2.6.1.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/dev-ruby/mime-types/ChangeLog b/dev-ruby/mime-types/ChangeLog index 85f33c6ab21a..1efd4808a472 100644 --- a/dev-ruby/mime-types/ChangeLog +++ b/dev-ruby/mime-types/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/mime-types # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mime-types/ChangeLog,v 1.68 2015/06/07 18:37:30 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mime-types/ChangeLog,v 1.69 2015/06/08 05:33:47 graaff Exp $ + +*mime-types-2.6.1 (08 Jun 2015) + + 08 Jun 2015; Hans de Graaff <graaff@gentoo.org> +mime-types-2.6.1.ebuild: + Version bump. 07 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml: Add github to remote-id in metadata.xml diff --git a/dev-ruby/mime-types/mime-types-2.6.1.ebuild b/dev-ruby/mime-types/mime-types-2.6.1.ebuild new file mode 100644 index 000000000000..d631d4948934 --- /dev/null +++ b/dev-ruby/mime-types/mime-types-2.6.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mime-types/mime-types-2.6.1.ebuild,v 1.1 2015/06/08 05:33:47 graaff Exp $ + +EAPI=5 + +USE_RUBY="ruby19 ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="History.rdoc History-Types.rdoc README.rdoc" + +RUBY_FAKEGEM_EXTRAINSTALL="data" + +inherit ruby-fakegem + +DESCRIPTION="Provides a mailcap-like MIME Content-Type lookup for Ruby" +HOMEPAGE="https://github.com/mime-types/ruby-mime-types" + +LICENSE="MIT Artistic GPL-2" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/minitest:5 )" + +all_ruby_prepare() { + # Avoid unneeded dependency on minitest-focus. + sed -i -e '/focus/ s:^:#:' test/minitest_helper.rb || die +} + +each_ruby_test() { + ${RUBY} -Ilib:test:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die +} |