Dominique Leuenberger
a73621af07
- Update to version 2.46.4: + Coverage: Don't use deprecated pango_coverage_ref/unref() + Documentation: - Doxyfile.in: Don't hide undocumented classes - Remove AUTHORS, HACKING, README.SUN; add general info to README.md. + Meson build: - Detect if we build from a git subtree - Don't copy files with configure_file() - Fix the evaluation of is_git_build on Windows - Don't fail if warning_level=everything - Enable check section: run meson test (no tests defined as of now). OBS-URL: https://build.opensuse.org/request/show/1175735 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/pangomm1_4?expand=0&rev=23
93 lines
2.5 KiB
RPMSpec
93 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package pangomm1_4
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define so_ver -1_4-1
|
|
%define _name pangomm
|
|
|
|
Name: pangomm1_4
|
|
Version: 2.46.4
|
|
Release: 0
|
|
Summary: C++ interface for pango
|
|
License: GPL-2.0-or-later AND LGPL-2.0-or-later
|
|
Group: Development/Libraries/C and C++
|
|
URL: http://www.gtkmm.org
|
|
Source0: https://download.gnome.org/sources/pangomm/2.46/%{_name}-%{version}.tar.xz
|
|
# PATCH-FIX-OPENSUSE pangomm1_4-docs-without-timestamp.patch dimstar@opensuse.org -- Do not add timestamps to generated doc files
|
|
Patch0: pangomm1_4-docs-without-timestamp.patch
|
|
BuildRequires: c++_compiler
|
|
BuildRequires: doxygen
|
|
BuildRequires: fdupes
|
|
BuildRequires: graphviz
|
|
BuildRequires: meson >= 0.55.0
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: xsltproc
|
|
BuildRequires: pkgconfig(cairomm-1.0) >= 1.2.2
|
|
BuildRequires: pkgconfig(glibmm-2.4) >= 2.48.0
|
|
BuildRequires: pkgconfig(pangocairo) >= 1.45.1
|
|
|
|
%description
|
|
pangomm provides a C++ interface to the pango library.
|
|
|
|
%package -n libpangomm%{so_ver}
|
|
Summary: C++ interface for pango
|
|
Group: System/Libraries
|
|
|
|
%description -n libpangomm%{so_ver}
|
|
pangomm provides a C++ interface to the pango library.
|
|
|
|
%package devel
|
|
Summary: C++ interface for pango -- Development Files
|
|
Group: Development/Libraries/C and C++
|
|
Requires: libpangomm%{so_ver} = %{version}
|
|
|
|
%description devel
|
|
pangomm provides a C++ interface to the pango library.
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{_name}-%{version}
|
|
chmod -x NEWS
|
|
|
|
%build
|
|
%meson \
|
|
-Dbuild-documentation=false \
|
|
%{nil}
|
|
%meson_build
|
|
|
|
%install
|
|
%meson_install
|
|
%fdupes %{buildroot}/%{prefix}
|
|
|
|
%check
|
|
%meson_test
|
|
|
|
%post -n libpangomm%{so_ver} -p /sbin/ldconfig
|
|
%postun -n libpangomm%{so_ver} -p /sbin/ldconfig
|
|
|
|
%files -n libpangomm%{so_ver}
|
|
%license COPYING
|
|
%doc NEWS README.md
|
|
%{_libdir}/*.so.*
|
|
|
|
%files devel
|
|
%{_includedir}/*
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/*.pc
|
|
%{_libdir}/pangomm-1.4
|
|
|
|
%changelog
|