Accepting request 781178 from devel:languages:ruby:extensions

OBS-URL: https://build.opensuse.org/request/show/781178
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rubygem-concurrent-ruby?expand=0&rev=10
This commit is contained in:
Dominique Leuenberger 2020-03-04 08:43:17 +00:00 committed by Git OBS Bridge
commit bded58759b
4 changed files with 35 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5611d14d8699996b17f18e704f4257b73349efa2d9a75fee6566a0a387c807f4
size 356352

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:14da21d5cfe9ccb02e9359b01cb7291e0167ded0ec805d4f3a4b2b4ffa418324
size 356864

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Tue Mar 3 11:00:19 UTC 2020 - Manuel Schnitzer <mschnitzer@suse.com>
- updated to version 1.1.6
## Release v1.1.6, edge v0.6.0 (10 Feb 2020)
concurrent-ruby:
* (#841) Concurrent.disable_at_exit_handlers! is no longer needed and was deprecated.
* (#841) AbstractExecutorService#auto_terminate= was deprecated and has no effect.
Set :auto_terminate option instead when executor is initialized.
## Release v1.1.6.pre1, edge v0.6.0.pre1 (26 Jan 2020)
concurrent-ruby:
* (#828) Allow to name executors, the name is also used to name their threads
* (#838) Implement #dup and #clone for structs
* (#821) Safer finalizers for thread local variables
* Documentation fixes
* (#814) Use Ruby's Etc.nprocessors if available
* (#812) Fix directory structure not to mess with packaging tools
* (#840) Fix termination of pools on JRuby
concurrent-ruby-edge:
* Add WrappingExecutor (#830)
-------------------------------------------------------------------
Thu Mar 14 10:53:13 UTC 2019 - Stephan Kulow <coolo@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package rubygem-concurrent-ruby
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -24,7 +24,7 @@
#
Name: rubygem-concurrent-ruby
Version: 1.1.5
Version: 1.1.6
Release: 0
%define mod_name concurrent-ruby
%define mod_full_name %{mod_name}-%{version}
@ -32,7 +32,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: %{ruby >= 1.9.3}
BuildRequires: %{rubygem gem2rpm}
BuildRequires: ruby-macros >= 5
Url: http://www.concurrent-ruby.com
URL: http://www.concurrent-ruby.com
Source: https://rubygems.org/gems/%{mod_full_name}.gem
Source1: gem2rpm.yml
Summary: Modern concurrency tools for Ruby. Inspired by Erlang, Clojure,