Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/right_http_connection/
Date: Sat, 24 Feb 2018 08:50:23
Message-Id: 1519462136.6b58d19f1a42071ec3c0f47e9907ac6060dc306c.graaff@gentoo
1 commit: 6b58d19f1a42071ec3c0f47e9907ac6060dc306c
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 24 08:45:36 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 24 08:48:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b58d19f
7
8 dev-ruby/right_http_connection: remove masked package
9
10 dev-ruby/right_http_connection/Manifest | 1 -
11 dev-ruby/right_http_connection/metadata.xml | 11 -----
12 .../right_http_connection-1.5.0.ebuild | 50 ----------------------
13 3 files changed, 62 deletions(-)
14
15 diff --git a/dev-ruby/right_http_connection/Manifest b/dev-ruby/right_http_connection/Manifest
16 deleted file mode 100644
17 index c710d4721bc..00000000000
18 --- a/dev-ruby/right_http_connection/Manifest
19 +++ /dev/null
20 @@ -1 +0,0 @@
21 -DIST right_http_connection-1.5.0.tgz 120451 BLAKE2B 83b44f205ee418548b6bc70342cf0cb0429a21d624d65ee5bffe447e1aef8e286ce634dfce3bda0c1f5e480bb98dfe1f061eff40ed8b8360bae3d864577c3ee7 SHA512 7db0e85ba8140343ef06bbfce2d9ee5f6ce6823fdcfee71875c74a609e77de043a0e5d6fced18ee2bd111ea6a8a592d3855e1547dc2bfec0e963e446c366aef7
22
23 diff --git a/dev-ruby/right_http_connection/metadata.xml b/dev-ruby/right_http_connection/metadata.xml
24 deleted file mode 100644
25 index b317a748901..00000000000
26 --- a/dev-ruby/right_http_connection/metadata.xml
27 +++ /dev/null
28 @@ -1,11 +0,0 @@
29 -<?xml version="1.0" encoding="UTF-8"?>
30 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
31 -<pkgmetadata>
32 - <maintainer type="project">
33 - <email>ruby@g.o</email>
34 - <name>Gentoo Ruby Project</name>
35 - </maintainer>
36 - <upstream>
37 - <remote-id type="github">rightscale/right_http_connection</remote-id>
38 - </upstream>
39 -</pkgmetadata>
40
41 diff --git a/dev-ruby/right_http_connection/right_http_connection-1.5.0.ebuild b/dev-ruby/right_http_connection/right_http_connection-1.5.0.ebuild
42 deleted file mode 100644
43 index 663d9083976..00000000000
44 --- a/dev-ruby/right_http_connection/right_http_connection-1.5.0.ebuild
45 +++ /dev/null
46 @@ -1,50 +0,0 @@
47 -# Copyright 1999-2017 Gentoo Foundation
48 -# Distributed under the terms of the GNU General Public License v2
49 -
50 -EAPI=5
51 -
52 -USE_RUBY="ruby20 ruby21 ruby22"
53 -
54 -RUBY_FAKEGEM_TASK_DOC=""
55 -RUBY_FAKEGEM_EXTRADOC="README.txt History.txt"
56 -
57 -RUBY_FAKEGEM_TASK_TEST="cucumber"
58 -
59 -inherit ruby-fakegem
60 -
61 -DESCRIPTION="RightScale's robust HTTP/S connection module"
62 -HOMEPAGE="https://github.com/rightscale/right_http_connection"
63 -SRC_URI="https://github.com/rightscale/right_http_connection/archive/v${PV}.tar.gz -> ${P}.tgz"
64 -
65 -LICENSE="MIT"
66 -SLOT="0"
67 -KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
68 -IUSE=""
69 -
70 -USE_RUBY="${USE_RUBY/ruby22/}" ruby_add_bdepend "test? (
71 - dev-util/cucumber
72 - dev-ruby/rspec:2
73 - dev-ruby/trollop:0
74 - dev-ruby/flexmock
75 -)"
76 -
77 -all_ruby_prepare() {
78 - rm Gemfile Gemfile.lock || die
79 - sed -i -e '/bundler/ s:^:#:' \
80 - -e 'arequire "rspec"' features/support/env.rb || die
81 -
82 - # Avoid features that require manual input (PEM pass phrase) or have
83 - # certificate issues due to unknown CA.
84 - rm -f features/{proxy_ssl,ssl}.feature || die
85 -}
86 -
87 -each_ruby_test() {
88 - case ${RUBY} in
89 - *ruby22)
90 - einfo "cucumber is not yet available for ruby22"
91 - ;;
92 - *)
93 - ${RUBY} -S cucumber --format progress features || die
94 - ;;
95 - esac
96 -}