veewee 0.1.18 → 0.1.19
Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock
CHANGED
data/lib/veewee/scancode.rb
CHANGED
@@ -77,7 +77,7 @@ module Veewee
|
|
77
77
|
k['B'] = '2a 30 aa b0' ; k['N'] = '2a 31 aa b1' ; k['M'] = '2a 32 aa b2';
|
78
78
|
|
79
79
|
k[',']= '33 b3' ; k['.']='34 b4'; k['/'] = '35 b5' ;k[':'] = '2a 27 aa a7';
|
80
|
-
k['%'] = '2a 06 aa
|
80
|
+
k['%'] = '2a 06 aa 86'; k['_'] = '2a 0c aa 8c';
|
81
81
|
k['&'] = '2a 08 aa 88';
|
82
82
|
k['('] = '2a 0a aa 8a';
|
83
83
|
k[')'] = '2a 0b aa 8b';
|
data/lib/veewee/session.rb
CHANGED
data/lib/veewee/version.rb
CHANGED
@@ -7,15 +7,14 @@ yes|/usr/sbin/pkgadd -d http://mirror.opencsw.org/opencsw/pkgutil-`uname -p`.pkg
|
|
7
7
|
|
8
8
|
/opt/csw/bin/pkgutil -U
|
9
9
|
|
10
|
-
#
|
11
|
-
#
|
12
|
-
|
13
|
-
|
10
|
+
# We need some header stuff and so on to get gcc going
|
11
|
+
# Tip thx to - https://wiki.chipp.ch/twiki/bin/view/CmsTier3/InstallationSolaris
|
12
|
+
/usr/bin/pkg install SUNWarc SUNWsfwhea SUNWhea SUNWtoo
|
13
|
+
/usr/bin/pkg install math/header-math
|
14
14
|
|
15
|
+
yes|/opt/csw/bin/pkgutil -i CSWgsed
|
15
16
|
yes|/opt/csw/bin/pkgutil -i CSWruby18-gcc4
|
16
17
|
yes|/opt/csw/bin/pkgutil -i CSWruby18-dev
|
17
|
-
|
18
|
-
# prevents ":in `require': no such file to load -- mkmf (LoadError)"
|
19
18
|
yes|/opt/csw/bin/pkgutil -i CSWrubygems
|
20
19
|
|
21
20
|
# These are needed to get a compiler working
|
@@ -24,11 +23,29 @@ export PATH=/opt/csw/bin/:$PATH
|
|
24
23
|
export PATH=/opt/csw/gcc4/bin/:$PATH
|
25
24
|
|
26
25
|
yes | /opt/csw/bin/pkgutil -i CSWgcc4core
|
26
|
+
|
27
|
+
|
27
28
|
yes | /opt/csw/bin/pkgutil -i CSWgcc4g++
|
28
29
|
yes | /opt/csw/bin/pkgutil -i CSWreadline
|
29
30
|
yes | /opt/csw/bin/pkgutil -i CSWzlib
|
30
31
|
yes | /opt/csw/bin/pkgutil -i CSWossldevel
|
31
32
|
|
33
|
+
# prevents ":in `require': no such file to load -- mkmf (LoadError)"
|
34
|
+
# yes|/opt/csw/bin/pkgutil -i CSWruby
|
35
|
+
# used SUNWspro
|
36
|
+
# has entries in /opt/csw/lib/ruby/1.8/i386-solaris2.9/rbconfig.rb
|
37
|
+
# luckily there is another one
|
38
|
+
# For some reason these don't get installed ok, we need to give them a slight kick again
|
39
|
+
yes | /opt/csw/bin/pkgutil -i CSWgcc4core
|
40
|
+
yes|/opt/csw/bin/pkgutil -i CSWruby18-gcc4
|
41
|
+
|
42
|
+
# no solaris2.11 .... mkheaders here ! needs some fixing ??
|
43
|
+
# /opt/csw/gcc4/libexec/gcc/i386-pc-solaris2.10/4.3.3/install-tools/mkheaders
|
44
|
+
/opt/csw/gcc4/libexec/gcc/i386-pc-solaris2.8/4.3.3/install-tools/mkheaders
|
45
|
+
|
46
|
+
/opt/csw/sbin/alternatives --display rbconfig18
|
47
|
+
/opt/csw/sbin/alternatives --set rbconfig18 /opt/csw/lib/ruby/1.8/i386-solaris2.9/rbconfig.rb.gcc4
|
48
|
+
|
32
49
|
/opt/csw/bin/gem install puppet --no-ri --no-rdoc
|
33
50
|
/opt/csw/bin/gem install chef --no-ri --no-rdoc
|
34
51
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: veewee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 61
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 19
|
10
|
+
version: 0.1.19
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Patrick Debois
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2011-05-
|
19
|
+
date: 2011-05-03 00:00:00 +02:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|