mingw-harfbuzz/mingw-harfbuzz.spec

371 lines
11 KiB
RPMSpec
Raw Normal View History

2012-08-27 17:06:29 +00:00
%{?mingw_package_header}
Name: mingw-harfbuzz
2020-09-02 08:53:55 +00:00
Version: 2.7.2
2020-08-21 14:11:41 +00:00
Release: 1%{?dist}
2012-08-27 17:06:29 +00:00
Summary: MinGW Windows Harfbuzz library
License: MIT
URL: http://www.harfbuzz.org
2020-05-13 23:25:34 +00:00
Source0: https://github.com/harfbuzz/harfbuzz/releases/download/%{version}/harfbuzz-%{version}.tar.xz
2012-08-27 17:06:29 +00:00
# Allow the freetype dependency to be optional at runtime
Patch0: harfbuzz-enable-delayload-freetype.patch
2018-05-30 08:30:45 +00:00
# Invoke versioned python
Patch1: harfbuzz-python.patch
2012-08-27 17:06:29 +00:00
BuildArch: noarch
2018-05-30 08:30:45 +00:00
BuildRequires: python3
2012-08-27 17:06:29 +00:00
BuildRequires: mingw32-filesystem >= 95
BuildRequires: mingw32-gcc
BuildRequires: mingw32-glib2
BuildRequires: mingw32-freetype
BuildRequires: mingw32-cairo
BuildRequires: mingw32-icu
BuildRequires: mingw64-filesystem >= 95
BuildRequires: mingw64-gcc
BuildRequires: mingw64-glib2
BuildRequires: mingw64-freetype
BuildRequires: mingw64-cairo
BuildRequires: mingw64-icu
2015-12-31 16:41:14 +00:00
# Needed for the delay-load patch
BuildRequires: mingw-w64-tools
BuildRequires: autoconf automake libtool
2012-08-27 17:06:29 +00:00
%description
HarfBuzz is an implementation of the OpenType Layout engine.
# Win32
%package -n mingw32-harfbuzz
Summary: MinGW Windows Harfbuzz library
%description -n mingw32-harfbuzz
HarfBuzz is an implementation of the OpenType Layout engine.
%package -n mingw32-harfbuzz-static
Summary: Static version of the MinGW Windows Harfbuzz library
Requires: mingw32-harfbuzz = %{version}-%{release}
Requires: mingw32-glib2-static
2012-08-27 17:06:29 +00:00
%description -n mingw32-harfbuzz-static
Static version of the MinGW Windows Harfbuzz library.
# Win64
%package -n mingw64-harfbuzz
Summary: MinGW Windows Harfbuzz library
%description -n mingw64-harfbuzz
HarfBuzz is an implementation of the OpenType Layout engine.
%package -n mingw64-harfbuzz-static
Summary: Static version of the MinGW Windows Harfbuzz library
Requires: mingw64-harfbuzz = %{version}-%{release}
Requires: mingw64-glib2-static
2012-08-27 17:06:29 +00:00
%description -n mingw64-harfbuzz-static
Static version of the MinGW Windows Harfbuzz library.
%{?mingw_debug_package}
%prep
2018-05-30 08:30:45 +00:00
%autosetup -p1 -n harfbuzz-%{version}
autoreconf -i --force
2012-08-27 17:06:29 +00:00
%build
%mingw_configure --enable-shared --enable-static --enable-delay-load
2020-11-12 23:12:54 +00:00
%mingw_make_build V=1
2012-08-27 17:06:29 +00:00
%install
2020-11-12 23:12:54 +00:00
%mingw_make_install
2012-08-27 17:06:29 +00:00
# Drop all .la files
2018-05-30 08:30:45 +00:00
find %{buildroot} -name "*.la" -delete
2012-08-27 17:06:29 +00:00
# Win32
%files -n mingw32-harfbuzz
2015-03-24 11:50:11 +00:00
%license COPYING
2012-08-27 17:06:29 +00:00
%{mingw32_bindir}/hb-ot-shape-closure.exe
%{mingw32_bindir}/hb-shape.exe
2018-05-30 08:30:45 +00:00
%{mingw32_bindir}/hb-subset.exe
2012-08-27 17:06:29 +00:00
%{mingw32_bindir}/hb-view.exe
%{mingw32_bindir}/libharfbuzz-0.dll
2013-06-09 11:19:52 +00:00
%{mingw32_bindir}/libharfbuzz-icu-0.dll
2018-05-30 08:30:45 +00:00
%{mingw32_bindir}/libharfbuzz-subset-0.dll
2012-08-27 17:06:29 +00:00
%{mingw32_includedir}/harfbuzz/
%{mingw32_libdir}/libharfbuzz.dll.a
2013-06-09 11:19:52 +00:00
%{mingw32_libdir}/libharfbuzz-icu.dll.a
2018-05-30 08:30:45 +00:00
%{mingw32_libdir}/libharfbuzz-subset.dll.a
2012-08-27 17:06:29 +00:00
%{mingw32_libdir}/pkgconfig/harfbuzz.pc
2013-06-09 11:19:52 +00:00
%{mingw32_libdir}/pkgconfig/harfbuzz-icu.pc
2018-05-30 08:30:45 +00:00
%{mingw32_libdir}/pkgconfig/harfbuzz-subset.pc
%{mingw32_libdir}/cmake/harfbuzz/
2012-08-27 17:06:29 +00:00
%files -n mingw32-harfbuzz-static
%{mingw32_libdir}/libharfbuzz.a
2013-06-09 11:19:52 +00:00
%{mingw32_libdir}/libharfbuzz-icu.a
2018-05-30 08:30:45 +00:00
%{mingw32_libdir}/libharfbuzz-subset.a
2012-08-27 17:06:29 +00:00
# Win64
%files -n mingw64-harfbuzz
2015-03-24 11:50:11 +00:00
%license COPYING
2012-08-27 17:06:29 +00:00
%{mingw64_bindir}/hb-ot-shape-closure.exe
%{mingw64_bindir}/hb-shape.exe
2018-05-30 08:30:45 +00:00
%{mingw64_bindir}/hb-subset.exe
2012-08-27 17:06:29 +00:00
%{mingw64_bindir}/hb-view.exe
%{mingw64_bindir}/libharfbuzz-0.dll
2013-06-09 11:19:52 +00:00
%{mingw64_bindir}/libharfbuzz-icu-0.dll
2018-05-30 08:30:45 +00:00
%{mingw64_bindir}/libharfbuzz-subset-0.dll
2012-08-27 17:06:29 +00:00
%{mingw64_includedir}/harfbuzz/
%{mingw64_libdir}/libharfbuzz.dll.a
2013-06-09 11:19:52 +00:00
%{mingw64_libdir}/libharfbuzz-icu.dll.a
2018-05-30 08:30:45 +00:00
%{mingw64_libdir}/libharfbuzz-subset.dll.a
2012-08-27 17:06:29 +00:00
%{mingw64_libdir}/pkgconfig/harfbuzz.pc
2013-06-09 11:19:52 +00:00
%{mingw64_libdir}/pkgconfig/harfbuzz-icu.pc
2018-05-30 08:30:45 +00:00
%{mingw64_libdir}/pkgconfig/harfbuzz-subset.pc
%{mingw64_libdir}/cmake/harfbuzz/
2012-08-27 17:06:29 +00:00
%files -n mingw64-harfbuzz-static
%{mingw64_libdir}/libharfbuzz.a
2013-06-09 11:19:52 +00:00
%{mingw64_libdir}/libharfbuzz-icu.a
2018-05-30 08:30:45 +00:00
%{mingw64_libdir}/libharfbuzz-subset.a
2012-08-27 17:06:29 +00:00
%changelog
2020-09-02 08:53:55 +00:00
* Wed Sep 02 2020 Sandro Mani <manisandro@gmail.com> - 2.7.2-1
- Update to 2.7.2
2020-08-21 14:11:41 +00:00
* Fri Aug 21 2020 Sandro Mani <manisandro@gmail.com> - 2.7.1-1
- Update to 2.7.1
2020-08-12 13:40:57 +00:00
* Wed Aug 12 13:40:57 GMT 2020 Sandro Mani <manisandro@gmail.com> - 2.6.8-3
- Rebuild (mingw-gettext)
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2020-06-23 07:40:37 +00:00
* Tue Jun 23 2020 Sandro Mani <manisandro@gmail.com> - 2.6.8-1
- Update to 2.6.8
2020-06-08 07:51:08 +00:00
* Sun Jun 07 2020 Sandro Mani <manisandro@gmail.com> - 2.6.7-1
- Update to 2.6.7
2020-05-19 08:00:42 +00:00
* Tue May 19 2020 Sandro Mani <manisandro@gmail.com> - 2.6.6-2
- Rebuild (icu)
2020-05-13 23:25:34 +00:00
* Thu May 14 2020 Sandro Mani <manisandro@gmail.com> - 2.6.6-1
- Update to 2.6.6
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
2020-05-13 23:25:34 +00:00
* Tue Nov 05 2019 Sandro Mani <manisandro@gmail.com> - 2.6.4-2
2019-11-05 14:55:53 +00:00
- Rebuild (icu)
2019-10-30 09:15:52 +00:00
* Wed Oct 30 2019 Sandro Mani <manisandro@gmail.com> - 2.6.4-1
- Update to 2.6.4
2019-10-08 16:38:13 +00:00
* Tue Oct 08 2019 Sandro Mani <manisandro@gmail.com> - 2.6.2-2
- Rebuild (Changes/Mingw32GccDwarf2)
2019-10-01 09:08:56 +00:00
* Tue Oct 01 2019 Sandro Mani <manisandro@gmail.com> - 2.6.2-1
- Update to 2.6.2
2019-08-26 10:07:04 +00:00
* Mon Aug 26 2019 Sandro Mani <manisandro@gmail.com> - 2.6.1-1
- Update to 2.6.1
2019-08-19 09:14:34 +00:00
* Mon Aug 19 2019 Sandro Mani <manisandro@gmail.com> - 2.6.0-1
- Update to 2.6.0
2019-08-13 14:03:10 +00:00
* Tue Aug 13 2019 Sandro Mani <manisandro@gmail.com> - 2.5.3-3
- Rebuild (icu)
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2019-06-28 10:27:56 +00:00
* Fri Jun 28 2019 Sandro Mani <manisandro@gmail.com> - 2.5.3-1
- Update to 2.5.3
2019-06-22 20:47:18 +00:00
* Sat Jun 22 2019 Sandro Mani <manisandro@gmail.com> - 2.5.2-1
- Update to 2.5.2
2019-06-03 12:08:06 +00:00
* Mon Jun 03 2019 Sandro Mani <manisandro@gmail.com> - 2.5.1-1
- Update to 2.5.1
2019-05-27 10:25:56 +00:00
* Mon May 27 2019 Sandro Mani <manisandro@gmail.com> - 2.5.0-1
- Update to 2.5.0
2019-04-15 08:44:00 +00:00
* Mon Apr 15 2019 Sandro Mani <manisandro@gmail.com> - 2.4.0-1
- Update to 2.4.0
2019-01-31 14:19:37 +00:00
* Thu Jan 31 2019 Sandro Mani <manisandro@gmail.com> - 2.3.1-1
- Update to 2.3.1
2018-11-24 12:06:21 +00:00
* Sat Nov 24 2018 Sandro Mani <manisandro@gmail.com> - 2.1.3-1
- Update to 2.1.3
2018-11-08 21:10:17 +00:00
* Thu Nov 08 2018 Sandro Mani <manisandro@gmail.com> - 2.1.1-1
- Update to 2.1.1
2018-11-05 13:22:55 +00:00
* Mon Nov 05 2018 Sandro Mani <manisandro@gmail.com> - 2.1.0-1
- Update to 2.1.0
2018-10-28 11:43:55 +00:00
* Sun Oct 28 2018 Sandro Mani <manisandro@gmail.com> - 2.0.1-1
- Update to 2.0.1
2018-09-10 09:01:51 +00:00
* Mon Sep 10 2018 Sandro Mani <manisandro@gmail.com> - 1.8.8-1
- Update to 1.8.8
2018-08-09 14:13:22 +00:00
* Thu Aug 09 2018 Sandro Mani <manisandro@gmail.com> - 1.8.7-1
- Update to 1.8.7
2018-08-02 09:22:08 +00:00
* Thu Aug 02 2018 Sandro Mani <manisandro@gmail.com> - 1.8.5-1
- Update to 1.8.5
2018-07-19 09:36:51 +00:00
* Thu Jul 19 2018 Sandro Mani <manisandro@gmail.com> - 1.8.4-1
- Update to 1.8.4
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2018-07-03 16:18:30 +00:00
* Tue Jul 03 2018 Sandro Mani <manisandro@gmail.com> - 1.8.2-1
- Update to 1.8.2
2018-06-15 09:07:38 +00:00
* Thu Jun 14 2018 Sandro Mani <manisandro@gmail.com> - 1.8.1-1
- Update to 1.8.1
2018-06-08 13:11:08 +00:00
* Fri Jun 08 2018 Sandro Mani <manisandro@gmail.com> - 1.8.0-1
- Update to 1.8.0
2018-05-30 08:30:45 +00:00
* Tue May 29 2018 Sandro Mani <manisandro@gmail.com> - 1.7.6-1
- Update to 1.7.6
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2017-10-15 08:46:01 +00:00
* Sun Oct 15 2017 Kalev Lember <klember@redhat.com> - 1.4.8-1
- Update to 1.4.8
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-06-19 16:05:34 +00:00
* Mon Jun 19 2017 Kalev Lember <klember@redhat.com> - 1.4.4-1
- Update to 1.4.4
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2016-10-24 15:42:57 +00:00
* Mon Oct 24 2016 Kalev Lember <klember@redhat.com> - 1.3.2-2
- Rebuilt for mingw-icu 57
2016-10-16 14:14:33 +00:00
* Sun Oct 16 2016 Kalev Lember <klember@redhat.com> - 1.3.2-1
- Update to 1.3.2
2016-08-10 08:06:37 +00:00
* Wed Aug 10 2016 Kalev Lember <klember@redhat.com> - 1.3.0-1
- Update to 1.3.0
2016-05-03 14:30:24 +00:00
* Tue May 03 2016 Kalev Lember <klember@redhat.com> - 1.2.7-1
- Update to 1.2.7
2016-04-09 20:35:23 +00:00
* Sat Apr 9 2016 Erik van Pienbroek <epienbro@fedoraproject.org> - 1.2.6-1
- Update to 1.2.6
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2015-12-31 15:37:05 +00:00
* Thu Dec 31 2015 Erik van Pienbroek <epienbro@fedoraproject.org> - 1.1.2-1
- Update to 1.1.2
- Make freetype an optional runtime dependency instead of a hard dependency (using delay load)
2015-12-31 15:39:09 +00:00
- Perform verbose make
2015-12-31 15:37:05 +00:00
2015-09-25 08:52:36 +00:00
* Fri Sep 25 2015 Kalev Lember <klember@redhat.com> - 1.0.3-1
- Update to 1.0.3
2015-08-22 21:46:46 +00:00
* Sat Aug 22 2015 Kalev Lember <klember@redhat.com> - 1.0.2-1
- Update to 1.0.2
2015-08-22 21:26:27 +00:00
* Sat Aug 22 2015 Kalev Lember <klember@redhat.com> - 1.0.1-1
- Update to 1.0.1
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.40-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-03-24 11:49:42 +00:00
* Tue Mar 24 2015 Kalev Lember <kalevlember@gmail.com> - 0.9.40-1
- Update to 0.9.40
2015-03-24 11:50:11 +00:00
- Use license macro for the COPYING file
2015-03-24 11:49:42 +00:00
* Wed Dec 31 2014 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.37-2
- Added Requires: mingw{32,64}-glib2-static tags to the -static subpackages
2014-12-31 00:39:55 +00:00
* Wed Dec 31 2014 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.37-1
- Update to 0.9.37
2014-11-15 14:53:30 +00:00
* Sat Nov 15 2014 Kalev Lember <kalevlember@gmail.com> - 0.9.34-1
- Update to 0.9.34
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.28-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-05-22 20:20:56 +00:00
* Thu May 22 2014 Kalev Lember <kalevlember@gmail.com> - 0.9.28-1
- Update to 0.9.28
2014-03-29 17:56:49 +00:00
* Sat Mar 29 2014 Kalev Lember <kalevlember@gmail.com> - 0.9.27-1
- Update to 0.9.27
2014-01-25 19:51:54 +00:00
* Sat Jan 25 2014 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.25-1
- Update to 0.9.25
2013-11-20 19:43:48 +00:00
* Wed Nov 20 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.24-1
- Update to 0.9.24
2013-09-07 19:06:46 +00:00
* Sat Sep 7 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.20-1
- Update to 0.9.20
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.18-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-06-16 22:15:02 +00:00
* Mon Jun 17 2013 Kalev Lember <kalevlember@gmail.com> - 0.9.18-4
- Rebuilt for icu 50
* Sun Jun 16 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.18-3
- Rebuild to resolve InterlockedCompareExchange regression in mingw32 libraries
* Sat Jun 15 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.18-2
- Rebuild to resolve InterlockedCompareExchange regression in mingw32 libraries
2013-06-09 11:19:52 +00:00
* Sun Jun 09 2013 Kalev Lember <kalevlember@gmail.com> - 0.9.18-1
- Update to 0.9.18
2013-05-09 10:14:32 +00:00
* Thu May 9 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.16-1
- Update to 0.9.16
2013-03-24 17:31:03 +00:00
* Sun Mar 24 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.14-1
- Update to 0.9.14
* Sun Jan 27 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.9-3
- Rebuild against mingw-gcc 4.8 (win64 uses SEH exceptions now)
2013-01-02 23:50:53 +00:00
* Wed Jan 02 2013 Erik van Pienbroek <erik-fedora@vanpienbroek.nl> - 0.9.9-2
- Rebuilt against mingw-icu 49
* Mon Dec 24 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.9-1
- Update to 0.9.9
- Fix compatibility with WinXP (FreeDesktop Bug #55494)
2012-11-21 20:20:40 +00:00
* Wed Nov 21 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.7-1
- Update to 0.9.7
2012-08-27 17:06:29 +00:00
* Sun Aug 26 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 0.9.3-1
- Initial release