Codebase list ruby-fog-vmfusion / 896553a
tune package Praveen Arimbrathodiyil 9 years ago
5 changed file(s) with 64 addition(s) and 30 deletion(s). Raw diff Collapse all Expand all
11
22 * Initial release (Closes: #782296)
33
4 -- Pirate Praveen <praveen@debian.org> Fri, 10 Apr 2015 16:01:33 +0530
4 -- Pirate Praveen <praveen@debian.org> Fri, 10 Apr 2015 11:32:17 +0530
22 Priority: optional
33 Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
44 Uploaders: Pirate Praveen <praveen@debian.org>
5 Build-Depends: debhelper (>= 7.0.50~), gem2deb, ruby-rspec, rake, ruby-fog-core, ruby-fission
5 Build-Depends: debhelper (>= 7.0.50~), gem2deb, ruby-rspec, rake, ruby-fog-core,
6 ruby-fission
67 Standards-Version: 3.9.6
78 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-fog-vmfusion.git
89 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-fog-vmfusion.git;a=summary
9 Homepage:
10 Homepage: https://github.com/fog/fog-vmfusion
1011 Testsuite: autopkgtest-pkg-ruby
1112 XS-Ruby-Versions: all
1213
1415 Architecture: all
1516 XB-Ruby-Versions: ${ruby:Versions}
1617 Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-fog-core, ruby-fission
17 Description: Module for the 'fog' gem to support VMWARE FUSION.
18 Description: module for the 'fog' library to support VMWARE FUSION
1819 This library can be used as a module for `fog` or as standalone provider
1920 to use the VMWARE FUSION in applications.
21 .
22 Fog supports all major cloud providers including AWS, Rackspace, Linode,
23 Blue Box, StormOnDemand, and many others.
00 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
11 Upstream-Name: fog-vmfusion
2 Source: FIXME <http://example.com/>
2 Source: http://github.com/fog/fog-vmfusion
33
44 Files: *
5 Copyright: <years> <put author's name and email here>
6 <years> <likewise for another author>
7 License: GPL-2+ (FIXME)
5 Copyright: 2014 Carlos Sanchez <csanchez@maestrodev.com>
6 2014 Cody Herriges <c.a.herriges@gmail.com>
7 2014 James Herdman <james.herdman@me.com>
8 2014 Lance Ivy <lance@cainlevy.net>
9 2014 Kyle Rames <kyle.rames@rackspace.com>
10 2014 Patrick Debois <Patrick.Debois@jedi.be>
11 2014 Paul Thornthwaite <paul@brightbox.co.uk>
12 2014 Paulo Henrique Lopes Ribeiro <plribeiro3000@gmail.com>
13 2014 Wesley Beary <geemus@gmail.com>
14 License: Expat
815
916 Files: debian/*
10 Copyright: 2015 Pirate Praveen <praveen@debian.org>
11 License: GPL-2+ (FIXME)
12 Comment: the Debian packaging is licensed under the same terms as the original package.
17 Copyright: 2015 Praveen Arimbrathodiyil <praveen@debian.org>
18 License: Expat
1319
14 License: GPL-2+ (FIXME)
15 This program is free software; you can redistribute it
16 and/or modify it under the terms of the GNU General Public
17 License as published by the Free Software Foundation; either
18 version 2 of the License, or (at your option) any later
19 version.
20 License: Expat
21 Permission is hereby granted, free of charge, to any person obtaining
22 a copy of this software and associated documentation files (the
23 "Software"), to deal in the Software without restriction, including
24 without limitation the rights to use, copy, modify, merge, publish,
25 distribute, sublicense, and/or sell copies of the Software, and to
26 permit persons to whom the Software is furnished to do so, subject to
27 the following conditions:
2028 .
21 This program is distributed in the hope that it will be
22 useful, but WITHOUT ANY WARRANTY; without even the implied
23 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
24 PURPOSE. See the GNU General Public License for more
25 details.
29 The above copyright notice and this permission notice shall be
30 included in all copies or substantial portions of the Software.
2631 .
27 You should have received a copy of the GNU General Public
28 License along with this package; if not, write to the Free
29 Software Foundation, Inc., 51 Franklin St, Fifth Floor,
30 Boston, MA 02110-1301 USA
31 .
32 On Debian systems, the full text of the GNU General Public
33 License version 2 can be found in the file
34 `/usr/share/common-licenses/GPL-2'.
32 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
33 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
34 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
35 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
36 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
37 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
38 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
0 Description: remove rubygems
1 debian specific
2 Author: Pirate Praveen <praveen@debian.org>
3 Last-Updated: 2015-04-10
4
5 Index: ruby-fog-vmfusion-0.1.0/lib/fog/compute/vmfusion.rb
6 ===================================================================
7 --- ruby-fog-vmfusion-0.1.0.orig/lib/fog/compute/vmfusion.rb
8 +++ ruby-fog-vmfusion-0.1.0/lib/fog/compute/vmfusion.rb
9 @@ -18,10 +18,11 @@ module Fog
10 class Real
11 def initialize(_options = {})
12 require "fission"
13 - rescue LoadError => e
14 - retry if require("rubygems")
15 - raise e.message
16 - end
17 + # ruby-fission is a dependency so apt will ensure its available
18 + #rescue LoadError => e
19 + # retry if require("rubygems")
20 + # raise e.message
21 + #end
22 end
23 end
24 end
0 remove-rubygems.patch