Compare commits

..

16 commits

Author SHA1 Message Date
Fedora Release Engineering
58c12d2df7 Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild 2026-07-17 08:53:44 +00:00
Benjamin A. Beasley
03e6daec32 Use various long options 2026-05-25 07:07:52 +01:00
Fedora Release Engineering
695a79e6c5 Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-17 20:19:56 +00:00
Fedora Release Engineering
9064b2a9ce Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 20:30:35 +00:00
Benjamin A. Beasley
257d42598c Security fix for CVE-2010-1028
- Various other fixes collected by Debian and contributed back upstream
  to the sfnt2woff-zopfli fork:
  https://github.com/bramstein/sfnt2woff-zopfli/pull/20
2025-05-10 23:25:21 -04:00
Benjamin A. Beasley
3ace731e86 Extract the license notice and install it in its own file 2025-05-10 22:57:16 -04:00
Benjamin A. Beasley
7f9b32ae4f Add missing license texts 2025-05-10 22:57:16 -04:00
Benjamin A. Beasley
5f250afee4 Update .rpmlintrc file for current rpmlint 2025-05-10 22:57:16 -04:00
Benjamin A. Beasley
8a3d86acd0 Link sfnt2woff-zopfli PR for double-free patch 2025-05-10 22:41:42 -04:00
Fedora Release Engineering
d640c544df Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-19 15:11:51 +00:00
Fedora Release Engineering
7bfa2db8b7 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-20 09:29:36 +00:00
Fedora Release Engineering
4ca42be795 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-27 09:02:19 +00:00
Fedora Release Engineering
cec8272255 Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-22 18:19:42 +00:00
Benjamin A. Beasley
2a931480cf Remove explicit %set_build_flags, not needed since F36
https://www.fedoraproject.org/wiki/Changes/SetBuildFlagsBuildCheck
2023-06-03 13:35:29 -04:00
Fedora Release Engineering
fbb6bf2ea0 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-01-21 06:56:50 +00:00
Benjamin A. Beasley
dbbd483659 Leaf package: remove i686 support 2022-12-22 12:46:31 -05:00

View file

@ -57,6 +57,9 @@ Patch: https://sources.debian.org/data/main/w/woff-tools/0%3A2009.10.04
# - fix some compiler and cppcheck warnings
Patch: https://sources.debian.org/data/main/w/woff-tools/0%3A2009.10.04-2/debian/patches/fix-compiler-and-cppcheck-warnings.patch
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
ExcludeArch: %{ix86}
BuildRequires: make
BuildRequires: gcc
@ -71,7 +74,6 @@ decoding Web Open Font Format (WOFF) files.
%build
%set_build_flags
%make_build CFLAGS="${CFLAGS}"
awk '
/BEGIN LICENSE BLOCK/ { b = 1 }
@ -82,10 +84,10 @@ awk '
%install
# The Makefile has no install target.
install -d '%{buildroot}%{_bindir}'
install -t '%{buildroot}%{_bindir}' -p sfnt2woff woff2sfnt
install -d '%{buildroot}%{_mandir}/man1'
install -t '%{buildroot}%{_mandir}/man1' -p -m 0644 '%{SOURCE1}' '%{SOURCE2}'
install -D --preserve-timestamps \
--target='%{buildroot}%{_bindir}' sfnt2woff woff2sfnt
install -D --preserve-timestamps --mode=0644 \
--target='%{buildroot}%{_mandir}/man1' '%{SOURCE1}' '%{SOURCE2}'
# Upstream provides no tests