evm 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-23.4-bin' do
2
+ tar_gz 'emacs-23.4-%s.tar.gz' % platform_name
3
+
4
+ install do
5
+ copy build_path, installation_path
6
+ end
7
+ end
@@ -0,0 +1,26 @@
1
+ recipe 'emacs-24.3' do
2
+ tar_gz 'emacs-24.3.tar.gz'
3
+
4
+ osx do
5
+ option '--with-ns'
6
+ option '--without-x'
7
+ option '--without-dbus'
8
+ end
9
+
10
+ linux do
11
+ crt_dir = File.dirname(`gcc -print-file-name=crt1.o`)
12
+
13
+ option '--prefix', installation_path
14
+ option "--with-crt-dir=#{crt_dir}"
15
+ end
16
+
17
+ install do
18
+ configure
19
+ make 'bootstrap'
20
+ make 'install'
21
+
22
+ osx do
23
+ copy build_path.join('nextstep', 'Emacs.app'), installation_path
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.1-bin' do
2
+ tar_gz 'emacs-24.1-%s.tar.gz' % platform_name
3
+
4
+ install do
5
+ copy build_path, installation_path
6
+ end
7
+ end
@@ -0,0 +1,23 @@
1
+ recipe 'emacs-24.1' do
2
+ tar_gz 'emacs-24.1.tar.gz'
3
+
4
+ osx do
5
+ option '--with-ns'
6
+ option '--without-x'
7
+ option '--without-dbus'
8
+ end
9
+
10
+ linux do
11
+ option '--prefix', installation_path
12
+ end
13
+
14
+ install do
15
+ configure
16
+ make 'bootstrap'
17
+ make 'install'
18
+
19
+ osx do
20
+ copy build_path.join('nextstep', 'Emacs.app'), installation_path
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.2-bin' do
2
+ tar_gz 'emacs-24.2-%s.tar.gz' % platform_name
3
+
4
+ install do
5
+ copy build_path, installation_path
6
+ end
7
+ end
@@ -0,0 +1,23 @@
1
+ recipe 'emacs-24.2' do
2
+ tar_gz 'emacs-24.2.tar.gz'
3
+
4
+ osx do
5
+ option '--with-ns'
6
+ option '--without-x'
7
+ option '--without-dbus'
8
+ end
9
+
10
+ linux do
11
+ option '--prefix', installation_path
12
+ end
13
+
14
+ install do
15
+ configure
16
+ make 'bootstrap'
17
+ make 'install'
18
+
19
+ osx do
20
+ copy build_path.join('nextstep', 'Emacs.app'), installation_path
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.3-bin' do
2
+ tar_gz 'emacs-24.3-%s.tar.gz' % platform_name
3
+
4
+ install do
5
+ copy build_path, installation_path
6
+ end
7
+ end
@@ -0,0 +1,23 @@
1
+ recipe 'emacs-24.3' do
2
+ tar_gz 'emacs-24.3.tar.gz'
3
+
4
+ osx do
5
+ option '--with-ns'
6
+ option '--without-x'
7
+ option '--without-dbus'
8
+ end
9
+
10
+ linux do
11
+ option '--prefix', installation_path
12
+ end
13
+
14
+ install do
15
+ configure
16
+ make 'bootstrap'
17
+ make 'install'
18
+
19
+ osx do
20
+ copy build_path.join('nextstep', 'Emacs.app'), installation_path
21
+ end
22
+ end
23
+ end
metadata CHANGED
@@ -1,27 +1,25 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: evm
3
- version: !ruby/object:Gem::Version
4
- version: 0.3.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.1
5
+ prerelease:
5
6
  platform: ruby
6
- authors:
7
+ authors:
7
8
  - Johan Andersson
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
-
12
- date: 2013-12-01 00:00:00 Z
12
+ date: 2013-12-01 00:00:00.000000000 Z
13
13
  dependencies: []
14
-
15
- description: EVM is a command-line tool that allows you to install multiple Emacs versions.
14
+ description: EVM is a command-line tool that allows you to install multiple Emacs
15
+ versions.
16
16
  email: johan.rejeep@gmail.com
17
- executables:
17
+ executables:
18
18
  - evm
19
19
  - emacs
20
20
  extensions: []
21
-
22
21
  extra_rdoc_files: []
23
-
24
- files:
22
+ files:
25
23
  - lib/evm/builder.rb
26
24
  - lib/evm/cli.rb
27
25
  - lib/evm/command/bin.rb
@@ -37,33 +35,39 @@ files:
37
35
  - lib/evm/system.rb
38
36
  - lib/evm/tar_file.rb
39
37
  - lib/evm.rb
38
+ - recipes/emacs-23.4-bin.rb
39
+ - recipes/emacs-23.4.rb
40
+ - recipes/emacs-24.1-bin.rb
41
+ - recipes/emacs-24.1.rb
42
+ - recipes/emacs-24.2-bin.rb
43
+ - recipes/emacs-24.2.rb
44
+ - recipes/emacs-24.3-bin.rb
45
+ - recipes/emacs-24.3.rb
40
46
  - bin/evm
41
47
  - bin/emacs
42
48
  homepage: http://github.com/rejeep/evm
43
- licenses:
49
+ licenses:
44
50
  - MIT
45
- metadata: {}
46
-
47
51
  post_install_message:
48
52
  rdoc_options: []
49
-
50
- require_paths:
53
+ require_paths:
51
54
  - lib
52
- required_ruby_version: !ruby/object:Gem::Requirement
53
- requirements:
54
- - &id001
55
- - ">="
56
- - !ruby/object:Gem::Version
57
- version: "0"
58
- required_rubygems_version: !ruby/object:Gem::Requirement
59
- requirements:
60
- - *id001
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ! '>='
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ! '>='
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
61
67
  requirements: []
62
-
63
68
  rubyforge_project:
64
- rubygems_version: 2.0.14
69
+ rubygems_version: 1.8.25
65
70
  signing_key:
66
- specification_version: 4
71
+ specification_version: 3
67
72
  summary: Emacs Version Manager
68
73
  test_files: []
69
-
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 96277839061683594ee32ec9b518557792ca5ee7
4
- data.tar.gz: 93678c63585191170447cd7e8a088ef6c83c95d4
5
- SHA512:
6
- metadata.gz: 8c7851ca1b5358028dd77cd602f833041ba8abeb242c620c7f93e19fa24640c6bc61956048276f820acadca7f17d2468d8385af2f1e420c16641018612c2ed9b
7
- data.tar.gz: 15e32837947aa19ef85e2aebf3436e06b2dea1674d2d3f7b9a9a15d5f63ba3e8a853fc361c540123e0789774412ebd6735037ff0eb32c34b4e33e38e7b9de41d