Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth2/
Date: Sun, 06 Mar 2016 20:02:09
Message-Id: 1457294445.708dd08826d5de8cca9337e1e7a2b5ee161a3048.mrueg@gentoo
1 commit: 708dd08826d5de8cca9337e1e7a2b5ee161a3048
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 6 20:00:45 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 6 20:00:45 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=708dd088
7
8 dev-ruby/oauth2: Remove old
9
10 Package-Manager: portage-2.2.27
11
12 dev-ruby/oauth2/Manifest | 1 -
13 dev-ruby/oauth2/oauth2-1.0.0.ebuild | 41 -------------------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-ruby/oauth2/Manifest b/dev-ruby/oauth2/Manifest
17 index 8b821aa..4f93231 100644
18 --- a/dev-ruby/oauth2/Manifest
19 +++ b/dev-ruby/oauth2/Manifest
20 @@ -1,2 +1 @@
21 -DIST oauth2-1.0.0.gem 21504 SHA256 1925847287bba3d19b0755820f8eef86198754dfa9f77ad53063ffb82d3e4a7d SHA512 80e30c444ffb31a4a2e49a4851bcc0cdf907e9b24c38a6e5f580054ab70df89c951f6e05dec3e9e8b7f1d68ca332b6970fba350d7d309e8a0e6212ff1bafb31c WHIRLPOOL 993b648722f1fbe198339b94c702499de49c6e526358195db822d0ab21c8300b6cacf4af14c4c85e08cf9fc97ea074f196cee06d4b3ce19511aa871c9a450653
22 DIST v1.1.0.tar.gz 18376 SHA256 ea76a41dc7c559f9530e19961b5a8cd9a4b3f231f54901b9e6ef09031ce3aa77 SHA512 c4231093929733a662ed6246338508396eb0e8d1be48bff05c43a8e3f6dd38261667cad7db0dc44c3f6fd9152165b13fa46a779a05b3c1ae98f912f337820d2e WHIRLPOOL 0f9269df95ceabbcff65751d89bac5eef6bb18f34114b3045ac658325e7b8145f23fad311473c77e64f3170c45ccc880eb48c05ad6f174c7a42591995498a557
23
24 diff --git a/dev-ruby/oauth2/oauth2-1.0.0.ebuild b/dev-ruby/oauth2/oauth2-1.0.0.ebuild
25 deleted file mode 100644
26 index 3aa0744..0000000
27 --- a/dev-ruby/oauth2/oauth2-1.0.0.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -USE_RUBY="ruby19 ruby20 ruby21"
37 -
38 -RUBY_FAKEGEM_TASK_TEST="none"
39 -RUBY_FAKEGEM_TASK_DOC="doc:rdoc"
40 -
41 -RUBY_FAKEGEM_DOCDIR="rdoc"
42 -RUBY_FAKEGEM_EXTRADOC="README.md"
43 -
44 -inherit ruby-fakegem eutils
45 -
46 -DESCRIPTION="Ruby wrapper for the OAuth 2.0 protocol built with a similar style to the original OAuth gem"
47 -HOMEPAGE="https://github.com/intridea/oauth2"
48 -
49 -LICENSE="MIT"
50 -SLOT="0"
51 -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
52 -IUSE=""
53 -
54 -ruby_add_rdepend ">=dev-ruby/faraday-0.8
55 - >=dev-ruby/jwt-1.0 =dev-ruby/jwt-1*
56 - >=dev-ruby/multi_json-1.3 =dev-ruby/multi_json-1*
57 - >=dev-ruby/multi_xml-0.5:0
58 - >=dev-ruby/rack-1.2"
59 -ruby_add_bdepend "test? ( >=dev-ruby/rspec-2.5.0:2 )"
60 -
61 -all_ruby_prepare() {
62 - sed -i -e '/simplecov/,/^end/ s:^:#:' spec/helper.rb || die
63 -
64 - sed -i -e '/yardstick/,/^end/ s:^:#:' \
65 - -e '/bundler/I s:^:#:' Rakefile || die
66 -}
67 -
68 -each_ruby_test() {
69 - CI=true ${RUBY} -S rspec spec || die
70 -}