-
Notifications
You must be signed in to change notification settings - Fork 71
/
ruby.bbclass
168 lines (135 loc) · 5.15 KB
/
ruby.bbclass
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
DEPENDS += " \
ruby-native \
"
RDEPENDS_${PN} += " \
ruby \
"
#${PN}_do_compile[depends] += "ruby-native:do_populate_sysroot"
def get_rubyversion(p):
import re
from os.path import isfile
import subprocess
found_version = "SOMETHING FAILED!"
cmd = "%s/ruby" % p
if not isfile(cmd):
return found_version
version = subprocess.Popen([cmd, "--version"], stdout=subprocess.PIPE).communicate()[0]
r = re.compile("ruby ([0-9]+\.[0-9]+\.[0-9]+)*")
m = r.match(version)
if m:
found_version = m.group(1)
return found_version
def get_rubygemslocation(p):
import re
from os.path import isfile
import subprocess
found_loc = "SOMETHING FAILED!"
cmd = "%s/gem" % p
if not isfile(cmd):
return found_loc
loc = subprocess.Popen([cmd, "env"], stdout=subprocess.PIPE).communicate()[0]
r = re.compile(".*\- (/usr.*/ruby/gems/.*)")
for line in loc.split('\n'):
m = r.match(line)
if m:
found_loc = m.group(1)
break
return found_loc
def get_rubygemsversion(p):
import re
from os.path import isfile
import subprocess
found_version = "SOMETHING FAILED!"
cmd = "%s/gem" % p
if not isfile(cmd):
return found_version
version = subprocess.Popen([cmd, "env", "gemdir"], stdout=subprocess.PIPE).communicate()[0]
r = re.compile(".*([0-9]+\.[0-9]+\.[0-9]+)$")
m = r.match(version.decode("utf-8"))
if m:
found_version = m.group(1)
return found_version
RUBY_VERSION ?= "${@get_rubyversion("${STAGING_BINDIR_NATIVE}")}"
RUBY_GEM_DIRECTORY ?= "${@get_rubygemslocation("${STAGING_BINDIR_NATIVE}")}"
RUBY_GEM_VERSION ?= "${@get_rubygemsversion("${STAGING_BINDIR_NATIVE}")}"
export GEM_HOME = "${STAGING_DIR_NATIVE}/usr/lib/ruby/gems/${RUBY_GEM_VERSION}"
RUBY_BUILD_GEMS ?= "${BPN}.gemspec"
RUBY_INSTALL_GEMS ?= "${BPN}-${BPV}.gem"
RUBY_COMPILE_FLAGS ?= 'LANG="en_US.UTF-8" LC_ALL="en_US.UTF-8"'
ruby_gen_extconf_fix() {
cat<<EOF>append
RbConfig::MAKEFILE_CONFIG['CPPFLAGS'] = ENV['CPPFLAGS'] if ENV['CPPFLAGS']
\$CPPFLAGS = ENV['CPPFLAGS'] if ENV['CPPFLAGS']
RbConfig::MAKEFILE_CONFIG['CC'] = ENV['CC'] if ENV['CC']
RbConfig::MAKEFILE_CONFIG['LD'] = ENV['LD'] if ENV['LD']
RbConfig::MAKEFILE_CONFIG['CFLAGS'] = ENV['CFLAGS'] if ENV['CFLAGS']
RbConfig::MAKEFILE_CONFIG['CXXFLAGS'] = ENV['CXXFLAGS'] if ENV['CXXFLAGS']
EOF
cat append2>>append
sysroot_ruby=${STAGING_INCDIR}/ruby-${RUBY_GEM_VERSION}
ruby_arch=`ls -1 ${sysroot_ruby} |grep -v ruby |tail -1 2> /dev/null`
cat<<EOF>>append
system("perl -p -i -e 's#^topdir.*#topdir = ${sysroot_ruby}#' Makefile")
system("perl -p -i -e 's#^hdrdir.*#hdrdir = ${sysroot_ruby}#' Makefile")
system("perl -p -i -e 's#^arch_hdrdir.*#arch_hdrdir = ${sysroot_ruby}/\\\\\$(arch)#' Makefile")
system("perl -p -i -e 's#^arch =.*#arch = ${ruby_arch}#' Makefile")
system("perl -p -i -e 's#^LIBPATH =.*#LIBPATH = -L.#' Makefile")
system("perl -p -i -e 's#^dldflags =.*#dldflags = ${LDFLAGS}#' Makefile")
system("perl -p -i -e 's#^ldflags =.*#ldflags = -L${STAGING_LIBDIR}#' Makefile")
EOF
}
ruby_do_compile() {
EXTCONF_FILES=$(find . -name extconf.rb -exec ls {} \;)
for e in $EXTCONF_FILES
do
if [ -f $e -a ! -f $e.orig ] ; then
grep create_makefile $e > append2 || continue
ruby_gen_extconf_fix
cp $e $e.orig
# Patch extconf.rb for cross compile
cat append >> $e
fi
done
for gem in ${RUBY_BUILD_GEMS}; do
${RUBY_COMPILE_FLAGS} gem build $gem
done
for e in $EXTCONF_FILES
do
if [ -f $e.orig ] ; then
mv $e.orig $e
fi
done
}
ruby_do_install() {
for gem in ${RUBY_INSTALL_GEMS}; do
gem install --ignore-dependencies --local --env-shebang --install-dir ${D}/${libdir}/ruby/gems/${RUBY_GEM_VERSION}/ $gem
done
# create symlink from the gems bin directory to /usr/bin
for i in ${D}/${libdir}/ruby/gems/${RUBY_GEM_VERSION}/bin/*; do
if [ -e "$i" ]; then
if [ ! -d ${D}/${bindir} ]; then mkdir -p ${D}/${bindir}; fi
b=`basename $i`
ln -sf ${libdir}/ruby/gems/${RUBY_GEM_VERSION}/bin/$b ${D}/${bindir}/$b
fi
done
}
EXPORT_FUNCTIONS do_compile do_install
PACKAGES = "${PN}-dbg ${PN} ${PN}-doc ${PN}-dev"
FILES_${PN}-dbg += " \
${libdir}/ruby/gems/${RUBY_GEM_VERSION}/gems/*/*/.debug \
${libdir}/ruby/gems/${RUBY_GEM_VERSION}/gems/*/*/*/.debug \
${libdir}/ruby/gems/${RUBY_GEM_VERSION}/gems/*/*/*/*/.debug \
${libdir}/ruby/gems/${RUBY_GEM_VERSION}/gems/*/*/*/*/*/.debug \
${libdir}/ruby/gems/${RUBY_GEM_VERSION}/extensions/*/*/*/*/*/.debug \
"
FILES_${PN} += " \
${libdir}/ruby/gems/${RUBY_GEM_VERSION}/gems \
${libdir}/ruby/gems/${RUBY_GEM_VERSION}/cache \
${libdir}/ruby/gems/${RUBY_GEM_VERSION}/bin \
${libdir}/ruby/gems/${RUBY_GEM_VERSION}/specifications \
${libdir}/ruby/gems/${RUBY_GEM_VERSION}/build_info \
${libdir}/ruby/gems/${RUBY_GEM_VERSION}/extensions \
"
FILES_${PN}-doc += " \
${libdir}/ruby/gems/${RUBY_GEM_VERSION}/doc \
"