public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mime-types/
Date: Sun, 22 Nov 2015 08:29:48 +0000 (UTC)	[thread overview]
Message-ID: <1448180985.7183ce4bc4c41d3c404ed18bc4635d4d177c8f3c.graaff@gentoo> (raw)

commit:     7183ce4bc4c41d3c404ed18bc4635d4d177c8f3c
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 22 08:29:15 2015 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Nov 22 08:29:45 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7183ce4b

dev-ruby/mime-types: add 3.0

Package-Manager: portage-2.2.20.1

 dev-ruby/mime-types/Manifest              |  1 +
 dev-ruby/mime-types/mime-types-3.0.ebuild | 32 +++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

diff --git a/dev-ruby/mime-types/Manifest b/dev-ruby/mime-types/Manifest
index 2a7cffd..d65c363 100644
--- a/dev-ruby/mime-types/Manifest
+++ b/dev-ruby/mime-types/Manifest
@@ -2,3 +2,4 @@ DIST mime-types-1.23.gem 55296 SHA256 fa29671c5f80a5dbafe3111814f1bf289af91f422c
 DIST mime-types-1.25.1.gem 61440 SHA256 88ef3c596481678710ffd4018fa40f1999b02d97babea39682ba7d5badd21f56 SHA512 50a79bc0378bb9bf694656b15ac69446447fc863a5a6556e68ad736768627c9f43e59c68b0ed141cee5dbd81a8ccca1a33a61aa01af7d0a5949b00d6edb6525e WHIRLPOOL 65da6addc3f1f4b6c730eadbeabf285a0a85452d90ff036820d3cb1940311248cdcf12a21e836c4b3d03af8ea73f33f642d071f2bb8fdf9556b05cdf974b16d4
 DIST mime-types-2.4.3.gem 118272 SHA256 38f29a89a273d15bfb99e839c6fe5cf7c463f223dd7ac5ee3c9287b1acd6d19a SHA512 7b04ad54819cb813480d90e2f831f3613f5e8d07581f23c632899c7b511c2579c54f402e7b216ca9baea6eff62ad5ddd7602b21f13e1c51aab5416eb629d1bdd WHIRLPOOL 1c28b4fc52460d03f85b7fb86bbe7840775d5f0d3d50f33b04b660879460f12478a08db29aa3c4cadedf2f2bee2332b65687d491cc2b2928f0198950da1ee28c
 DIST mime-types-2.6.2.gem 190976 SHA256 b595583540f1228dd24978c0f87cf1918e4f2c709fe5d517fb6706cbb35ede8c SHA512 a083d865ba39e1b0e468c26823e82472d6bcb501e7dda047f1206b538e2f018d51d8bb31fd6734ba706a8352ade42bb40c52df1837402c3cb4fa01778772485c WHIRLPOOL 63fd4a3a2ed82a479be3bc6883c3a14b7592269609d8f6a97292eb8435f449189c1b7961ab477ca66ae1048b453e1e8edcb2f5c235e319c7af3f80704d7e8cf9
+DIST mime-types-3.0.gem 44032 SHA256 2a7f8a73648ee1de0e97eb9692e8ca3761bf420c8df64024f21befa4d060d2ea SHA512 762ad862714f31cf68c9f872f23efc9c85ab0ab4f451553dd4a7ec30ac5bfce804037a413ae05bad253f4a4f82ba6578e3f3e87aa11b5e525d3f237fdf547850 WHIRLPOOL d195d9bdbfbdc786875cedf5ee7d1b08fb4fc3efd33dce11a4dc3329b40ba969ad9ecfeb600ac843096b55ed72f302ae4c12cffe8b61d968259fd1e90261b587

diff --git a/dev-ruby/mime-types/mime-types-3.0.ebuild b/dev-ruby/mime-types/mime-types-3.0.ebuild
new file mode 100644
index 0000000..859eade
--- /dev/null
+++ b/dev-ruby/mime-types/mime-types-3.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
+
+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"
+SLOT="3"
+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 developer-only dependencies.
+	sed -i -e '/\(focus\|rg\)/ s:^:#:' \
+		-e 's:fivemat/::' test/minitest_helper.rb || die
+}
+
+each_ruby_test() {
+	${RUBY} -Ilib:test:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
+}


             reply	other threads:[~2015-11-22  8:29 UTC|newest]

Thread overview: 91+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-22  8:29 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-10  5:27 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mime-types/ Michał Górny
2024-08-09 11:39 Sam James
2024-08-09  8:57 Sam James
2024-08-07  9:41 Sam James
2024-08-07  9:36 Sam James
2024-08-07  9:21 Sam James
2024-08-07  9:21 Sam James
2024-08-07  5:05 Hans de Graaff
2024-01-02  7:11 Hans de Graaff
2023-08-22  5:07 Hans de Graaff
2023-08-08  5:50 Hans de Graaff
2023-04-01 23:19 Sam James
2022-12-11  9:48 Hans de Graaff
2022-07-13  9:05 Hans de Graaff
2022-05-27  7:01 Agostino Sarubbo
2022-05-27  6:59 Agostino Sarubbo
2022-05-27  6:55 Agostino Sarubbo
2022-05-26 23:17 Jakov Smolić
2022-05-19 13:36 Agostino Sarubbo
2022-05-19  9:29 Agostino Sarubbo
2022-05-17  9:19 Agostino Sarubbo
2022-05-17  9:18 Agostino Sarubbo
2022-05-11 14:51 Agostino Sarubbo
2022-05-11 12:59 Agostino Sarubbo
2022-04-26 14:38 Sam James
2022-04-26 13:45 Sam James
2022-04-19 11:50 Arthur Zamarin
2022-01-23  8:10 Hans de Graaff
2022-01-18 22:16 Sam James
2022-01-18 12:26 Sam James
2022-01-15 22:01 Sam James
2022-01-15 22:01 Sam James
2022-01-15 22:01 Sam James
2022-01-15 10:25 Jakov Smolić
2022-01-15 10:25 Jakov Smolić
2021-11-22  6:56 Hans de Graaff
2021-11-19 10:26 Hans de Graaff
2021-11-19  6:54 Hans de Graaff
2021-10-17  6:31 Sam James
2021-08-02 21:48 Marek Szuba
2021-07-13  9:20 Hans de Graaff
2020-09-11  6:58 Hans de Graaff
2020-09-05  8:01 Hans de Graaff
2020-08-09  9:47 Hans de Graaff
2020-07-14 16:38 Sergei Trofimovich
2020-02-15  6:44 Hans de Graaff
2019-12-27  6:22 Hans de Graaff
2019-09-05  5:05 Hans de Graaff
2019-04-27 15:20 Sergei Trofimovich
2019-04-21  5:54 Hans de Graaff
2019-01-20 19:05 Hans de Graaff
2019-01-10  8:23 Hans de Graaff
2018-11-23  9:19 Hans de Graaff
2018-11-23  9:19 Hans de Graaff
2018-08-13  4:57 Hans de Graaff
2018-06-18 18:07 Tobias Klausmann
2018-05-20  6:20 Hans de Graaff
2018-04-28  6:32 Hans de Graaff
2018-03-18 22:38 Sergei Trofimovich
2018-03-18 19:59 Markus Meier
2018-03-06 22:28 Sergei Trofimovich
2018-02-25  7:47 Hans de Graaff
2018-01-22 19:49 Hans de Graaff
2018-01-22 19:49 Hans de Graaff
2017-12-29  0:20 Sergei Trofimovich
2017-12-28 18:45 Thomas Deutschmann
2017-12-27 20:06 Sergei Trofimovich
2017-07-12 18:40 Alexis Ballier
2017-07-01 10:07 Sergei Trofimovich
2017-06-21  7:27 Hans de Graaff
2017-06-10  7:31 Hans de Graaff
2017-05-26  7:08 Michael Weber
2016-10-02 11:32 Jeroen Roovers
2016-10-02 10:55 Jeroen Roovers
2016-09-27 11:04 Tobias Klausmann
2016-08-14 19:32 Markus Meier
2016-07-25 19:24 Hans de Graaff
2016-07-15  5:38 Hans de Graaff
2016-07-14  5:53 Hans de Graaff
2016-06-14 19:33 Markus Meier
2016-06-08 11:33 Tobias Klausmann
2016-05-21 10:08 Fabian Groffen
2016-05-19  5:30 Hans de Graaff
2016-04-17 10:47 Manuel Rüger
2015-12-27  9:41 Hans de Graaff
2015-12-25 16:47 Agostino Sarubbo
2015-12-04  5:41 Jeroen Roovers
2015-11-23  8:50 Agostino Sarubbo
2015-11-22  8:29 Hans de Graaff
2015-09-15  5:34 Hans de Graaff

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1448180985.7183ce4bc4c41d3c404ed18bc4635d4d177c8f3c.graaff@gentoo \
    --to=graaff@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox