annobin/annobin.spec

124 lines
3.9 KiB
RPMSpec
Raw Normal View History

2017-07-27 13:58:31 +00:00
Name: annobin
Summary: Binary annotation plugin for GCC
Version: 2.5.1
Release: 4%{?dist}
2017-07-27 13:58:31 +00:00
License: GPLv3+
2017-07-27 13:58:31 +00:00
URL: https://fedoraproject.org/wiki/Toolchain/Watermark
# Use "--without tests" to disable the testsuite. The default is to run them.
%bcond_without tests
#---------------------------------------------------------------------------------
Source: https://nickc.fedorapeople.org/annobin-%{version}.tar.xz
# For the latest sources use: git clone git://sourceware.org/git/annobin.git
2017-07-27 13:58:31 +00:00
# Purpose: Fixes the generation of illegal assembler symbol names when
# working with unmangled function names.
# Lifetime: Fixed in 2.5.2
Patch1: funname.patch
# Purpose: Fixes a bug where an empty string would be used as an assembler
# symbol name because the source input was being read from a pipe.
# Lifetime: Fixed in 2.5.2
Patch2: annobin-empty-input-filename.patch
2017-07-27 13:58:31 +00:00
# This is a gcc plugin, hence gcc is required.
Requires: gcc
BuildRequires: gcc-plugin-devel pkgconfig
%description
A plugin for GCC that records extra information in the files that it compiles.
This information can be used to analyze the files, and provide the loader
with extra information about the requirements of the loaded file.
#---------------------------------------------------------------------------------
%if %{with tests}
%package tests
Summary: Test scripts and binaries for checking the behaviour and output of the annobin plugin
%description tests
Provides a means to test the generation of annotated binaries and the parsing
of the resulting files.
# FIXME: Does not actually do this yet...
%endif
#---------------------------------------------------------------------------------
2017-07-27 13:58:31 +00:00
%global ANNOBIN_PLUGIN_DIR %(g++ -print-file-name=plugin)
%prep
%autosetup -p1
# Touch the configure files so that they are not regenerated.
touch configure */configure Makefile.in */Makefile.in
2017-07-27 13:58:31 +00:00
%build
%configure --quiet
%make_build
%install
%make_install
2017-07-27 13:58:31 +00:00
%if %{with tests}
%check
make check
%endif
2017-07-27 13:58:31 +00:00
%files
%{ANNOBIN_PLUGIN_DIR}
%{_bindir}/built-by.sh
%{_bindir}/check-abi.sh
%{_bindir}/hardened.sh
%license COPYING3 LICENSE
%exclude %{_datadir}/doc/annobin-plugin/COPYING3
%exclude %{_datadir}/doc/annobin-plugin/LICENSE
%doc %{_datadir}/doc/annobin-plugin/annotation.proposal.txt
#---------------------------------------------------------------------------------
2017-07-27 13:58:31 +00:00
%changelog
* Fri Dec 08 2017 Florian Weimer <fweimer@redhat.com> - 2.5.1-4
- Invent an input filename when reading from a pipe. (#1523401)
* Thu Nov 30 2017 Florian Weimer <fweimer@redhat.com> - 2.5.1-3
- Use DECL_ASSEMBLER_NAME for symbol references (#1519165)
* Tue Oct 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.5.1-2
- Cleanups in spec
* Tue Sep 26 2017 Nick Clifton <nickc@redhat.com> - 2.5.1-1
- Touch the auto-generated files in order to stop them from being regenerated.
* Tue Sep 26 2017 Nick Clifton <nickc@redhat.com> - 2.5-2
- Stop the plugin complaining about compiler datestamp mismatches.
* Thu Sep 21 2017 Nick Clifton <nickc@redhat.com> - 2.4-1
- Tweak tests so that they will run on older machines.
* Thu Sep 21 2017 Nick Clifton <nickc@redhat.com> - 2.3-1
- Add annobin-tests subpackage containing some preliminary tests.
- Remove link-time test for unsuported targets.
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Mon Jul 31 2017 Florian Weimer <fweimer@redhat.com> - 2.0-2
- Rebuild with binutils fix for ppc64le (#1475636)
* Wed Jun 28 2017 Nick Clifton <nickc@redhat.com> - 2.0-1
2017-07-27 13:58:31 +00:00
- Fixes for problems reported by the package submission review:
* Add %%license entry to %%file section.
* Update License and BuildRequires tags.
* Add Requires tag.
* Remove %%clean.
* Add %%check.
* Clean up the %%changelog.
- Update to use version 2 of the specification and sources.
* Thu May 11 2017 Nick Clifton <nickc@redhat.com> - 1.0-1
2017-07-27 13:58:31 +00:00
- Initial submission.