All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Nathan Hartman" <hnathan918@gmail.com>
To: <meta-virtualization@lists.yoctoproject.org>
Cc: Nathan Hartman <hnathan918@gmail.com>
Subject: [meta-virtualization][m-c-s][PATCH 2/8] Initial concurrent-ruby, tzinfo and tzinfo-data ruby recipes
Date: Thu, 20 Feb 2020 11:58:00 -0800	[thread overview]
Message-ID: <20200220195806.173460-2-hnathan918@gmail.com> (raw)
In-Reply-To: <20200220195806.173460-1-hnathan918@gmail.com>

Signed-off-by: Nathan Hartman <hnathan918@gmail.com>
---
 ...emoved-check-for-concurrent_ruby.jar.patch | 26 +++++++++++++++++++
 .../ruby/concurrent-ruby_1.1.6.bb             | 12 +++++++++
 .../ruby/tzinfo-data_1.2019.3.bb              | 11 ++++++++
 .../recipes-devtools/ruby/tzinfo_2.0.1.bb     | 13 ++++++++++
 4 files changed, 62 insertions(+)
 create mode 100644 meta-openstack/recipes-devtools/ruby/concurrent-ruby/0001-Removed-check-for-concurrent_ruby.jar.patch
 create mode 100644 meta-openstack/recipes-devtools/ruby/concurrent-ruby_1.1.6.bb
 create mode 100644 meta-openstack/recipes-devtools/ruby/tzinfo-data_1.2019.3.bb
 create mode 100644 meta-openstack/recipes-devtools/ruby/tzinfo_2.0.1.bb

diff --git a/meta-openstack/recipes-devtools/ruby/concurrent-ruby/0001-Removed-check-for-concurrent_ruby.jar.patch b/meta-openstack/recipes-devtools/ruby/concurrent-ruby/0001-Removed-check-for-concurrent_ruby.jar.patch
new file mode 100644
index 0000000..777dc31
--- /dev/null
+++ b/meta-openstack/recipes-devtools/ruby/concurrent-ruby/0001-Removed-check-for-concurrent_ruby.jar.patch
@@ -0,0 +1,26 @@
+From becf55b5d1ffe7a2856e0c4b240d08a90b2ed573 Mon Sep 17 00:00:00 2001
+From: Nathan Hartman <nathan.hartman@windriver.com>
+Date: Thu, 20 Feb 2020 13:10:02 -0500
+Subject: [PATCH] Removed jar file check
+
+---
+ concurrent-ruby.gemspec | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+diff --git a/concurrent-ruby.gemspec b/concurrent-ruby.gemspec
+index ad5d0489..1b2aa04e 100644
+--- a/concurrent-ruby.gemspec
++++ b/concurrent-ruby.gemspec
+@@ -16,8 +16,7 @@ Gem::Specification.new do |s|
+   s.files            = [*Dir['lib/concurrent-ruby/**/*.rb'] & git_files,
+                         *Dir['ext/concurrent-ruby/**/*'] & git_files,
+                         'Rakefile',
+-                        'Gemfile',
+-                        'lib/concurrent-ruby/concurrent/concurrent_ruby.jar'
++                        'Gemfile'
+   ]
+   s.extra_rdoc_files = Dir['README*', 'LICENSE*', 'CHANGELOG*']
+   s.require_paths    = ['lib/concurrent-ruby']
+-- 
+2.20.1
+
diff --git a/meta-openstack/recipes-devtools/ruby/concurrent-ruby_1.1.6.bb b/meta-openstack/recipes-devtools/ruby/concurrent-ruby_1.1.6.bb
new file mode 100644
index 0000000..a328203
--- /dev/null
+++ b/meta-openstack/recipes-devtools/ruby/concurrent-ruby_1.1.6.bb
@@ -0,0 +1,12 @@
+SUMMARY = "Modern concurrency tools including agents, futures, promises, thread pools, supervisors, and more. Inspired by Erlang, Clojure, Scala, Go, Java, JavaScript, and classic concurrency patterns."
+HOMEPAGE = "http://www.concurrent-ruby.com"
+
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.md;md5=fde65ae93d18826f70c6fe125aa04297"
+
+SRC_URI = "git://github.com/ruby-concurrency/concurrent-ruby.git;protocol=https;tag=v1.1.6\
+	   file://0001-Removed-check-for-concurrent_ruby.jar.patch"
+
+S = "${WORKDIR}/git"
+
+inherit ruby
diff --git a/meta-openstack/recipes-devtools/ruby/tzinfo-data_1.2019.3.bb b/meta-openstack/recipes-devtools/ruby/tzinfo-data_1.2019.3.bb
new file mode 100644
index 0000000..5fb6005
--- /dev/null
+++ b/meta-openstack/recipes-devtools/ruby/tzinfo-data_1.2019.3.bb
@@ -0,0 +1,11 @@
+SUMMARY = "TZInfo::Data - Timezone Data for TZInfo"
+HOMEPAGE = "https://tzinfo.github.io/"
+
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c326926e773a4e99e89820f5d8a0966f"
+
+SRC_URI = "git://github.com/tzinfo/tzinfo-data.git;protocol=https;tag=v1.2019.3"
+
+S = "${WORKDIR}/git"
+
+inherit ruby
diff --git a/meta-openstack/recipes-devtools/ruby/tzinfo_2.0.1.bb b/meta-openstack/recipes-devtools/ruby/tzinfo_2.0.1.bb
new file mode 100644
index 0000000..2ea1f2d
--- /dev/null
+++ b/meta-openstack/recipes-devtools/ruby/tzinfo_2.0.1.bb
@@ -0,0 +1,13 @@
+SUMMARY = "TZInfo - Ruby Timezone Library"
+HOMEPAGE = "https://tzinfo.github.io/"
+
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c326926e773a4e99e89820f5d8a0966f"
+
+SRC_URI = "git://github.com/tzinfo/tzinfo.git;protocol=https;tag=v2.0.1"
+
+S = "${WORKDIR}/git"
+
+RDEPENDS_${PN} = "concurrent-ruby"
+
+inherit ruby
-- 
2.17.1


  reply	other threads:[~2020-02-20 19:58 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-20 19:57 [meta-virtualization][m-c-s][PATCH 1/8] Uprev'd yajl-ruby to 1.4.0 Nathan Hartman
2020-02-20 19:58 ` Nathan Hartman [this message]
2020-02-20 19:58 ` [meta-virtualization][m-c-s][PATCH 3/8] Initial cool.io ruby recipe Nathan Hartman
2020-02-20 19:58 ` [meta-virtualization][m-c-s][PATCH 4/8] Initial http_parser.rb " Nathan Hartman
2020-02-20 19:58 ` [meta-virtualization][m-c-s][PATCH 5/8] Initial msgpack " Nathan Hartman
2020-02-20 19:58 ` [meta-virtualization][m-c-s][PATCH 6/8] Initial sigdump and serverengine ruby recipes Nathan Hartman
2020-02-20 19:58 ` [meta-virtualization][m-c-s][PATCH 7/8] Initial strptime ruby recipe Nathan Hartman
2020-02-20 19:58 ` [meta-virtualization][m-c-s][PATCH 8/8] Initial fluentd recipe Nathan Hartman
2020-02-20 21:25 ` [meta-virtualization][m-c-s][PATCH 0/8] Added Fluentd and dependencies Nathan Hartman
2020-02-27 22:17   ` Bruce Ashfield

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=20200220195806.173460-2-hnathan918@gmail.com \
    --to=hnathan918@gmail.com \
    --cc=meta-virtualization@lists.yoctoproject.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.