All of lore.kernel.org
 help / color / mirror / Atom feed
From: <jackie.huang@windriver.com>
To: <openembedded-core@lists.openembedded.org>
Cc: Jackie.Huang@windriver.com
Subject: [PATCH 0/4] ruby: Add from OE-Classic and update to 1.9.3-p194
Date: Tue, 9 Oct 2012 14:36:53 +0800	[thread overview]
Message-ID: <cover.1349689653.git.jackie.huang@windriver.com> (raw)

From: Jackie Huang <jackie.huang@windriver.com>

* I sent this months ago but was told that oe-core is not the right place,
  however, we think it makes sense to add ruby to complete the scripting
  language set of: python, perl, ruby, so I re-send it.

* Test info
  1) IMAGE_INSTALL_append += "ruby"
  2) $ bitbake core-image-sato
  3) $ runqemu
  4) simple runtime tests: 

root@qemuppc:~# ruby -v
ruby 1.9.3p194 (2012-04-20 revision 35410) [powerpc-linux]

root@qemuppc:~# ruby -e 'puts "Hello World"'
Hello World

root@qemuppc:~# gem -v
1.8.23

root@qemuppc:~# wget http://rubygems.org/downloads/term-ansicolor-1.0.7.gem
Connecting to rubygems.org (204.232.149.25:80)
Connecting to rubygems.org (204.232.149.25:80)
Connecting to production.cf.rubygems.org (54.240.160.224:80)
term-ansicolor-1.0.7 100% |*******************************| 16896   0:00:00 ETA
root@qemuppc:~# ls
term-ansicolor-1.0.7.gem
root@qemuppc:~# gem install term-ansicolor-1.0.7.gem
Successfully installed term-ansicolor-1.0.7
1 gem installed
Installing ri documentation for term-ansicolor-1.0.7...
Installing RDoc documentation for term-ansicolor-1.0.7...
root@qemuppc:~# gem list

*** LOCAL GEMS ***

bigdecimal (1.1.0)
io-console (0.3)
json (1.5.4)
minitest (2.5.1)
rake (0.9.2.2)
rdoc (3.9.4)
term-ansicolor (1.0.7)

 
  

The following changes since commit bcefd015fb163d9c382ae05a86569dbcfd3d736a:

  oe-buildenv-internal: Add BB_NO_NETWORK to BB_ENV_EXTRAWHITE (2012-10-07 13:13:52 +0100)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib jhuang0/r_ruby_20121008_2
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/r_ruby_20121008_2

Jackie Huang (4):
  libyaml: Add recipe from meta-oe
  libyaml: update to 0.1.4
  ruby: Add from OE-Classic
  ruby: update to 1.9.3-194

 meta/recipes-devtools/ruby/ruby.inc                |   37 +++
 ...onf-hardcode-wide-getaddr-info-test-outco.patch |   26 ++
 meta/recipes-devtools/ruby/ruby/extmk.patch        |   13 +
 meta/recipes-devtools/ruby/ruby/extmk_run.patch    |   15 +
 .../ruby/ruby/ruby-1.9.3-always-use-i386.patch     |   11 +
 .../ruby/ruby/ruby-1.9.3-bignum-test-fix.patch     |   31 ++
 .../ruby/ruby-1.9.3-custom-rubygems-location.patch |   86 ++++++
 .../ruby/ruby-1.9.3-disable-versioned-paths.patch  |  149 ++++++++++
 .../ruby/ruby/ruby-1.9.3-fix-s390x-build.patch     |   12 +
 .../ruby/ruby/ruby-1.9.3-install-cross.patch       |   16 +
 .../ruby/ruby/ruby-1.9.3-mkmf-verbose.patch        |   11 +
 .../ruby-1.9.3-rubygems-1.8.11-uninstaller.patch   |   76 +++++
 .../ruby/ruby/ruby-1.9.3-webrick-test-fix.patch    |   24 ++
 .../ruby/rubygems-1.8.11-binary-extensions.patch   |  296 ++++++++++++++++++++
 meta/recipes-devtools/ruby/ruby_1.9.3-p194.bb      |   57 ++++
 meta/recipes-support/libyaml/libyaml_0.1.4.bb      |   17 ++
 16 files changed, 877 insertions(+), 0 deletions(-)
 create mode 100644 meta/recipes-devtools/ruby/ruby.inc
 create mode 100644 meta/recipes-devtools/ruby/ruby/0001-socket-extconf-hardcode-wide-getaddr-info-test-outco.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby/extmk.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby/extmk_run.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby/ruby-1.9.3-always-use-i386.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby/ruby-1.9.3-bignum-test-fix.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby/ruby-1.9.3-custom-rubygems-location.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby/ruby-1.9.3-disable-versioned-paths.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby/ruby-1.9.3-fix-s390x-build.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby/ruby-1.9.3-install-cross.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby/ruby-1.9.3-mkmf-verbose.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby/ruby-1.9.3-rubygems-1.8.11-uninstaller.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby/ruby-1.9.3-webrick-test-fix.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby/rubygems-1.8.11-binary-extensions.patch
 create mode 100644 meta/recipes-devtools/ruby/ruby_1.9.3-p194.bb
 create mode 100644 meta/recipes-support/libyaml/libyaml_0.1.4.bb

-- 
1.7.4




             reply	other threads:[~2012-10-09  6:50 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-09  6:36 jackie.huang [this message]
2012-10-09  6:36 ` [PATCH 1/4] libyaml: Add recipe from meta-oe jackie.huang
2012-10-09  6:36 ` [PATCH 2/4] libyaml: update to 0.1.4 jackie.huang
2012-10-09  6:36 ` [PATCH 3/4] ruby: Add from OE-Classic jackie.huang
2012-10-09  6:36 ` [PATCH 4/4] ruby: update to 1.9.3-194 jackie.huang
2012-10-09 10:38 ` [PATCH 0/4] ruby: Add from OE-Classic and update to 1.9.3-p194 Paul Eggleton
2012-10-09 12:38   ` Burton, Ross
2012-10-10  1:46     ` jhuang0
2012-10-09 17:07   ` Khem Raj

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1349689653.git.jackie.huang@windriver.com \
    --to=jackie.huang@windriver.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.