Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/mrueg:master commit in: dev-ruby/fog-local/
Date: Mon, 05 Sep 2016 01:09:05
Message-Id: 1473037680.6d661932f84b7465ec5a53b8b81c8142f1d6c9bf.mrueg@gentoo
1 commit: 6d661932f84b7465ec5a53b8b81c8142f1d6c9bf
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 5 01:08:00 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 5 01:08:00 2016 +0000
6 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=6d661932
7
8 dev-ruby/fog-local: Initial version
9
10 Package-Manager: portage-2.3.0
11
12 dev-ruby/fog-local/Manifest | 1 +
13 dev-ruby/fog-local/fog-local-0.3.0.ebuild | 35 +++++++++++++++++++++++++++++++
14 dev-ruby/fog-local/metadata.xml | 8 +++++++
15 3 files changed, 44 insertions(+)
16
17 diff --git a/dev-ruby/fog-local/Manifest b/dev-ruby/fog-local/Manifest
18 new file mode 100644
19 index 0000000..5b54a10
20 --- /dev/null
21 +++ b/dev-ruby/fog-local/Manifest
22 @@ -0,0 +1 @@
23 +DIST fog-local-0.3.0.gem 14336 SHA256 6ce84d964804a1e34fcc9c62973ecb080d196581658044a643780027f0a0a608 SHA512 9ad61a07f8f8ed1d62becddfd18d4de39c50db514a6699770a485e38c656476bc0f366e6355dcebda34581a6b69c3c7cca7c710c4c1a0a8b5eba5915d136732e WHIRLPOOL 9fb52abdea1c56a31cec24e23798240fd6845e69051eb905853d59065a3fb1a16ccf3c923b05ab07046cee9cb4a7f65278d4ea3ab0196902b503c55c3351f660
24
25 diff --git a/dev-ruby/fog-local/fog-local-0.3.0.ebuild b/dev-ruby/fog-local/fog-local-0.3.0.ebuild
26 new file mode 100644
27 index 0000000..39d583d
28 --- /dev/null
29 +++ b/dev-ruby/fog-local/fog-local-0.3.0.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +USE_RUBY="ruby20 ruby21 ruby22 ruby23"
38 +
39 +RUBY_FAKEGEM_TASK_DOC=""
40 +
41 +inherit ruby-fakegem
42 +
43 +DESCRIPTION="A fog provider to use local filesystem storage"
44 +HOMEPAGE="https://rubygems.org/gems/fog-local https://github.com/fog/fog-local"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~amd64"
49 +IUSE=""
50 +
51 +ruby_add_rdepend ">=dev-ruby/fog-core-1.27
52 + <dev-ruby/fog-core-2"
53 +
54 +ruby_add_bdepend "test? ( >=dev-ruby/rake-10.0
55 + >=dev-ruby/shindo-0.3
56 + <dev-ruby/shindo-1 )"
57 +
58 +all_ruby_prepare() {
59 + sed -i -e "/bundler/d" -e "/bundle exec/d" Rakefile || die
60 + sed -i -e "1,6d" -e "/Bundler/d" tests/helper.rb || die
61 +}
62 +
63 +each_ruby_test() {
64 + ${RUBY} -S shindont || die
65 +}
66
67 diff --git a/dev-ruby/fog-local/metadata.xml b/dev-ruby/fog-local/metadata.xml
68 new file mode 100644
69 index 0000000..97df2a0
70 --- /dev/null
71 +++ b/dev-ruby/fog-local/metadata.xml
72 @@ -0,0 +1,8 @@
73 +<?xml version="1.0" encoding="UTF-8"?>
74 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
75 +<pkgmetadata>
76 + <maintainer type="person">
77 + <email>mrueg@g.o</email>
78 + <name>Manuel Rüger</name>
79 + </maintainer>
80 +</pkgmetadata>