|
|
|
@ -1,3 +1,13 @@
|
|
|
|
|
## START: Set by rpmautospec
|
|
|
|
|
## (rpmautospec version 0.6.5)
|
|
|
|
|
## RPMAUTOSPEC: autorelease, autochangelog
|
|
|
|
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
|
|
|
|
release_number = 2;
|
|
|
|
|
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
|
|
|
|
print(release_number + base_release_number - 1);
|
|
|
|
|
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
|
|
|
|
## END: Set by rpmautospec
|
|
|
|
|
|
|
|
|
|
%define apiver 1.4
|
|
|
|
|
# first two digits of version
|
|
|
|
|
%define release_version %(echo %{version} | awk -F. '{print $1"."$2}')
|
|
|
|
@ -7,25 +17,26 @@
|
|
|
|
|
%global pango_version 1.45.1
|
|
|
|
|
|
|
|
|
|
Name: pangomm
|
|
|
|
|
Version: 2.46.1
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Version: 2.46.4
|
|
|
|
|
Release: %autorelease
|
|
|
|
|
Summary: C++ interface for Pango
|
|
|
|
|
|
|
|
|
|
License: LGPLv2+
|
|
|
|
|
# tools are GPL-2.0-only
|
|
|
|
|
License: LGPL-2.1-or-later AND GPL-2.0-only
|
|
|
|
|
URL: https://www.gtkmm.org/
|
|
|
|
|
Source0: https://download.gnome.org/sources/pangomm/%{release_version}/%{name}-%{version}.tar.xz
|
|
|
|
|
|
|
|
|
|
BuildRequires: pkgconfig(cairomm-1.0) >= %{cairomm_version}
|
|
|
|
|
BuildRequires: doxygen
|
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
|
BuildRequires: glibmm24-devel >= %{glibmm_version}
|
|
|
|
|
BuildRequires: pkgconfig(cairomm-1.0) >= %{cairomm_version}
|
|
|
|
|
BuildRequires: pkgconfig(glibmm-2.4) >= %{glibmm_version}
|
|
|
|
|
BuildRequires: pkgconfig(pangocairo) >= %{pango_version}
|
|
|
|
|
BuildRequires: libxslt
|
|
|
|
|
BuildRequires: m4
|
|
|
|
|
BuildRequires: meson
|
|
|
|
|
BuildRequires: mm-common
|
|
|
|
|
BuildRequires: pango-devel >= %{pango_version}
|
|
|
|
|
|
|
|
|
|
Requires: glibmm24%{?_isa} >= %{glibmm_version}
|
|
|
|
|
Requires: glibmm2.4%{?_isa} >= %{glibmm_version}
|
|
|
|
|
Requires: cairomm1.0%{?_isa} >= %{cairomm_version}
|
|
|
|
|
Requires: pango%{?_isa} >= %{pango_version}
|
|
|
|
|
|
|
|
|
@ -47,10 +58,14 @@ developing pangomm applications.
|
|
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
|
Summary: Developer's documentation for the pangomm library
|
|
|
|
|
# untracked/docs/tagfile-to-devhelp2.xsl is AGPL-3.0-only
|
|
|
|
|
# bundled *.js are MIT
|
|
|
|
|
# untracked/docs/reference/html/jquery.js is GPL-2.0-only OR MIT
|
|
|
|
|
License: GPL-2.0-or-later AND AGPL-3.0-only AND MIT AND (GPL-2.0-only OR MIT)
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
Requires: libsigc++20-doc
|
|
|
|
|
Requires: glibmm24-doc
|
|
|
|
|
Requires: glibmm2.4-doc
|
|
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
|
This package contains developer's documentation for the pangomm
|
|
|
|
@ -60,7 +75,7 @@ The documentation can be viewed either through the devhelp
|
|
|
|
|
documentation browser or through a web browser.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
|
|
|
|
%autosetup -p1 -n pangomm-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
@ -74,7 +89,7 @@ documentation browser or through a web browser.
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%license COPYING
|
|
|
|
|
%doc AUTHORS NEWS README
|
|
|
|
|
%doc NEWS README.md
|
|
|
|
|
%{_libdir}/libpangomm-%{apiver}.so.1*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -88,16 +103,50 @@ documentation browser or through a web browser.
|
|
|
|
|
%doc %{_docdir}/pangomm-%{apiver}/
|
|
|
|
|
%{_datadir}/devhelp/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Tue Aug 24 2021 Kalev Lember <klember@redhat.com> - 2.46.1-1
|
|
|
|
|
- Update to 2.46.1
|
|
|
|
|
* Wed Dec 25 2024 Arkady L. Shane <tigro@msvsphere-os.ru> - 2.46.4-2
|
|
|
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
|
|
|
|
|
|
## START: Generated by rpmautospec
|
|
|
|
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.46.4-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Jan 27 2024 David King <amigadave@amigadave.com> - 2.46.4-1
|
|
|
|
|
- Update to 2.46.4
|
|
|
|
|
|
|
|
|
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.46.3-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.46.3-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.42.2-5
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
* Wed Dec 20 2023 Miroslav Suchý <msuchy@redhat.com> - 2.46.3-4
|
|
|
|
|
- Migrate to SPDX license
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.42.2-4
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.46.3-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.46.3-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Sep 26 2022 Kalev Lember <klember@redhat.com> - 2.46.3-1
|
|
|
|
|
- Update to 2.46.3
|
|
|
|
|
|
|
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.46.2-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.46.2-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Dec 07 2021 Kalev Lember <klember@redhat.com> - 2.46.2-1
|
|
|
|
|
- Update to 2.46.2
|
|
|
|
|
|
|
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.46.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed May 26 2021 Kalev Lember <klember@redhat.com> - 2.46.1-1
|
|
|
|
|
- Update to 2.46.1
|
|
|
|
|
|
|
|
|
|
* Fri Feb 12 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 2.42.2-3
|
|
|
|
|
- Use pkgconfig to BR the required cairomm API/ABI version 1.0 (vs. 1.16); use
|
|
|
|
@ -271,10 +320,12 @@ documentation browser or through a web browser.
|
|
|
|
|
- Update to stable 2.14.0
|
|
|
|
|
|
|
|
|
|
* Fri Aug 29 2008 Denis Leroy <denis@poolshark.org> - 2.13.7-3
|
|
|
|
|
- Obsoletes older gtkmm to avoid libpangomm conflict
|
|
|
|
|
- Obsoletes older gtkmm to avoid libpangomm conflict
|
|
|
|
|
|
|
|
|
|
* Wed Aug 27 2008 Denis Leroy <denis@poolshark.org> - 2.13.7-2
|
|
|
|
|
- Spec review fixes
|
|
|
|
|
|
|
|
|
|
* Mon Aug 25 2008 Denis Leroy <denis@poolshark.org> - 2.13.7-1
|
|
|
|
|
- First version
|
|
|
|
|
|
|
|
|
|
## END: Generated by rpmautospec
|
|
|
|
|