Accepting request 265539 from home:tboerger:branches:devel:languages:ruby:extensions
Updated to 3.5.1 OBS-URL: https://build.opensuse.org/request/show/265539 OBS-URL: https://build.opensuse.org/package/show/devel:languages:ruby:extensions/rubygem-byebug?expand=0&rev=4
This commit is contained in:
parent
5a8f083180
commit
33648b9073
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b728ad5c72d2ff4d53e809ddf3711136c622bf621f19ad59982c032858a1f690
|
||||
size 93696
|
3
byebug-3.5.1.gem
Normal file
3
byebug-3.5.1.gem
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:56358e944d1cdb83151d4400631306eb2539b5fdf1b5e784cdd984b14016ac51
|
||||
size 89088
|
75
gem2rpm.yml
Normal file
75
gem2rpm.yml
Normal file
@ -0,0 +1,75 @@
|
||||
# ---
|
||||
# ## used by gem2rpm
|
||||
# :summary: this is a custom summary
|
||||
# ## used by gem2rpm
|
||||
# :description: |-
|
||||
# this is a custom description
|
||||
#
|
||||
# it can be multiline
|
||||
# ## used by gem2rpm
|
||||
# :license: MIT or Ruby
|
||||
# ## used by gem2rpm and gem_packages
|
||||
# :version_suffix: -x_y
|
||||
# ## used by gem2rpm and gem_packages
|
||||
# :disable_docs: true
|
||||
# ## used by gem2rpm
|
||||
# :disable_automatic_rdoc_dep: true
|
||||
# ## used by gem2rpm
|
||||
# :preamble: |-
|
||||
# BuildRequires: foobar
|
||||
# Requires: foobar
|
||||
# ## used by gem2rpm
|
||||
# :patches:
|
||||
# foo.patch: -p1
|
||||
# bar.patch:
|
||||
# ## used by gem2rpm
|
||||
# :sources:
|
||||
# - foo.desktop
|
||||
# - bar.desktop
|
||||
# :gem_install_args: '....'
|
||||
# ## used by gem2rpm
|
||||
# :pre_install: |-
|
||||
# %if 0%{?use_system_libev}
|
||||
# export USE_VENDORED_LIBEV="no"
|
||||
# %endif
|
||||
# ## used by gem2rpm
|
||||
# :post_install: |-
|
||||
# # delete custom files here or do other fancy stuff
|
||||
# install -D -m 0644 %{S:1} %{buildroot}%{_bindir}/gem2rpm-opensuse
|
||||
# ## used by gem2rpm
|
||||
# :testsuite_command: |-
|
||||
# (pushd %{buildroot}%{gem_base}/gems/%{mod_full_name} && rake test)
|
||||
# ## used by gem2rpm
|
||||
# :filelist: |-
|
||||
# /usr/bin/gem2rpm-opensuse
|
||||
# ## used by gem2rpm
|
||||
# :scripts:
|
||||
# :post: |-
|
||||
# /bin/echo foo
|
||||
# ## used by gem_packages
|
||||
# :main:
|
||||
# :preamble: |-
|
||||
# Requires: util-linux
|
||||
# Recommends: pwgen
|
||||
# :filelist: |-
|
||||
# /usr/bin/gem2rpm-opensuse
|
||||
# ## used by gem_packages
|
||||
# :custom:
|
||||
# apache:
|
||||
# :preamble: |-
|
||||
# Requires: .....
|
||||
# :filelist: |-
|
||||
# /etc/apache2/conf.d/passenger.conf
|
||||
# :summary: Custom summary is optional
|
||||
# :description: |-
|
||||
# Custom description is optional
|
||||
#
|
||||
# bar
|
||||
# :post: |-
|
||||
# /bin/echo foo
|
||||
#
|
||||
---
|
||||
:license: BSD-3-Clause
|
||||
|
||||
:sources:
|
||||
- rubygem-byebug-rpmlintrc
|
1
rubygem-byebug-rpmlintrc
Normal file
1
rubygem-byebug-rpmlintrc
Normal file
@ -0,0 +1 @@
|
||||
addFilter("devel-file-in-non-devel-package")
|
@ -1,3 +1,77 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 10:11:03 UTC 2014 - tboerger@suse.com
|
||||
|
||||
- Added rpmlintrc for devel files filter
|
||||
- Updated to 3.5.1
|
||||
- 3.5.1
|
||||
- Windows installation (#79).
|
||||
- condition command not properly detecting invalid breakpoint ids.
|
||||
- 3.5.0
|
||||
- Byebug's history messing other programs using Readline (#81).
|
||||
- Readline's history not being properly saved and inmediately available.
|
||||
- User not being notified when trying to debug a non existent script.
|
||||
- Complete rewrite of byebug's history.
|
||||
- Complete rewrite of list command.
|
||||
- Docs about stacktrace related commands (up, down, frame, backtrace).
|
||||
- 3.4.2
|
||||
- Debugging commands invoked by ruby exectuable (#67), as in byebug --
|
||||
ruby -Itest test/controllers/posts_controller_test.rb -n test_should_get_index.
|
||||
- 3.4.1
|
||||
- Use of threads inside eval command (#54).
|
||||
- list command not listing backwards after reaching the end of the file.
|
||||
- 3.4.0
|
||||
- deivid-rodriguez/pry-byebug#32 in a better way.
|
||||
- 3.3.0
|
||||
- set verbose command.
|
||||
- set post_mortem false command.
|
||||
- Debugger stopping in byebug's internal frames in some cases.
|
||||
- backtrace crashing when fullpath setting disabled and calculated
|
||||
stack size being smaller than the real one.
|
||||
- The -t option for bin/byebug now turns tracing on whereas the -x
|
||||
option tells byebug to run the initialization file (.byebugrc) on
|
||||
startup. This is the default behaviour though.
|
||||
- bin/byebug libified and tests added.
|
||||
- Removed info locals command. Use var local instead.
|
||||
- Removed info instance_variables command. Use var instance instead.
|
||||
- Removed info global_variables command. Use var global instead.
|
||||
- Removed info variables command. Use var all instead.
|
||||
- Removed irb command stepping capabilities, see 8e226d0.
|
||||
- Removed script and restart-script options for bin/byebug.
|
||||
- 3.2.0
|
||||
- Remote debugging (#71), thanks @shuky19.
|
||||
- source command (#68), thanks @Olgagr.
|
||||
- ruby-head support (#71).
|
||||
- Removed post_mortem activation through Byebug.post_mortem. Use set post_mortem instead.
|
||||
- Removed info stack command. Use where instead.
|
||||
- Removed method iv command. Use var instance instead.
|
||||
- Removed Warning reported in #77.
|
||||
- 3.1.2
|
||||
- (Really) post_mortem mode in bin/byebug.
|
||||
- Line tracing in bin/byebug.
|
||||
- 3.1.1
|
||||
- post_mortem mode in bin/byebug.
|
||||
- 3.1.0
|
||||
- Removed show commands command. Use history instead.
|
||||
- Removed Byebug.start accepting options. Any program settings you want applied from the start should be set in .byebugrc.
|
||||
- Removed trace command. Use set linetrace for line tracing and tracevar for global variable tracing.
|
||||
- Removed show version command. Use byebug --version to check byebug's version.
|
||||
- Removed set arg setting. Use the restart command instead.
|
||||
- linetrace_plus setting renamed to tracing_plus.
|
||||
- history command to check byebug's history of previous commands.
|
||||
- 3.0.0
|
||||
- Plain byebug not working when pry-byebug installed.
|
||||
- post_mortem mode.
|
||||
- Command history not being saved after regular program termination.
|
||||
- (Again) Calling Byebug.start with Timeout.timeout (#54), thanks @zmoazeni!
|
||||
- Allow disabling post_mortem mode.
|
||||
- show commands command for listing history of previous commands now behaves like shell's history command.
|
||||
- show/set history filename is now show/set histfile
|
||||
- show/set history size is now show/set histsize
|
||||
- show/set history save is now show/set autosave
|
||||
- finish semantic, see 61f9b4d.
|
||||
- Use per project history file by default.
|
||||
- Removed The init option for Byebug.start. Information to make the restart command work is always saved now.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 13 05:45:36 UTC 2014 - coolo@suse.com
|
||||
|
||||
|
@ -15,8 +15,16 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
#
|
||||
# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
|
||||
# All sections marked as MANUAL, license headers, summaries and descriptions
|
||||
# can be maintained in that file. Please consult this file before editing any
|
||||
# of those fields
|
||||
#
|
||||
|
||||
Name: rubygem-byebug
|
||||
Version: 2.7.0
|
||||
Version: 3.5.1
|
||||
Release: 0
|
||||
%define mod_name byebug
|
||||
%define mod_full_name %{mod_name}-%{version}
|
||||
@ -27,8 +35,10 @@ BuildRequires: %{rubygem gem2rpm}
|
||||
BuildRequires: update-alternatives
|
||||
Url: http://github.com/deivid-rodriguez/byebug
|
||||
Source: http://rubygems.org/gems/%{mod_full_name}.gem
|
||||
Summary: Ruby 2.0 fast debugger - base + cli
|
||||
License: BSD
|
||||
Source1: rubygem-byebug-rpmlintrc
|
||||
Source2: gem2rpm.yml
|
||||
Summary: Ruby 2.0 fast debugger - base + CLI
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Ruby
|
||||
PreReq: update-alternatives
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user