evm 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c5392493424325795161d08251f378a299d56cc3
4
- data.tar.gz: f604f55213ea59e47e5b22922a084ad60ae65566
3
+ metadata.gz: a06e8ab0a9a5d4ef885acf537d875237afdf991d
4
+ data.tar.gz: 39a23b743897266e6735aca975257c8a664dbb08
5
5
  SHA512:
6
- metadata.gz: f0c77cbc74d367fddd3fc4e177090321633962f66312019f4ca3c7aba3c27234cbdcfb22b9113cbed735ba3973fac1621245e5933e5d2c2b4f617a332dd42c9d
7
- data.tar.gz: 324f07d326f8326d907173dd48d229168c93d034133099f0514bc650e75ac49a2afa4f301f78dd6f2e92dfb7fb3ff6fbd92874443449c5d19ddc94eca097f598
6
+ metadata.gz: ef3f63731caab9dc3011c7293cb42aadb18a6c05c85debd090f084f89bb84146c182e4d0599a20406b1e7c18ce571670c0ba4ec8cd1da21ec1c8a1939f83b827
7
+ data.tar.gz: f49e5e04e5ffb76c0ff382e4260dfd490de9ba78449c4cfa39b82b99eab4aabc9d750f1aa18bc1d573ecf41b35c7be822a9904650170360d0a2437a7b4d72e9d
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-23.4-bin' do
2
+ tar_gz 'https://github.com/rejeep/evm-bin/raw/master/emacs-23.4-%s.tar.gz' % platform_name
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-23.4-travis' do
2
+ tar_gz 'https://github.com/rejeep/evm/releases/download/v0.7.0/emacs-23.4-travis.tar.gz'
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,27 @@
1
+ recipe 'emacs-23.4' do
2
+ tar_gz 'http://ftpmirror.gnu.org/emacs/emacs-23.4.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
+ option '--without-gif'
16
+ end
17
+
18
+ install do
19
+ configure
20
+ make 'bootstrap'
21
+ make 'install'
22
+
23
+ osx do
24
+ copy File.join(build_path, 'nextstep', 'Emacs.app'), installation_path
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.1-bin' do
2
+ tar_gz 'https://github.com/rejeep/evm-bin/raw/master/emacs-24.1-%s.tar.gz' % platform_name
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.1-travis' do
2
+ tar_gz 'https://github.com/rejeep/evm/releases/download/v0.6.1/emacs-24.1-travis.tar.gz'
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,24 @@
1
+ recipe 'emacs-24.1' do
2
+ tar_gz 'http://ftpmirror.gnu.org/emacs/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
+ option '--without-gif'
13
+ end
14
+
15
+ install do
16
+ configure
17
+ make 'bootstrap'
18
+ make 'install'
19
+
20
+ osx do
21
+ copy File.join(build_path, 'nextstep', 'Emacs.app'), installation_path
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.2-bin' do
2
+ tar_gz 'https://github.com/rejeep/evm-bin/raw/master/emacs-24.2-%s.tar.gz' % platform_name
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.2-travis' do
2
+ tar_gz 'https://github.com/rejeep/evm/releases/download/v0.6.1/emacs-24.2-travis.tar.gz'
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,24 @@
1
+ recipe 'emacs-24.2' do
2
+ tar_gz 'http://ftpmirror.gnu.org/emacs/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
+ option '--without-gif'
13
+ end
14
+
15
+ install do
16
+ configure
17
+ make 'bootstrap'
18
+ make 'install'
19
+
20
+ osx do
21
+ copy File.join(build_path, 'nextstep', 'Emacs.app'), installation_path
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.3-bin' do
2
+ tar_gz 'https://github.com/rejeep/evm-bin/raw/master/emacs-24.3-%s.tar.gz' % platform_name
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.3-travis' do
2
+ tar_gz 'https://github.com/rejeep/evm/releases/download/v0.6.1/emacs-24.3-travis.tar.gz'
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,24 @@
1
+ recipe 'emacs-24.3' do
2
+ tar_gz 'http://ftpmirror.gnu.org/emacs/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
+ option '--without-gif'
13
+ end
14
+
15
+ install do
16
+ configure
17
+ make 'bootstrap'
18
+ make 'install'
19
+
20
+ osx do
21
+ copy File.join(build_path, 'nextstep', 'Emacs.app'), installation_path
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.4-bin' do
2
+ tar_gz 'https://github.com/rejeep/evm-bin/raw/master/emacs-24.4-%s.tar.gz' % platform_name
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.4-travis' do
2
+ tar_gz 'https://github.com/rejeep/evm/releases/download/v0.6.1/emacs-24.4-travis.tar.gz'
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,24 @@
1
+ recipe 'emacs-24.4' do
2
+ tar_gz 'http://ftpmirror.gnu.org/emacs/emacs-24.4.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
+ option '--without-gif'
13
+ end
14
+
15
+ install do
16
+ configure
17
+ make 'bootstrap'
18
+ make 'install'
19
+
20
+ osx do
21
+ copy File.join(build_path, 'nextstep', 'Emacs.app'), installation_path
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.5-bin' do
2
+ tar_gz 'https://github.com/rejeep/evm-bin/raw/master/emacs-24.5-%s.tar.gz' % platform_name
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-24.5-travis' do
2
+ tar_gz 'https://github.com/rejeep/evm/releases/download/v0.6.1/emacs-24.5-travis.tar.gz'
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,24 @@
1
+ recipe 'emacs-24.5' do
2
+ tar_gz 'http://ftpmirror.gnu.org/emacs/emacs-24.5.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
+ option '--without-gif'
13
+ end
14
+
15
+ install do
16
+ configure
17
+ make 'bootstrap'
18
+ make 'install'
19
+
20
+ osx do
21
+ copy File.join(build_path, 'nextstep', 'Emacs.app'), installation_path
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-25.1-travis' do
2
+ tar_gz 'https://github.com/rejeep/evm/releases/download/v0.9.0/emacs-25.1-travis.tar.gz'
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,23 @@
1
+ recipe 'emacs-25.1' do
2
+ tar_xz 'http://ftpmirror.gnu.org/emacs/emacs-25.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
+ option '--without-gif'
13
+ end
14
+
15
+ install do
16
+ configure
17
+ make 'install'
18
+
19
+ osx do
20
+ copy File.join(build_path, 'nextstep', 'Emacs.app'), installation_path
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,7 @@
1
+ recipe 'emacs-git-snapshot-travis' do
2
+ tar_gz 'https://github.com/rejeep/evm/releases/download/v0.7.1/emacs-git-snapshot-travis.tar.gz'
3
+
4
+ install do
5
+ copy build_path, installations_path
6
+ end
7
+ end
@@ -0,0 +1,25 @@
1
+ recipe 'emacs-git-snapshot' do
2
+ git 'http://git.savannah.gnu.org/r/emacs.git'
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
+ option '--without-gif'
13
+ end
14
+
15
+ install do
16
+ autogen
17
+ configure
18
+ make 'bootstrap'
19
+ make 'install'
20
+
21
+ osx do
22
+ copy File.join(build_path, 'nextstep', 'Emacs.app'), installation_path
23
+ end
24
+ end
25
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: evm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Johan Andersson
@@ -39,6 +39,28 @@ files:
39
39
  - lib/evm/remote_file.rb
40
40
  - lib/evm/system.rb
41
41
  - lib/evm/tar_file.rb
42
+ - recipes/emacs-23.4-bin.rb
43
+ - recipes/emacs-23.4-travis.rb
44
+ - recipes/emacs-23.4.rb
45
+ - recipes/emacs-24.1-bin.rb
46
+ - recipes/emacs-24.1-travis.rb
47
+ - recipes/emacs-24.1.rb
48
+ - recipes/emacs-24.2-bin.rb
49
+ - recipes/emacs-24.2-travis.rb
50
+ - recipes/emacs-24.2.rb
51
+ - recipes/emacs-24.3-bin.rb
52
+ - recipes/emacs-24.3-travis.rb
53
+ - recipes/emacs-24.3.rb
54
+ - recipes/emacs-24.4-bin.rb
55
+ - recipes/emacs-24.4-travis.rb
56
+ - recipes/emacs-24.4.rb
57
+ - recipes/emacs-24.5-bin.rb
58
+ - recipes/emacs-24.5-travis.rb
59
+ - recipes/emacs-24.5.rb
60
+ - recipes/emacs-25.1-travis.rb
61
+ - recipes/emacs-25.1.rb
62
+ - recipes/emacs-git-snapshot-travis.rb
63
+ - recipes/emacs-git-snapshot.rb
42
64
  - spec/evm/builder_spec.rb
43
65
  - spec/evm/cli_spec.rb
44
66
  - spec/evm/command/bin_spec.rb