Compare commits
42 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b166a091b0 | ||
|
|
76448f6c56 | ||
|
|
f02095c7e9 | ||
|
|
ace834a5fa | ||
|
|
54baf2eb1f | ||
| a29a1ccd02 | |||
|
|
ef663f622d | ||
|
|
4bf45ea16a | ||
|
|
6a6f4282f9 | ||
|
|
bb6367889a | ||
|
|
cdd56bffd8 | ||
|
|
01c5bfaa3e | ||
|
|
f33b01c9e7 | ||
|
|
8c0830f9e0 | ||
|
|
19fc27e431 | ||
|
|
a9dee66c68 | ||
|
|
ab3d7e4929 | ||
|
|
f1d7a37e1e | ||
|
|
8b5cf74f97 | ||
|
|
c1bc7f678b | ||
|
|
b174a5f524 | ||
|
|
8472742ce5 | ||
|
|
85d0ccc60d | ||
|
|
f1497c8472 | ||
|
|
d41a9103f4 | ||
|
|
501f88dd89 | ||
| 7910ff5402 | |||
|
|
19185cd59a | ||
|
|
41daed401d | ||
|
|
043f87cb88 | ||
|
|
a5076d2b26 | ||
|
|
225efd1e17 | ||
|
|
a3e0f54a29 | ||
|
|
7467691fd4 | ||
|
|
7d86487d5d | ||
|
|
b0fa3cd058 | ||
|
|
1ca9ce1c63 | ||
|
|
a7b8733cf6 | ||
|
|
20daae0a94 | ||
|
|
944375bf89 | ||
|
|
fe68f337ff | ||
|
|
ffc447ed29 |
3 changed files with 195 additions and 0 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
|
@ -0,0 +1,11 @@
|
|||
/will-crash-v0.2.tar.gz
|
||||
/will-crash-v0.3.tar.gz
|
||||
/will-crash-0.4.tar.gz
|
||||
/will-crash-0.5.tar.gz
|
||||
/will-crash-0.6.tar
|
||||
/will-crash-0.6.tar.gz
|
||||
/will-crash-0.7.tar.gz
|
||||
/will-crash-0.8.tar.gz
|
||||
/will-crash-0.9.tar.gz
|
||||
/will-crash-0.10.tar.gz
|
||||
/will-crash-v0.12.tar.gz
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
SHA512 (will-crash-v0.12.tar.gz) = 13e2eb1cd33e62a70b8d75a11f2d2f65a49d34848e65ab06150e48a0bf7a6786e3b89b0fcfe303debf030cfccbbb421aedcbfdf7b6dd568c573e9a10ff5bb57b
|
||||
183
will-crash.spec
Normal file
183
will-crash.spec
Normal file
|
|
@ -0,0 +1,183 @@
|
|||
# http://fedoraproject.org/wiki/Packaging:Guidelines#PIE
|
||||
# http://fedoraproject.org/wiki/Hardened_Packages
|
||||
%global _hardened_build 1
|
||||
|
||||
Name: will-crash
|
||||
Version: 0.12
|
||||
Release: 3%{?dist}
|
||||
Summary: Set of crashing executables written in various languages
|
||||
|
||||
License: GPLv3
|
||||
URL: https://github.com/abrt/will-crash
|
||||
Source0: https://github.com/abrt/%{name}/archive/v%{version}/%{name}-v%{version}.tar.gz
|
||||
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: java-devel
|
||||
BuildRequires: libtool
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: ruby-devel
|
||||
Requires: ruby
|
||||
Requires: java-headless >= 1.7.0.0
|
||||
Requires: javapackages-tools
|
||||
|
||||
Requires: python3
|
||||
|
||||
%description
|
||||
The main purpose of this project is to provide sample
|
||||
executables for testing crash/exception handling tools
|
||||
like ABRT.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
./autogen.sh
|
||||
%configure
|
||||
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/java
|
||||
|
||||
make install DESTDIR=%{buildroot}
|
||||
# no devel package -> no *.so links to versioned libraries needed
|
||||
find %{buildroot} -name '*.la' -or -name '*.a' | xargs rm -f
|
||||
|
||||
%files
|
||||
%doc README.rst
|
||||
%doc LICENSE
|
||||
%doc AUTHORS
|
||||
%{_bindir}/will_segfault
|
||||
%{_bindir}/will_segfault_in_new_pid
|
||||
%{_bindir}/will_segfault_threads
|
||||
%{_bindir}/will_abort
|
||||
%{_bindir}/will_python3_sigsegv
|
||||
%{_bindir}/will_python3_raise
|
||||
%{_bindir}/will_ruby_raise
|
||||
%{_bindir}/will_java_segfault
|
||||
%{_bindir}/will_java_throw
|
||||
%{_bindir}/will_java_throw_remote
|
||||
%{_bindir}/will_java_throw_suppressed
|
||||
%{_bindir}/will_cpp_segfault
|
||||
%{_bindir}/will_stackoverflow
|
||||
%{_bindir}/will_oops
|
||||
%{_datadir}/java/*
|
||||
%{_datadir}/will-crash/*
|
||||
%{_libdir}/libwillcrash.so*
|
||||
# Java runtime requires unversioned library
|
||||
%{_libdir}/libwilljavasegfault.so*
|
||||
%{ruby_vendorlibdir}/will_crash.rb
|
||||
|
||||
%changelog
|
||||
* Thu Aug 01 2019 Martin Kutlak <mkutlak@rehdat.com> - 0.12.3
|
||||
- Build for epel8
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.12-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Tue Jul 02 2019 Ernestas Kulik <ekulik@redhat.com> - 0.12-1
|
||||
- Update upstream URIs
|
||||
- Enable PIEs
|
||||
- Remove RHEL 6/7-specific content
|
||||
- Update to 0.12
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.10-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.10-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Feb 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.10-8
|
||||
- Update Python 2 dependency declarations to new packaging standards
|
||||
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.10-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.10-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.10-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.10-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.10-3
|
||||
- Rebuild for Python 3.6
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.10-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Aug 13 2015 Richard Marko <rmarko@fedoraproject.org> - 0.10-1
|
||||
- Version bump
|
||||
- fix will_python_sigsegv for s390x
|
||||
- Make it possible to run will_oops.in multiple times in row
|
||||
- will_ruby_raise: fancy stacktrace
|
||||
- Add --help to will_abort
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.9-3
|
||||
- Rebuilt for GCC 5 C++11 ABI change
|
||||
|
||||
* Mon Nov 24 2014 Richard Marko <rmarko@fedoraproject.org> - 0.9-2
|
||||
- fix will_java_throw_suppressed availability on RHEL6
|
||||
|
||||
* Thu Oct 30 2014 Jakub Filak <jfilak@redhat.com> - 0.9-1
|
||||
- port to javapackages-utils
|
||||
|
||||
* Wed Sep 10 2014 Richard Marko <rmarko@fedoraproject.org> - 0.8-1
|
||||
- add will_segfault --break-link-map
|
||||
|
||||
* Wed Aug 27 2014 Martin Milata <mmilata@redhat.com> - 0.7-5
|
||||
- added will_stackoverflow
|
||||
|
||||
* Mon Aug 18 2014 Richard Marko <rmarko@fedoraproject.org> - 0.7-4
|
||||
- support OpenJDK8
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Mon Jun 2 2014 Richard Marko <rmarko@fedoraproject.org> - 0.7-1
|
||||
- Version bump
|
||||
- added will_abort --random
|
||||
- added will_java_throw_remote
|
||||
|
||||
* Tue Jan 14 2014 Richard Marko <rmarko@fedoraproject.org> - 0.6-1
|
||||
- Version bump
|
||||
- added will_cpp_segfault
|
||||
- reworked will_segfault to produce more stack frames
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Fri May 3 2013 Jiri Moskovcak <jmoskovc@redhat.com> 0.5-1
|
||||
- new upstream release - 0.5
|
||||
- added will_oops
|
||||
|
||||
* Mon Mar 18 2013 Richard Marko <rmarko@fedoraproject.org> - 0.4-1
|
||||
- Version bump, added will_java_segfault
|
||||
|
||||
* Thu Feb 21 2013 Richard Marko <rmarko@fedoraproject.org> - 0.3-1
|
||||
- Version bump
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Jul 25 2012 Richard Marko <rmarko@redhat.com> - 0.2-2
|
||||
- Don't require python3 for el6
|
||||
|
||||
* Wed Jul 25 2012 Richard Marko <rmarko@redhat.com> - 0.2-1
|
||||
- Version bump
|
||||
|
||||
* Mon Jul 23 2012 Richard Marko <rmarko@redhat.com> - 0.1-2
|
||||
- Added missing automake build requirement
|
||||
|
||||
* Fri Jul 20 2012 Richard Marko <rmarko@redhat.com> - 0.1-1
|
||||
- Initial packaging attempt
|
||||
Loading…
Add table
Add a link
Reference in a new issue