macaddr 1.0.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +1 -0
- data/README +4 -4
- data/Rakefile +374 -0
- data/lib/macaddr.rb +14 -3
- data/macaddr.gemspec +29 -0
- metadata +29 -15
- data/gemspec.rb +0 -27
- data/install.rb +0 -210
data/LICENSE
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
same as ruby's
|
data/README
CHANGED
@@ -8,7 +8,7 @@ DESCRIPTION
|
|
8
8
|
|
9
9
|
URI
|
10
10
|
|
11
|
-
http://
|
11
|
+
http://github.com/ahoward/macaddr
|
12
12
|
http://rubyforg.org/projects/codeforpeople
|
13
13
|
|
14
14
|
INSTALL
|
@@ -16,13 +16,13 @@ INSTALL
|
|
16
16
|
gem install macaddr
|
17
17
|
|
18
18
|
HISTORY
|
19
|
+
1.1.0:
|
20
|
+
- added dependancy on systemu to work around butt-licky windoze io
|
21
|
+
capture: http://redmine.ruby-lang.org/issues/show/3215
|
19
22
|
|
20
23
|
1.0.0:
|
21
|
-
|
22
24
|
- rdoc added
|
23
|
-
|
24
25
|
- eric hodel kicks ass. to find why, see
|
25
|
-
|
26
26
|
http://drawohara.com/post/44678286/eric-hodel-kicks-ass
|
27
27
|
|
28
28
|
SYNOPSIS
|
data/Rakefile
ADDED
@@ -0,0 +1,374 @@
|
|
1
|
+
This.rubyforge_project = 'codeforpeople'
|
2
|
+
This.author = "Ara T. Howard"
|
3
|
+
This.email = "ara.t.howard@gmail.com"
|
4
|
+
This.homepage = "https://github.com/ahoward/#{ This.lib }"
|
5
|
+
|
6
|
+
task :license do
|
7
|
+
open('LICENSE', 'w'){|fd| fd.puts "same as ruby's"}
|
8
|
+
end
|
9
|
+
|
10
|
+
task :default do
|
11
|
+
puts((Rake::Task.tasks.map{|task| task.name.gsub(/::/,':')} - ['default']).sort)
|
12
|
+
end
|
13
|
+
|
14
|
+
task :test do
|
15
|
+
run_tests!
|
16
|
+
end
|
17
|
+
|
18
|
+
namespace :test do
|
19
|
+
task(:unit){ run_tests!(:unit) }
|
20
|
+
task(:functional){ run_tests!(:functional) }
|
21
|
+
task(:integration){ run_tests!(:integration) }
|
22
|
+
end
|
23
|
+
|
24
|
+
def run_tests!(which = nil)
|
25
|
+
which ||= '**'
|
26
|
+
test_dir = File.join(This.dir, "test")
|
27
|
+
test_glob ||= File.join(test_dir, "#{ which }/**_test.rb")
|
28
|
+
test_rbs = Dir.glob(test_glob).sort
|
29
|
+
|
30
|
+
div = ('=' * 119)
|
31
|
+
line = ('-' * 119)
|
32
|
+
|
33
|
+
test_rbs.each_with_index do |test_rb, index|
|
34
|
+
testno = index + 1
|
35
|
+
command = "#{ This.ruby } -I ./lib -I ./test/lib #{ test_rb }"
|
36
|
+
|
37
|
+
puts
|
38
|
+
say(div, :color => :cyan, :bold => true)
|
39
|
+
say("@#{ testno } => ", :bold => true, :method => :print)
|
40
|
+
say(command, :color => :cyan, :bold => true)
|
41
|
+
say(line, :color => :cyan, :bold => true)
|
42
|
+
|
43
|
+
system(command)
|
44
|
+
|
45
|
+
say(line, :color => :cyan, :bold => true)
|
46
|
+
|
47
|
+
status = $?.exitstatus
|
48
|
+
|
49
|
+
if status.zero?
|
50
|
+
say("@#{ testno } <= ", :bold => true, :color => :white, :method => :print)
|
51
|
+
say("SUCCESS", :color => :green, :bold => true)
|
52
|
+
else
|
53
|
+
say("@#{ testno } <= ", :bold => true, :color => :white, :method => :print)
|
54
|
+
say("FAILURE", :color => :red, :bold => true)
|
55
|
+
end
|
56
|
+
say(line, :color => :cyan, :bold => true)
|
57
|
+
|
58
|
+
exit(status) unless status.zero?
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
|
63
|
+
task :gemspec do
|
64
|
+
ignore_extensions = ['git', 'svn', 'tmp', /sw./, 'bak', 'gem']
|
65
|
+
ignore_directories = ['pkg']
|
66
|
+
ignore_files = ['test/log']
|
67
|
+
|
68
|
+
shiteless =
|
69
|
+
lambda do |list|
|
70
|
+
list.delete_if do |entry|
|
71
|
+
next unless test(?e, entry)
|
72
|
+
extension = File.basename(entry).split(%r/[.]/).last
|
73
|
+
ignore_extensions.any?{|ext| ext === extension}
|
74
|
+
end
|
75
|
+
list.delete_if do |entry|
|
76
|
+
next unless test(?d, entry)
|
77
|
+
dirname = File.expand_path(entry)
|
78
|
+
ignore_directories.any?{|dir| File.expand_path(dir) == dirname}
|
79
|
+
end
|
80
|
+
list.delete_if do |entry|
|
81
|
+
next unless test(?f, entry)
|
82
|
+
filename = File.expand_path(entry)
|
83
|
+
ignore_files.any?{|file| File.expand_path(file) == filename}
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
lib = This.lib
|
88
|
+
object = This.object
|
89
|
+
version = This.version
|
90
|
+
files = shiteless[Dir::glob("**/**")]
|
91
|
+
executables = shiteless[Dir::glob("bin/*")].map{|exe| File.basename(exe)}
|
92
|
+
#has_rdoc = true #File.exist?('doc')
|
93
|
+
test_files = "test/#{ lib }.rb" if File.file?("test/#{ lib }.rb")
|
94
|
+
summary = object.respond_to?(:summary) ? object.summary : "summary: #{ lib } kicks the ass"
|
95
|
+
description = object.respond_to?(:description) ? object.description : "description: #{ lib } kicks the ass"
|
96
|
+
|
97
|
+
if This.extensions.nil?
|
98
|
+
This.extensions = []
|
99
|
+
extensions = This.extensions
|
100
|
+
%w( Makefile configure extconf.rb ).each do |ext|
|
101
|
+
extensions << ext if File.exists?(ext)
|
102
|
+
end
|
103
|
+
end
|
104
|
+
extensions = [extensions].flatten.compact
|
105
|
+
|
106
|
+
template =
|
107
|
+
if test(?e, 'gemspec.erb')
|
108
|
+
Template{ IO.read('gemspec.erb') }
|
109
|
+
else
|
110
|
+
Template {
|
111
|
+
<<-__
|
112
|
+
## #{ lib }.gemspec
|
113
|
+
#
|
114
|
+
|
115
|
+
Gem::Specification::new do |spec|
|
116
|
+
spec.name = #{ lib.inspect }
|
117
|
+
spec.version = #{ version.inspect }
|
118
|
+
spec.platform = Gem::Platform::RUBY
|
119
|
+
spec.summary = #{ lib.inspect }
|
120
|
+
spec.description = #{ description.inspect }
|
121
|
+
|
122
|
+
spec.files =\n#{ files.sort.pretty_inspect }
|
123
|
+
spec.executables = #{ executables.inspect }
|
124
|
+
|
125
|
+
spec.require_path = "lib"
|
126
|
+
|
127
|
+
spec.test_files = #{ test_files.inspect }
|
128
|
+
|
129
|
+
### spec.add_dependency 'lib', '>= version'
|
130
|
+
#### spec.add_dependency 'map'
|
131
|
+
|
132
|
+
spec.extensions.push(*#{ extensions.inspect })
|
133
|
+
|
134
|
+
spec.rubyforge_project = #{ This.rubyforge_project.inspect }
|
135
|
+
spec.author = #{ This.author.inspect }
|
136
|
+
spec.email = #{ This.email.inspect }
|
137
|
+
spec.homepage = #{ This.homepage.inspect }
|
138
|
+
end
|
139
|
+
__
|
140
|
+
}
|
141
|
+
end
|
142
|
+
|
143
|
+
Fu.mkdir_p(This.pkgdir)
|
144
|
+
gemspec = "#{ lib }.gemspec"
|
145
|
+
open(gemspec, "w"){|fd| fd.puts(template)}
|
146
|
+
This.gemspec = gemspec
|
147
|
+
end
|
148
|
+
|
149
|
+
task :gem => [:clean, :gemspec] do
|
150
|
+
Fu.mkdir_p(This.pkgdir)
|
151
|
+
before = Dir['*.gem']
|
152
|
+
cmd = "gem build #{ This.gemspec }"
|
153
|
+
`#{ cmd }`
|
154
|
+
after = Dir['*.gem']
|
155
|
+
gem = ((after - before).first || after.first) or abort('no gem!')
|
156
|
+
Fu.mv(gem, This.pkgdir)
|
157
|
+
This.gem = File.join(This.pkgdir, File.basename(gem))
|
158
|
+
end
|
159
|
+
|
160
|
+
task :readme do
|
161
|
+
samples = ''
|
162
|
+
prompt = '~ > '
|
163
|
+
lib = This.lib
|
164
|
+
version = This.version
|
165
|
+
|
166
|
+
Dir['sample*/*'].sort.each do |sample|
|
167
|
+
samples << "\n" << " <========< #{ sample } >========>" << "\n\n"
|
168
|
+
|
169
|
+
cmd = "cat #{ sample }"
|
170
|
+
samples << Util.indent(prompt + cmd, 2) << "\n\n"
|
171
|
+
samples << Util.indent(`#{ cmd }`, 4) << "\n"
|
172
|
+
|
173
|
+
cmd = "ruby #{ sample }"
|
174
|
+
samples << Util.indent(prompt + cmd, 2) << "\n\n"
|
175
|
+
|
176
|
+
cmd = "ruby -e'STDOUT.sync=true; exec %(ruby -I ./lib #{ sample })'"
|
177
|
+
samples << Util.indent(`#{ cmd } 2>&1`, 4) << "\n"
|
178
|
+
end
|
179
|
+
|
180
|
+
template =
|
181
|
+
if test(?e, 'readme.erb')
|
182
|
+
Template{ IO.read('readme.erb') }
|
183
|
+
else
|
184
|
+
Template {
|
185
|
+
<<-__
|
186
|
+
NAME
|
187
|
+
#{ lib }
|
188
|
+
|
189
|
+
DESCRIPTION
|
190
|
+
|
191
|
+
INSTALL
|
192
|
+
gem install #{ lib }
|
193
|
+
|
194
|
+
SAMPLES
|
195
|
+
#{ samples }
|
196
|
+
__
|
197
|
+
}
|
198
|
+
end
|
199
|
+
|
200
|
+
open("README", "w"){|fd| fd.puts template}
|
201
|
+
end
|
202
|
+
|
203
|
+
|
204
|
+
task :clean do
|
205
|
+
Dir[File.join(This.pkgdir, '**/**')].each{|entry| Fu.rm_rf(entry)}
|
206
|
+
end
|
207
|
+
|
208
|
+
|
209
|
+
task :release => [:clean, :gemspec, :gem] do
|
210
|
+
gems = Dir[File.join(This.pkgdir, '*.gem')].flatten
|
211
|
+
raise "which one? : #{ gems.inspect }" if gems.size > 1
|
212
|
+
raise "no gems?" if gems.size < 1
|
213
|
+
|
214
|
+
cmd = "gem push #{ This.gem }"
|
215
|
+
puts cmd
|
216
|
+
puts
|
217
|
+
system(cmd)
|
218
|
+
abort("cmd(#{ cmd }) failed with (#{ $?.inspect })") unless $?.exitstatus.zero?
|
219
|
+
|
220
|
+
cmd = "rubyforge login && rubyforge add_release #{ This.rubyforge_project } #{ This.lib } #{ This.version } #{ This.gem }"
|
221
|
+
puts cmd
|
222
|
+
puts
|
223
|
+
system(cmd)
|
224
|
+
abort("cmd(#{ cmd }) failed with (#{ $?.inspect })") unless $?.exitstatus.zero?
|
225
|
+
end
|
226
|
+
|
227
|
+
|
228
|
+
|
229
|
+
|
230
|
+
|
231
|
+
BEGIN {
|
232
|
+
# support for this rakefile
|
233
|
+
#
|
234
|
+
$VERBOSE = nil
|
235
|
+
|
236
|
+
require 'ostruct'
|
237
|
+
require 'erb'
|
238
|
+
require 'fileutils'
|
239
|
+
require 'rbconfig'
|
240
|
+
require 'pp'
|
241
|
+
|
242
|
+
# fu shortcut
|
243
|
+
#
|
244
|
+
Fu = FileUtils
|
245
|
+
|
246
|
+
# cache a bunch of stuff about this rakefile/environment
|
247
|
+
#
|
248
|
+
This = OpenStruct.new
|
249
|
+
|
250
|
+
This.file = File.expand_path(__FILE__)
|
251
|
+
This.dir = File.dirname(This.file)
|
252
|
+
This.pkgdir = File.join(This.dir, 'pkg')
|
253
|
+
|
254
|
+
# grok lib
|
255
|
+
#
|
256
|
+
lib = ENV['LIB']
|
257
|
+
unless lib
|
258
|
+
lib = File.basename(Dir.pwd).sub(/[-].*$/, '')
|
259
|
+
end
|
260
|
+
This.lib = lib
|
261
|
+
|
262
|
+
# grok version
|
263
|
+
#
|
264
|
+
version = ENV['VERSION']
|
265
|
+
unless version
|
266
|
+
require "./lib/#{ This.lib }"
|
267
|
+
This.name = lib.capitalize
|
268
|
+
This.object = eval(This.name)
|
269
|
+
version = This.object.send(:version)
|
270
|
+
end
|
271
|
+
This.version = version
|
272
|
+
|
273
|
+
# we need to know the name of the lib an it's version
|
274
|
+
#
|
275
|
+
abort('no lib') unless This.lib
|
276
|
+
abort('no version') unless This.version
|
277
|
+
|
278
|
+
# discover full path to this ruby executable
|
279
|
+
#
|
280
|
+
c = Config::CONFIG
|
281
|
+
bindir = c["bindir"] || c['BINDIR']
|
282
|
+
ruby_install_name = c['ruby_install_name'] || c['RUBY_INSTALL_NAME'] || 'ruby'
|
283
|
+
ruby_ext = c['EXEEXT'] || ''
|
284
|
+
ruby = File.join(bindir, (ruby_install_name + ruby_ext))
|
285
|
+
This.ruby = ruby
|
286
|
+
|
287
|
+
# some utils
|
288
|
+
#
|
289
|
+
module Util
|
290
|
+
def indent(s, n = 2)
|
291
|
+
s = unindent(s)
|
292
|
+
ws = ' ' * n
|
293
|
+
s.gsub(%r/^/, ws)
|
294
|
+
end
|
295
|
+
|
296
|
+
def unindent(s)
|
297
|
+
indent = nil
|
298
|
+
s.each_line do |line|
|
299
|
+
next if line =~ %r/^\s*$/
|
300
|
+
indent = line[%r/^\s*/] and break
|
301
|
+
end
|
302
|
+
indent ? s.gsub(%r/^#{ indent }/, "") : s
|
303
|
+
end
|
304
|
+
extend self
|
305
|
+
end
|
306
|
+
|
307
|
+
# template support
|
308
|
+
#
|
309
|
+
class Template
|
310
|
+
def initialize(&block)
|
311
|
+
@block = block
|
312
|
+
@template = block.call.to_s
|
313
|
+
end
|
314
|
+
def expand(b=nil)
|
315
|
+
ERB.new(Util.unindent(@template)).result((b||@block).binding)
|
316
|
+
end
|
317
|
+
alias_method 'to_s', 'expand'
|
318
|
+
end
|
319
|
+
def Template(*args, &block) Template.new(*args, &block) end
|
320
|
+
|
321
|
+
# colored console output support
|
322
|
+
#
|
323
|
+
This.ansi = {
|
324
|
+
:clear => "\e[0m",
|
325
|
+
:reset => "\e[0m",
|
326
|
+
:erase_line => "\e[K",
|
327
|
+
:erase_char => "\e[P",
|
328
|
+
:bold => "\e[1m",
|
329
|
+
:dark => "\e[2m",
|
330
|
+
:underline => "\e[4m",
|
331
|
+
:underscore => "\e[4m",
|
332
|
+
:blink => "\e[5m",
|
333
|
+
:reverse => "\e[7m",
|
334
|
+
:concealed => "\e[8m",
|
335
|
+
:black => "\e[30m",
|
336
|
+
:red => "\e[31m",
|
337
|
+
:green => "\e[32m",
|
338
|
+
:yellow => "\e[33m",
|
339
|
+
:blue => "\e[34m",
|
340
|
+
:magenta => "\e[35m",
|
341
|
+
:cyan => "\e[36m",
|
342
|
+
:white => "\e[37m",
|
343
|
+
:on_black => "\e[40m",
|
344
|
+
:on_red => "\e[41m",
|
345
|
+
:on_green => "\e[42m",
|
346
|
+
:on_yellow => "\e[43m",
|
347
|
+
:on_blue => "\e[44m",
|
348
|
+
:on_magenta => "\e[45m",
|
349
|
+
:on_cyan => "\e[46m",
|
350
|
+
:on_white => "\e[47m"
|
351
|
+
}
|
352
|
+
def say(phrase, *args)
|
353
|
+
options = args.last.is_a?(Hash) ? args.pop : {}
|
354
|
+
options[:color] = args.shift.to_s.to_sym unless args.empty?
|
355
|
+
keys = options.keys
|
356
|
+
keys.each{|key| options[key.to_s.to_sym] = options.delete(key)}
|
357
|
+
|
358
|
+
color = options[:color]
|
359
|
+
bold = options.has_key?(:bold)
|
360
|
+
|
361
|
+
parts = [phrase]
|
362
|
+
parts.unshift(This.ansi[color]) if color
|
363
|
+
parts.unshift(This.ansi[:bold]) if bold
|
364
|
+
parts.push(This.ansi[:clear]) if parts.size > 1
|
365
|
+
|
366
|
+
method = options[:method] || :puts
|
367
|
+
|
368
|
+
Kernel.send(method, parts.join)
|
369
|
+
end
|
370
|
+
|
371
|
+
# always run out of the project dir
|
372
|
+
#
|
373
|
+
Dir.chdir(This.dir)
|
374
|
+
}
|
data/lib/macaddr.rb
CHANGED
@@ -12,9 +12,18 @@
|
|
12
12
|
# To return an array of all MAC addresses:
|
13
13
|
#
|
14
14
|
# Mac.address.list
|
15
|
+
#
|
16
|
+
|
17
|
+
begin
|
18
|
+
require 'rubygems'
|
19
|
+
rescue LoadError
|
20
|
+
nil
|
21
|
+
end
|
22
|
+
|
23
|
+
require 'systemu'
|
15
24
|
|
16
25
|
module Mac
|
17
|
-
VERSION = '1.
|
26
|
+
VERSION = '1.2.0'
|
18
27
|
|
19
28
|
def Mac.version() ::Mac::VERSION end
|
20
29
|
|
@@ -42,9 +51,9 @@ module Mac
|
|
42
51
|
|
43
52
|
lines = nil
|
44
53
|
cmds.each do |cmd|
|
45
|
-
stdout =
|
54
|
+
status, stdout, stderr = systemu(cmd) rescue next
|
46
55
|
next unless stdout and stdout.size > 0
|
47
|
-
lines = stdout and break
|
56
|
+
lines = stdout.split(/\n/) and break
|
48
57
|
end
|
49
58
|
raise "all of #{ cmds.join ' ' } failed" unless lines
|
50
59
|
|
@@ -67,3 +76,5 @@ module Mac
|
|
67
76
|
alias_method "addr", "address"
|
68
77
|
end
|
69
78
|
end
|
79
|
+
|
80
|
+
Macaddr = Mac
|
data/macaddr.gemspec
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
## macaddr.gemspec
|
2
|
+
#
|
3
|
+
|
4
|
+
Gem::Specification::new do |spec|
|
5
|
+
spec.name = "macaddr"
|
6
|
+
spec.version = "1.2.0"
|
7
|
+
spec.platform = Gem::Platform::RUBY
|
8
|
+
spec.summary = "macaddr"
|
9
|
+
spec.description = "description: macaddr kicks the ass"
|
10
|
+
|
11
|
+
spec.files =
|
12
|
+
["LICENSE", "README", "Rakefile", "lib", "lib/macaddr.rb", "macaddr.gemspec"]
|
13
|
+
|
14
|
+
spec.executables = []
|
15
|
+
|
16
|
+
spec.require_path = "lib"
|
17
|
+
|
18
|
+
spec.test_files = nil
|
19
|
+
|
20
|
+
### spec.add_dependency 'lib', '>= version'
|
21
|
+
#### spec.add_dependency 'map'
|
22
|
+
|
23
|
+
spec.extensions.push(*[])
|
24
|
+
|
25
|
+
spec.rubyforge_project = "codeforpeople"
|
26
|
+
spec.author = "Ara T. Howard"
|
27
|
+
spec.email = "ara.t.howard@gmail.com"
|
28
|
+
spec.homepage = "https://github.com/ahoward/macaddr"
|
29
|
+
end
|
metadata
CHANGED
@@ -1,19 +1,25 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: macaddr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 31
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 2
|
9
|
+
- 0
|
10
|
+
version: 1.2.0
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Ara T. Howard
|
8
|
-
autorequire:
|
14
|
+
autorequire:
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
17
|
|
12
|
-
date:
|
18
|
+
date: 2011-08-10 00:00:00 -08:00
|
13
19
|
default_executable:
|
14
20
|
dependencies: []
|
15
21
|
|
16
|
-
description:
|
22
|
+
description: "description: macaddr kicks the ass"
|
17
23
|
email: ara.t.howard@gmail.com
|
18
24
|
executables: []
|
19
25
|
|
@@ -22,36 +28,44 @@ extensions: []
|
|
22
28
|
extra_rdoc_files: []
|
23
29
|
|
24
30
|
files:
|
25
|
-
-
|
26
|
-
- install.rb
|
27
|
-
- lib
|
28
|
-
- lib/macaddr.rb
|
31
|
+
- LICENSE
|
29
32
|
- README
|
30
|
-
|
31
|
-
|
33
|
+
- Rakefile
|
34
|
+
- lib/macaddr.rb
|
35
|
+
- macaddr.gemspec
|
36
|
+
has_rdoc: true
|
37
|
+
homepage: https://github.com/ahoward/macaddr
|
38
|
+
licenses: []
|
39
|
+
|
32
40
|
post_install_message:
|
33
41
|
rdoc_options: []
|
34
42
|
|
35
43
|
require_paths:
|
36
44
|
- lib
|
37
45
|
required_ruby_version: !ruby/object:Gem::Requirement
|
46
|
+
none: false
|
38
47
|
requirements:
|
39
48
|
- - ">="
|
40
49
|
- !ruby/object:Gem::Version
|
50
|
+
hash: 3
|
51
|
+
segments:
|
52
|
+
- 0
|
41
53
|
version: "0"
|
42
|
-
version:
|
43
54
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
44
56
|
requirements:
|
45
57
|
- - ">="
|
46
58
|
- !ruby/object:Gem::Version
|
59
|
+
hash: 3
|
60
|
+
segments:
|
61
|
+
- 0
|
47
62
|
version: "0"
|
48
|
-
version:
|
49
63
|
requirements: []
|
50
64
|
|
51
|
-
rubyforge_project:
|
52
|
-
rubygems_version: 1.2
|
65
|
+
rubyforge_project: codeforpeople
|
66
|
+
rubygems_version: 1.4.2
|
53
67
|
signing_key:
|
54
|
-
specification_version:
|
68
|
+
specification_version: 3
|
55
69
|
summary: macaddr
|
56
70
|
test_files: []
|
57
71
|
|
data/gemspec.rb
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
|
2
|
-
lib, version = File::basename(File::dirname(File::expand_path(__FILE__))).split %r/-/, 2
|
3
|
-
|
4
|
-
require 'rubygems'
|
5
|
-
|
6
|
-
Gem::Specification::new do |spec|
|
7
|
-
$VERBOSE = nil
|
8
|
-
spec.name = lib
|
9
|
-
spec.version = version
|
10
|
-
spec.platform = Gem::Platform::RUBY
|
11
|
-
spec.summary = lib
|
12
|
-
|
13
|
-
spec.files = Dir::glob "**/**"
|
14
|
-
spec.executables = Dir::glob("bin/*").map{|exe| File::basename exe}
|
15
|
-
|
16
|
-
spec.require_path = "lib"
|
17
|
-
spec.autorequire = lib
|
18
|
-
|
19
|
-
spec.test_suite_file = "test/#{ lib }.rb" if File::directory? "test"
|
20
|
-
#spec.add_dependency 'lib', '>= version'
|
21
|
-
|
22
|
-
spec.extensions << "extconf.rb" if File::exists? "extconf.rb"
|
23
|
-
|
24
|
-
spec.author = "Ara T. Howard"
|
25
|
-
spec.email = "ara.t.howard@gmail.com"
|
26
|
-
spec.homepage = "http://codeforpeople.com/lib/ruby/#{ lib }/"
|
27
|
-
end
|
data/install.rb
DELETED
@@ -1,210 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
require 'rbconfig'
|
3
|
-
require 'find'
|
4
|
-
require 'ftools'
|
5
|
-
require 'tempfile'
|
6
|
-
include Config
|
7
|
-
|
8
|
-
LIBDIR = "lib"
|
9
|
-
LIBDIR_MODE = 0644
|
10
|
-
|
11
|
-
BINDIR = "bin"
|
12
|
-
BINDIR_MODE = 0755
|
13
|
-
|
14
|
-
|
15
|
-
$srcdir = CONFIG["srcdir"]
|
16
|
-
$version = CONFIG["MAJOR"]+"."+CONFIG["MINOR"]
|
17
|
-
$libdir = File.join(CONFIG["libdir"], "ruby", $version)
|
18
|
-
$archdir = File.join($libdir, CONFIG["arch"])
|
19
|
-
$site_libdir = $:.find {|x| x =~ /site_ruby$/}
|
20
|
-
$bindir = CONFIG["bindir"] || CONFIG['BINDIR']
|
21
|
-
$ruby_install_name = CONFIG['ruby_install_name'] || CONFIG['RUBY_INSTALL_NAME'] || 'ruby'
|
22
|
-
$ruby_ext = CONFIG['EXEEXT'] || ''
|
23
|
-
$ruby = File.join($bindir, ($ruby_install_name + $ruby_ext))
|
24
|
-
|
25
|
-
if !$site_libdir
|
26
|
-
$site_libdir = File.join($libdir, "site_ruby")
|
27
|
-
elsif $site_libdir !~ %r/#{Regexp.quote($version)}/
|
28
|
-
$site_libdir = File.join($site_libdir, $version)
|
29
|
-
end
|
30
|
-
|
31
|
-
def install_rb(srcdir=nil, destdir=nil, mode=nil, bin=nil)
|
32
|
-
#{{{
|
33
|
-
path = []
|
34
|
-
dir = []
|
35
|
-
Find.find(srcdir) do |f|
|
36
|
-
next unless FileTest.file?(f)
|
37
|
-
next if (f = f[srcdir.length+1..-1]) == nil
|
38
|
-
next if (/CVS$/ =~ File.dirname(f))
|
39
|
-
next if f =~ %r/\.lnk/
|
40
|
-
path.push f
|
41
|
-
dir |= [File.dirname(f)]
|
42
|
-
end
|
43
|
-
for f in dir
|
44
|
-
next if f == "."
|
45
|
-
next if f == "CVS"
|
46
|
-
File::makedirs(File.join(destdir, f))
|
47
|
-
end
|
48
|
-
for f in path
|
49
|
-
next if (/\~$/ =~ f)
|
50
|
-
next if (/^\./ =~ File.basename(f))
|
51
|
-
unless bin
|
52
|
-
File::install(File.join(srcdir, f), File.join(destdir, f), mode, true)
|
53
|
-
else
|
54
|
-
from = File.join(srcdir, f)
|
55
|
-
to = File.join(destdir, f)
|
56
|
-
shebangify(from) do |sf|
|
57
|
-
$deferr.print from, " -> ", File::catname(from, to), "\n"
|
58
|
-
$deferr.printf "chmod %04o %s\n", mode, to
|
59
|
-
File::install(sf, to, mode, false)
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|
63
|
-
#}}}
|
64
|
-
end
|
65
|
-
def shebangify f
|
66
|
-
#{{{
|
67
|
-
open(f) do |fd|
|
68
|
-
buf = fd.read 42
|
69
|
-
if buf =~ %r/^\s*#\s*!.*ruby/o
|
70
|
-
ftmp = Tempfile::new("#{ $$ }_#{ File::basename(f) }")
|
71
|
-
begin
|
72
|
-
fd.rewind
|
73
|
-
ftmp.puts "#!#{ $ruby }"
|
74
|
-
while((buf = fd.read(8192)))
|
75
|
-
ftmp.write buf
|
76
|
-
end
|
77
|
-
ftmp.close
|
78
|
-
yield ftmp.path
|
79
|
-
ensure
|
80
|
-
ftmp.close!
|
81
|
-
end
|
82
|
-
else
|
83
|
-
yield f
|
84
|
-
end
|
85
|
-
end
|
86
|
-
#}}}
|
87
|
-
end
|
88
|
-
def ARGV.switch
|
89
|
-
#{{{
|
90
|
-
return nil if self.empty?
|
91
|
-
arg = self.shift
|
92
|
-
return nil if arg == '--'
|
93
|
-
if arg =~ /^-(.)(.*)/
|
94
|
-
return arg if $1 == '-'
|
95
|
-
raise 'unknown switch "-"' if $2.index('-')
|
96
|
-
self.unshift "-#{$2}" if $2.size > 0
|
97
|
-
"-#{$1}"
|
98
|
-
else
|
99
|
-
self.unshift arg
|
100
|
-
nil
|
101
|
-
end
|
102
|
-
#}}}
|
103
|
-
end
|
104
|
-
def ARGV.req_arg
|
105
|
-
#{{{
|
106
|
-
self.shift || raise('missing argument')
|
107
|
-
#}}}
|
108
|
-
end
|
109
|
-
def linkify d, linked = []
|
110
|
-
#--{{{
|
111
|
-
if test ?d, d
|
112
|
-
versioned = Dir[ File::join(d, "*-[0-9].[0-9].[0-9].rb") ]
|
113
|
-
versioned.each do |v|
|
114
|
-
src, dst = v, v.gsub(%r/\-[\d\.]+\.rb$/, '.rb')
|
115
|
-
lnk = nil
|
116
|
-
begin
|
117
|
-
if test ?l, dst
|
118
|
-
lnk = "#{ dst }.lnk"
|
119
|
-
puts "#{ dst } -> #{ lnk }"
|
120
|
-
File::rename dst, lnk
|
121
|
-
end
|
122
|
-
unless test ?e, dst
|
123
|
-
puts "#{ src } -> #{ dst }"
|
124
|
-
File::copy src, dst
|
125
|
-
linked << dst
|
126
|
-
end
|
127
|
-
ensure
|
128
|
-
if lnk
|
129
|
-
at_exit do
|
130
|
-
puts "#{ lnk } -> #{ dst }"
|
131
|
-
File::rename lnk, dst
|
132
|
-
end
|
133
|
-
end
|
134
|
-
end
|
135
|
-
end
|
136
|
-
end
|
137
|
-
linked
|
138
|
-
#--}}}
|
139
|
-
end
|
140
|
-
|
141
|
-
|
142
|
-
#
|
143
|
-
# main program
|
144
|
-
#
|
145
|
-
|
146
|
-
libdir = $site_libdir
|
147
|
-
bindir = $bindir
|
148
|
-
no_linkify = false
|
149
|
-
linked = nil
|
150
|
-
help = false
|
151
|
-
|
152
|
-
usage = <<-usage
|
153
|
-
#{ File::basename $0 }
|
154
|
-
-d, --destdir <destdir>
|
155
|
-
-l, --libdir <libdir>
|
156
|
-
-b, --bindir <bindir>
|
157
|
-
-r, --ruby <ruby>
|
158
|
-
-n, --no_linkify
|
159
|
-
-s, --sudo
|
160
|
-
-h, --help
|
161
|
-
usage
|
162
|
-
|
163
|
-
begin
|
164
|
-
while switch = ARGV.switch
|
165
|
-
case switch
|
166
|
-
when '-d', '--destdir'
|
167
|
-
libdir = ARGV.req_arg
|
168
|
-
when '-l', '--libdir'
|
169
|
-
libdir = ARGV.req_arg
|
170
|
-
when '-b', '--bindir'
|
171
|
-
bindir = ARGV.req_arg
|
172
|
-
when '-r', '--ruby'
|
173
|
-
$ruby = ARGV.req_arg
|
174
|
-
when '-n', '--no_linkify'
|
175
|
-
no_linkify = true
|
176
|
-
when '-s', '--sudo'
|
177
|
-
sudo = 'sudo'
|
178
|
-
when '-h', '--help'
|
179
|
-
help = true
|
180
|
-
else
|
181
|
-
raise "unknown switch #{switch.dump}"
|
182
|
-
end
|
183
|
-
end
|
184
|
-
rescue
|
185
|
-
STDERR.puts $!.to_s
|
186
|
-
STDERR.puts usage
|
187
|
-
exit 1
|
188
|
-
end
|
189
|
-
|
190
|
-
if help
|
191
|
-
STDOUT.puts usage
|
192
|
-
exit
|
193
|
-
end
|
194
|
-
|
195
|
-
system "#{ sudo } #{ $ruby } pre-install.rb" if test(?s, 'pre-install.rb')
|
196
|
-
|
197
|
-
unless no_linkify
|
198
|
-
linked = linkify('lib') + linkify('bin')
|
199
|
-
end
|
200
|
-
|
201
|
-
system "#{ $ruby } extconf.rb && make && #{ sudo } make install" if test(?s, 'extconf.rb')
|
202
|
-
|
203
|
-
install_rb(LIBDIR, libdir, LIBDIR_MODE)
|
204
|
-
install_rb(BINDIR, bindir, BINDIR_MODE, bin=true)
|
205
|
-
|
206
|
-
if linked
|
207
|
-
linked.each{|path| File::rm_f path}
|
208
|
-
end
|
209
|
-
|
210
|
-
system "#{ sudo } #{ $ruby } post-install.rb" if test(?s, 'post-install.rb')
|