Compare commits
No commits in common. "c8" and "c9s" have entirely different histories.
19
.gitignore
vendored
19
.gitignore
vendored
@ -1 +1,18 @@
|
||||
SOURCES/pangomm-2.40.1.tar.xz
|
||||
pangomm-2.26.2.tar.bz2
|
||||
/pangomm-2.27.1.tar.bz2
|
||||
/pangomm-2.28.1.tar.bz2
|
||||
/pangomm-2.28.2.tar.bz2
|
||||
/pangomm-2.28.3.tar.xz
|
||||
/pangomm-2.28.4.tar.xz
|
||||
/pangomm-2.34.0.tar.xz
|
||||
/pangomm-2.35.1.tar.xz
|
||||
/pangomm-2.36.0.tar.xz
|
||||
/pangomm-2.37.2.tar.xz
|
||||
/pangomm-2.38.1.tar.xz
|
||||
/pangomm-2.39.1.tar.xz
|
||||
/pangomm-2.40.0.tar.xz
|
||||
/pangomm-2.40.1.tar.xz
|
||||
/pangomm-2.40.2.tar.xz
|
||||
/pangomm-2.42.1.tar.xz
|
||||
/pangomm-2.42.2.tar.xz
|
||||
/pangomm-2.46.1.tar.xz
|
||||
|
||||
@ -1 +0,0 @@
|
||||
2b3904e635d6cf3b8088f7a8c6e2f8a5034f6516 SOURCES/pangomm-2.40.1.tar.xz
|
||||
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-9
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
||||
@ -4,25 +4,29 @@
|
||||
|
||||
%global glibmm_version 2.48.0
|
||||
%global cairomm_version 1.2.2
|
||||
%global pango_version 1.38.0
|
||||
%global pango_version 1.45.1
|
||||
|
||||
Name: pangomm
|
||||
Version: 2.40.1
|
||||
Release: 6%{?dist}
|
||||
Version: 2.46.1
|
||||
Release: 1%{?dist}
|
||||
Summary: C++ interface for Pango
|
||||
|
||||
Group: System Environment/Libraries
|
||||
License: LGPLv2+
|
||||
URL: http://www.gtkmm.org/
|
||||
Source0: http://ftp.gnome.org/pub/GNOME/sources/pangomm/%{release_version}/%{name}-%{version}.tar.xz
|
||||
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: cairomm-devel >= %{cairomm_version}
|
||||
BuildRequires: libxslt
|
||||
BuildRequires: m4
|
||||
BuildRequires: meson
|
||||
BuildRequires: mm-common
|
||||
BuildRequires: pango-devel >= %{pango_version}
|
||||
BuildRequires: doxygen graphviz
|
||||
|
||||
Requires: glibmm24%{?_isa} >= %{glibmm_version}
|
||||
Requires: cairomm%{?_isa} >= %{cairomm_version}
|
||||
Requires: cairomm1.0%{?_isa} >= %{cairomm_version}
|
||||
Requires: pango%{?_isa} >= %{pango_version}
|
||||
|
||||
%description
|
||||
@ -34,7 +38,6 @@ quickly create complex user interfaces.
|
||||
|
||||
%package devel
|
||||
Summary: Headers for developing programs that will use %{name}
|
||||
Group: Development/Libraries
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
@ -44,7 +47,6 @@ developing pangomm applications.
|
||||
|
||||
%package doc
|
||||
Summary: Developer's documentation for the pangomm library
|
||||
Group: Documentation
|
||||
BuildArch: noarch
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: libsigc++20-doc
|
||||
@ -62,31 +64,23 @@ documentation browser or through a web browser.
|
||||
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
%meson -Dbuild-documentation=true
|
||||
%meson_build
|
||||
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
|
||||
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
%meson_install
|
||||
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
%doc AUTHORS NEWS README
|
||||
%{_libdir}/*.so.*
|
||||
%{_libdir}/libpangomm-%{apiver}.so.1*
|
||||
|
||||
|
||||
%files devel
|
||||
%{_includedir}/pangomm-%{apiver}
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/libpangomm-%{apiver}.so
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
%{_libdir}/pangomm-%{apiver}
|
||||
|
||||
@ -95,9 +89,49 @@ find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
|
||||
%{_datadir}/devhelp/
|
||||
|
||||
%changelog
|
||||
* Thu Oct 15 2020 Tomas Popela <tpopela@redhat.com> - 2.40.1-6
|
||||
- Rebuild for the annobin fixes
|
||||
- Resolves: rhbz#1704100
|
||||
* Tue Aug 24 2021 Kalev Lember <klember@redhat.com> - 2.46.1-1
|
||||
- Update to 2.46.1
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
cairomm1.0, which may be a virtual Provides, in the manual lib Requires
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.42.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Mon Dec 14 2020 Kalev Lember <klember@redhat.com> - 2.42.2-1
|
||||
- Update to 2.42.2
|
||||
- Update source URLs
|
||||
- Switch to meson build system
|
||||
- Tighten soname globs
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.42.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Mar 27 2020 Kalev Lember <klember@redhat.com> - 2.42.1-1
|
||||
- Update to 2.42.1
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.40.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.40.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.40.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Wed Jan 23 2019 Kalev Lember <klember@redhat.com> - 2.40.2-1
|
||||
- Update to 2.40.2
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.40.1-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.40.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
Loading…
Reference in New Issue
Block a user