blob: cd4183a742b8d41289b72c3372d701b7061aa83a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
%global _empty_manifest_terminate_build 0
%global gem_name debug_inspector
Name: rubygem-debug_inspector
Version: 1.1.0
Release: 1
Summary: A Ruby wrapper for the MRI 2.0 debug_inspector API
License: MIT
URL: https://github.com/banister/debug_inspector
Source0: https://rubygems.org/gems/debug_inspector-1.1.0.gem
BuildRequires: ruby
BuildRequires: ruby-devel
BuildRequires: rubygems
BuildRequires: rubygems-devel
BuildRequires: rsync
BuildRequires: gcc
BuildRequires: gdb
Provides: rubygem-debug_inspector
%description
Adds methods to RubyVM::DebugInspector to allow for inspection of backtrace frames.
The debug_inspector C extension and API were designed and built by Koichi Sasada, this project is just a gemification of his work.
This library makes use of the debug inspector API which was added to MRI 2.0.0.
Only works on MRI 2 and 3. Requiring it on unsupported Rubies will result in a no-op.
Recommended for use only in debugging situations. Do not use this in production apps.
%package help
Summary: Development documents and examples for debug_inspector
Provides: rubygem-debug_inspector-doc
BuildArch: noarch
%description help
Adds methods to RubyVM::DebugInspector to allow for inspection of backtrace frames.
The debug_inspector C extension and API were designed and built by Koichi Sasada, this project is just a gemification of his work.
This library makes use of the debug inspector API which was added to MRI 2.0.0.
Only works on MRI 2 and 3. Requiring it on unsupported Rubies will result in a no-op.
Recommended for use only in debugging situations. Do not use this in production apps.
%prep
%autosetup -n debug_inspector-1.1.0
gem spec %{SOURCE0} -l --ruby > debug_inspector.gemspec
%build
gem build debug_inspector.gemspec
%gem_install
%install
mkdir -p %{buildroot}%{gem_dir}
cp -a .%{gem_dir}/* %{buildroot}%{gem_dir}/
rsync -a --exclude=".*" .%{gem_dir}/* %{buildroot}%{gem_dir}/
if [ -d .%{_bindir} ]; then
mkdir -p %{buildroot}%{_bindir}
cp -a .%{_bindir}/* %{buildroot}%{_bindir}/
fi
if [ -d ext ]; then
mkdir -p %{buildroot}%{gem_extdir_mri}/%{gem_name}
if [ -d .%{gem_extdir_mri}/%{gem_name} ]; then
cp -a .%{gem_extdir_mri}/%{gem_name}/*.so %{buildroot}%{gem_extdir_mri}/%{gem_name}
else
cp -a .%{gem_extdir_mri}/*.so %{buildroot}%{gem_extdir_mri}/%{gem_name}
fi
cp -a .%{gem_extdir_mri}/gem.build_complete %{buildroot}%{gem_extdir_mri}/
rm -rf %{buildroot}%{gem_instdir}/ext/
fi
pushd %{buildroot}
touch filelist.lst
if [ -d %{buildroot}%{_bindir} ]; then
find .%{_bindir} -type f -printf "/%h/%f\n" >> filelist.lst
fi
popd
mv %{buildroot}/filelist.lst .
%files -n rubygem-debug_inspector -f filelist.lst
%dir %{gem_instdir}
%{gem_instdir}/*
%{gem_extdir_mri}
%exclude %{gem_cache}
%{gem_spec}
%files help
%{gem_docdir}/*
%changelog
* Fri Mar 10 2023 Ruby_Bot <Ruby_Bot@openeuler.org>
- Package Spec generated
|