devball 0.4 → 0.5
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.
- data/bin/devball +0 -0
- data/bin/devball-build +0 -0
- data/bin/devball-pull +0 -0
- data/bin/devball-push +0 -0
- data/lib/devball/pkgspec/base.rb +3 -3
- metadata +6 -9
data/bin/devball
CHANGED
|
File without changes
|
data/bin/devball-build
CHANGED
|
File without changes
|
data/bin/devball-pull
CHANGED
|
File without changes
|
data/bin/devball-push
CHANGED
|
File without changes
|
data/lib/devball/pkgspec/base.rb
CHANGED
|
@@ -53,7 +53,7 @@ module DevBall
|
|
|
53
53
|
@packages ||= {}
|
|
54
54
|
@install_packages ||= {}
|
|
55
55
|
Dir["#{dir}/*.pkgspec"].each {|f|
|
|
56
|
-
load "#{
|
|
56
|
+
load "#{f}"
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
def explicit.include?(str)
|
|
@@ -139,7 +139,7 @@ module DevBall
|
|
|
139
139
|
end
|
|
140
140
|
|
|
141
141
|
def ball_file_name()
|
|
142
|
-
return "#{
|
|
142
|
+
return "#{ball}"
|
|
143
143
|
end
|
|
144
144
|
# extracts the ball to the correct place in the builddir
|
|
145
145
|
def step_extract()
|
|
@@ -151,7 +151,7 @@ module DevBall
|
|
|
151
151
|
orig = Dir.getwd
|
|
152
152
|
Dir.chdir(build_dir_name) {|dir|
|
|
153
153
|
self.class.patches.each {|patch|
|
|
154
|
-
system("patch -p1 < #{orig}/#{
|
|
154
|
+
system("patch -p1 < #{orig}/#{patch}") || raise(PatchFailed, "Patch #{patch} failed to apply. Errno #{$?}")
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
end
|
metadata
CHANGED
|
@@ -1,25 +1,22 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devball
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: "0.
|
|
4
|
+
version: "0.5"
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Graham Batty
|
|
7
|
+
- Graham Batty, Christopher Thompson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-04-27 00:00:00 -06:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
16
16
|
description:
|
|
17
|
-
email:
|
|
17
|
+
email: cthompson at nexopia dot com
|
|
18
18
|
executables:
|
|
19
|
-
- devball
|
|
20
19
|
- devball-build
|
|
21
|
-
- devball-pull
|
|
22
|
-
- devball-push
|
|
23
20
|
extensions: []
|
|
24
21
|
|
|
25
22
|
extra_rdoc_files:
|
|
@@ -61,8 +58,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
61
58
|
version:
|
|
62
59
|
requirements: []
|
|
63
60
|
|
|
64
|
-
rubyforge_project:
|
|
65
|
-
rubygems_version: 1.
|
|
61
|
+
rubyforge_project:
|
|
62
|
+
rubygems_version: 1.0.1
|
|
66
63
|
signing_key:
|
|
67
64
|
specification_version: 2
|
|
68
65
|
summary: A tool for building a self-contained set of packages that can be portably be moved from one binary-compatible machine to another.
|