Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/vagrant: vagrant-1.4.3.ebuild ChangeLog
Date: Sat, 04 Jan 2014 06:23:06
Message-Id: 20140104062301.523D92004C@flycatcher.gentoo.org
1 radhermit 14/01/04 06:23:01
2
3 Modified: ChangeLog
4 Added: vagrant-1.4.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.32 app-emulation/vagrant/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/vagrant/ChangeLog?rev=1.32&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/vagrant/ChangeLog?rev=1.32&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/vagrant/ChangeLog?r1=1.31&r2=1.32
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/vagrant/ChangeLog,v
20 retrieving revision 1.31
21 retrieving revision 1.32
22 diff -u -r1.31 -r1.32
23 --- ChangeLog 21 Dec 2013 23:10:04 -0000 1.31
24 +++ ChangeLog 4 Jan 2014 06:23:01 -0000 1.32
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-emulation/vagrant
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vagrant/ChangeLog,v 1.31 2013/12/21 23:10:04 radhermit Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vagrant/ChangeLog,v 1.32 2014/01/04 06:23:01 radhermit Exp $
31 +
32 +*vagrant-1.4.3 (04 Jan 2014)
33 +
34 + 04 Jan 2014; Tim Harder <radhermit@g.o> +vagrant-1.4.3.ebuild:
35 + Version bump.
36
37 *vagrant-1.4.1 (21 Dec 2013)
38
39
40
41
42 1.1 app-emulation/vagrant/vagrant-1.4.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/vagrant/vagrant-1.4.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/vagrant/vagrant-1.4.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: vagrant-1.4.3.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-emulation/vagrant/vagrant-1.4.3.ebuild,v 1.1 2014/01/04 06:23:01 radhermit Exp $
52
53 EAPI="5"
54 USE_RUBY="ruby19"
55
56 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
57 RUBY_FAKEGEM_GEMSPEC="vagrant.gemspec"
58 RUBY_FAKEGEM_EXTRAINSTALL="config keys plugins templates"
59 RUBY_FAKEGEM_TASK_DOC=""
60
61 inherit ruby-fakegem eutils
62
63 DESCRIPTION="A tool for building and distributing virtual machines using VirtualBox"
64 HOMEPAGE="http://vagrantup.com/"
65 SRC_URI="https://github.com/mitchellh/vagrant/archive/v${PV}.tar.gz -> ${P}.tar.gz"
66
67 LICENSE="MIT"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86 ~x64-macos"
70 IUSE="test"
71
72 # Missing ebuild for contest
73 RESTRICT="test"
74
75 RDEPEND="${RDEPEND}
76 net-misc/curl
77 !x64-macos? ( || ( app-emulation/virtualbox app-emulation/virtualbox-bin ) )"
78
79 ruby_add_rdepend "
80 >=dev-ruby/childprocess-0.3.7
81 >=dev-ruby/erubis-2.7.0
82 dev-ruby/i18n:0.6
83 >=dev-ruby/json-1.5.1
84 >=dev-ruby/log4r-1.1.9
85 >=dev-ruby/net-ssh-2.6.6
86 >=dev-ruby/net-scp-1.1.0
87 "
88
89 ruby_add_bdepend "
90 dev-ruby/rake
91 test? ( dev-ruby/mocha virtual/ruby-minitest )
92 "
93
94 all_ruby_prepare() {
95 # remove bundler support
96 sed -i '/[Bb]undler/d' Rakefile || die
97 rm Gemfile || die
98
99 # loosen dependencies
100 sed -e '/childprocess\|erubis\|log4r\|net-scp\|net-ssh/s/~>/>=/' \
101 -i ${PN}.gemspec || die
102
103 epatch "${FILESDIR}"/${PN}-1.2.1-no-warning.patch
104 epatch "${FILESDIR}"/${PN}-1.2.2-rvm.patch
105 }
106
107 pkg_postinst() {
108 if use x64-macos ; then
109 ewarn
110 ewarn "For Mac OS X prefixes, you must install the virtualbox"
111 ewarn "package specifically for OS X which can be found at:"
112 ewarn "https://www.virtualbox.org/wiki/Downloads"
113 ewarn
114 fi
115 }