Accepting request 520419 from home:coolo:branches:devel:languages:ruby:extensions

update

OBS-URL: https://build.opensuse.org/request/show/520419
OBS-URL: https://build.opensuse.org/package/show/devel:languages:ruby:extensions/rubygem-byebug?expand=0&rev=37
This commit is contained in:
Stephan Kulow 2017-09-03 09:17:03 +00:00 committed by Git OBS Bridge
parent 3019bd4677
commit c4e2518cd3
4 changed files with 35 additions and 13 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:60b508d685ecbdd0ce4c8508527e893b27b4461a347564c589b0bd5c8c656ecd
size 79360

3
byebug-9.1.0.gem Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3890be9b2fa99785ce8f8e1feabd93a9153ffad0598e8fc9c36149c411d267ef
size 79872

View File

@ -1,3 +1,26 @@
-------------------------------------------------------------------
Sun Sep 3 08:57:33 UTC 2017 - coolo@suse.com
- updated to version 9.1.0
see installed CHANGELOG.md
## 9.1.0 - 2016-08-22
### Added
* Better UI messages for breakpoint management.
### Fixed
* `where` command failing on instance_exec block stack frames.
* `restart` command crashing in certain cases because of a missing `require 'English'` (#321, @akaneko3).
* `restart` command crashing when debugged script is not executable or has no shebang (#321, @akaneko3).
### Removed
* Ruby 2.0 and Ruby 2.1 official & unofficial support. Byebug no longer installs
on these platforms.
-------------------------------------------------------------------
Sat Oct 1 04:33:09 UTC 2016 - coolo@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package rubygem-byebug
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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-byebug
Version: 9.0.6
Version: 9.1.0
Release: 0
%define mod_name byebug
%define mod_full_name %{mod_name}-%{version}
@ -34,7 +34,7 @@ Release: 0
%endif
# /MANUAL
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: %{rubydevel >= 2.0.0}
BuildRequires: %{rubydevel >= 2.2.0}
BuildRequires: %{rubygem gem2rpm}
BuildRequires: ruby-macros >= 5
BuildRequires: update-alternatives
@ -42,18 +42,17 @@ Url: http://github.com/deivid-rodriguez/byebug
Source: http://rubygems.org/gems/%{mod_full_name}.gem
Source1: rubygem-byebug-rpmlintrc
Source2: gem2rpm.yml
Summary: Ruby 2.0 fast debugger - base + CLI
Summary: Ruby fast debugger - base + CLI
License: BSD-2-Clause
Group: Development/Languages/Ruby
PreReq: update-alternatives
%description
Byebug is a Ruby 2 debugger. It's implemented using the
Ruby 2 TracePoint C API for execution control and the Debug Inspector C API
for call stack navigation. The core component provides support that
front-ends can build on. It provides breakpoint handling and bindings for
stack frames among other things and it comes with an easy to use command
line interface.
Byebug is a Ruby debugger. It's implemented using the
TracePoint C API for execution control and the Debug Inspector C API for
call stack navigation. The core component provides support that front-ends
can build on. It provides breakpoint handling and bindings for stack frames
among other things and it comes with an easy to use command line interface.
%prep