Compare commits
No commits in common. "c8" and "c9s" have entirely different histories.
@ -1 +1,2 @@
|
|||||||
5a09a3f604cec2ddb4dfcace28dbe74a53585585 SOURCES/cairomm-1.12.0.tar.gz
|
8c823f5294724d8c96704786f947cd19b9dfd761 cairomm-1.14.2.tar.xz
|
||||||
|
36ee63013f58e8a3d632fea035227bd9891903a6 cairomm-1.14.2.tar.xz.asc
|
||||||
|
17
.gitignore
vendored
17
.gitignore
vendored
@ -1 +1,16 @@
|
|||||||
SOURCES/cairomm-1.12.0.tar.gz
|
cairomm-1.9.1.tar.gz
|
||||||
|
/cairomm-1.9.8.tar.gz
|
||||||
|
/cairomm-1.10.0.tar.gz
|
||||||
|
/cairomm-1.12.0.tar.gz
|
||||||
|
/cairomm-1.12.0.tar.gz.sha1
|
||||||
|
/cairomm-1.12.0.tar.gz.sha1.asc
|
||||||
|
/cairomm-1.12.2.tar.gz
|
||||||
|
/cairomm-1.12.2.tar.gz.sha1
|
||||||
|
/cairomm-1.12.2.tar.gz.sha1.asc
|
||||||
|
/cairomm-1.16.0.tar.xz
|
||||||
|
/cairomm-1.16.0.tar.xz.sha1
|
||||||
|
/cairomm-1.16.0.tar.xz.sha1.asc
|
||||||
|
/cairomm-1.14.2.tar.xz
|
||||||
|
/cairomm-1.14.2.tar.xz.sha1
|
||||||
|
/cairomm-1.14.2.tar.xz.sha1.asc
|
||||||
|
/cairomm-1.14.2.tar.xz.asc
|
||||||
|
@ -1,274 +0,0 @@
|
|||||||
%global apiver 1.0
|
|
||||||
|
|
||||||
%global cairo_version 1.10.0
|
|
||||||
%global libsigc_version 2.5.1
|
|
||||||
|
|
||||||
Summary: C++ API for the cairo graphics library
|
|
||||||
Name: cairomm
|
|
||||||
Version: 1.12.0
|
|
||||||
Release: 8%{?dist}
|
|
||||||
URL: http://www.cairographics.org
|
|
||||||
License: LGPLv2+
|
|
||||||
Group: System Environment/Libraries
|
|
||||||
Source: http://www.cairographics.org/releases/%{name}-%{version}.tar.gz
|
|
||||||
BuildRequires: cairo-devel >= %{cairo_version}
|
|
||||||
BuildRequires: libsigc++20-devel >= %{libsigc_version}
|
|
||||||
BuildRequires: perl-interpreter
|
|
||||||
BuildRequires: perl(Getopt::Long)
|
|
||||||
BuildRequires: pkgconfig
|
|
||||||
|
|
||||||
Requires: cairo%{?_isa} >= %{cairo_version}
|
|
||||||
Requires: libsigc++20%{?_isa} >= %{libsigc_version}
|
|
||||||
|
|
||||||
%description
|
|
||||||
Cairomm is the C++ API for the cairo graphics library. It offers all the power
|
|
||||||
of cairo with an interface familiar to C++ developers, including use of the
|
|
||||||
Standard Template Library where it makes sense.
|
|
||||||
|
|
||||||
%package devel
|
|
||||||
Summary: Headers for developing programs that will use %{name}
|
|
||||||
Group: Development/Libraries
|
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
||||||
|
|
||||||
%description devel
|
|
||||||
Cairomm is the C++ API for the cairo graphics library. It offers all the power
|
|
||||||
of cairo with an interface familiar to C++ developers, including use of the
|
|
||||||
Standard Template Library where it makes sense.
|
|
||||||
|
|
||||||
This package contains the libraries and header files needed for
|
|
||||||
developing %{name} applications.
|
|
||||||
|
|
||||||
%package doc
|
|
||||||
Summary: Developer's documentation for the cairomm library
|
|
||||||
Group: Documentation
|
|
||||||
BuildArch: noarch
|
|
||||||
Requires: %{name} = %{version}-%{release}
|
|
||||||
Requires: libsigc++20-doc
|
|
||||||
|
|
||||||
%description doc
|
|
||||||
This package contains developer's documentation for the cairomm
|
|
||||||
library. Cairomm is the C++ API for the cairo graphics library.
|
|
||||||
|
|
||||||
The documentation can be viewed either through the devhelp
|
|
||||||
documentation browser or through a web browser.
|
|
||||||
|
|
||||||
If using a web browser the documentation is installed in the gtk-doc
|
|
||||||
hierarchy and can be found at /usr/share/doc/cairomm-1.0
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -q
|
|
||||||
|
|
||||||
%build
|
|
||||||
%configure --disable-static
|
|
||||||
make %{?_smp_mflags}
|
|
||||||
|
|
||||||
%install
|
|
||||||
%make_install
|
|
||||||
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
|
|
||||||
|
|
||||||
%ldconfig_scriptlets
|
|
||||||
|
|
||||||
%files
|
|
||||||
%license COPYING
|
|
||||||
%doc AUTHORS README NEWS
|
|
||||||
%{_libdir}/lib*.so.*
|
|
||||||
|
|
||||||
%files devel
|
|
||||||
%doc ChangeLog
|
|
||||||
%{_includedir}/%{name}-%{apiver}
|
|
||||||
%{_libdir}/*.so
|
|
||||||
%{_libdir}/pkgconfig/*
|
|
||||||
%{_libdir}/%{name}-%{apiver}
|
|
||||||
|
|
||||||
%files doc
|
|
||||||
%doc %{_datadir}/doc/%{name}-%{apiver}/
|
|
||||||
%doc %{_datadir}/devhelp/
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Thu Oct 15 2020 Tomas Popela <tpopela@redhat.com> - 1.12.0-8
|
|
||||||
- Rebuild for the annobin fixes
|
|
||||||
- Resolves: rhbz#1703971
|
|
||||||
|
|
||||||
* Sun Feb 04 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.12.0-7
|
|
||||||
- Switch to %%ldconfig_scriptlets
|
|
||||||
|
|
||||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12.0-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Sep 22 2015 Kalev Lember <klember@redhat.com> - 1.12.0-1
|
|
||||||
- Update to 1.12.0
|
|
||||||
- Drop manual requires that are automatically handled by pkgconfig dep gen
|
|
||||||
- Use license macro for COPYING
|
|
||||||
- Tighten -devel subpackage deps with the _isa macro
|
|
||||||
- Use make_install macro
|
|
||||||
|
|
||||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-12
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.10.0-11
|
|
||||||
- Rebuilt for GCC 5 C++11 ABI change
|
|
||||||
|
|
||||||
* Sat Mar 07 2015 Kalev Lember <kalevlember@gmail.com> - 1.10.0-10
|
|
||||||
- Rebuilt for gcc5 ABI change
|
|
||||||
|
|
||||||
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-4
|
|
||||||
- Rebuilt for c++ ABI breakage
|
|
||||||
|
|
||||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 1.10.0-2
|
|
||||||
- Rebuild for new libpng
|
|
||||||
|
|
||||||
* Fri Jul 29 2011 Kalev Lember <kalevlember@gmail.com> - 1.10.0-1
|
|
||||||
- Update to 1.10.0
|
|
||||||
- Have the -doc subpackage depend on the base package
|
|
||||||
- Modernize the spec file
|
|
||||||
- Really own /usr/share/devhelp directory
|
|
||||||
|
|
||||||
* Mon Feb 21 2011 Haïkel Guémar <hguemar@fedoraproject.org> - 1.9.8-2
|
|
||||||
- fix documentation location
|
|
||||||
- co-own /usr/share/devhelp
|
|
||||||
|
|
||||||
* Mon Feb 14 2011 Haïkel Guémar <hguemar@fedoraproject.org> - 1.9.8-1
|
|
||||||
- upstream 1.9.8
|
|
||||||
- fix issues with f15/rawhide (RHBZ #676878)
|
|
||||||
- drop gtk-doc dependency (RHBZ #604169)
|
|
||||||
|
|
||||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 14 2010 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.9.1-1
|
|
||||||
- New upstream release
|
|
||||||
- Removed html docs from -devel package
|
|
||||||
- Seperated requires into one per line
|
|
||||||
- Fixed devhelp docs
|
|
||||||
|
|
||||||
* Tue Nov 17 2009 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.8.4-1
|
|
||||||
- New upstream release
|
|
||||||
- Added cairommconfig.h file
|
|
||||||
- Added doc subpackage
|
|
||||||
|
|
||||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Feb 24 2009 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.8.0-1
|
|
||||||
- Update to 1.8.0
|
|
||||||
- Added libsigc++20-devel dependency
|
|
||||||
|
|
||||||
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Aug 29 2008 Denis Leroy <denis@poolshark.org> - 1.6.2-1
|
|
||||||
- Update to upstream 1.6.2
|
|
||||||
- atsui patch upstreamed
|
|
||||||
|
|
||||||
* Sun Mar 23 2008 Denis Leroy <denis@poolshark.org> - 1.5.0-1
|
|
||||||
- Update to 1.5.0
|
|
||||||
- Added patch from Mamoru Tasaka to fix font type enum (#438600)
|
|
||||||
|
|
||||||
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.4-2
|
|
||||||
- Autorebuild for GCC 4.3
|
|
||||||
|
|
||||||
* Fri Aug 17 2007 Denis Leroy <denis@poolshark.org> - 1.4.4-1
|
|
||||||
- Update to upstream version 1.4.4
|
|
||||||
- Fixed License tag
|
|
||||||
|
|
||||||
* Fri Jul 20 2007 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.4.2-1
|
|
||||||
- New upstream release
|
|
||||||
- Changed install to preserve timestamps
|
|
||||||
- Removed mv of docs/reference and include files directly
|
|
||||||
|
|
||||||
* Wed Jan 17 2007 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.4-1
|
|
||||||
- New release
|
|
||||||
|
|
||||||
* Sat Oct 14 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.2-1
|
|
||||||
- New upstream release
|
|
||||||
|
|
||||||
* Sun Aug 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-4
|
|
||||||
- Bumped release for make tag
|
|
||||||
|
|
||||||
* Sun Aug 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-3
|
|
||||||
- Bumped release for mass rebuild
|
|
||||||
|
|
||||||
* Sun Aug 20 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-2
|
|
||||||
- Bumped release for make tag
|
|
||||||
|
|
||||||
* Sun Aug 20 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-1
|
|
||||||
- New upstream release
|
|
||||||
- Updated summary and description
|
|
||||||
|
|
||||||
* Thu Aug 3 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.1.10-1
|
|
||||||
- First release for cairo 1.2
|
|
||||||
- Adjusted cairo dependencies for new version
|
|
||||||
- Docs were in html, moved to reference/html
|
|
||||||
|
|
||||||
* Sun Apr 9 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.6.0-1
|
|
||||||
- New upstream version should fix the upstream issues like AUTHORS and README
|
|
||||||
- Added pkgconfig to cairomm BuildRequires and cairomm-devel Requires
|
|
||||||
- Replaced makeinstall
|
|
||||||
- Fixed devel package description
|
|
||||||
- Modified includedir syntax
|
|
||||||
- docs included via the mv in install and in the devel files as html dir
|
|
||||||
|
|
||||||
* Sun Mar 5 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-10
|
|
||||||
- Removed duplicate Group tag in devel
|
|
||||||
- Disabled docs till they're fixed upstream
|
|
||||||
|
|
||||||
* Sun Mar 5 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-9
|
|
||||||
- Removed requires since BuildRequires is present
|
|
||||||
- Cleaned up Source tag
|
|
||||||
|
|
||||||
* Fri Feb 24 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-7
|
|
||||||
- Fixed URL and SOURCE tags
|
|
||||||
- Fixed header include directory
|
|
||||||
|
|
||||||
* Fri Feb 24 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-6
|
|
||||||
- Fixed URL tag
|
|
||||||
|
|
||||||
* Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-5
|
|
||||||
- Remove epoch 'leftovers'
|
|
||||||
|
|
||||||
* Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-4
|
|
||||||
- Cleanup for FE
|
|
||||||
|
|
||||||
* Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-3
|
|
||||||
- Added pre-release alphatag
|
|
||||||
|
|
||||||
* Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-2
|
|
||||||
- Updated to current cairomm CVS
|
|
||||||
- Added documentation to devel package
|
|
||||||
|
|
||||||
* Fri Feb 03 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-1
|
|
||||||
- Updated to current cairomm CVS
|
|
||||||
|
|
||||||
* Fri Jan 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.4.0-1
|
|
||||||
- Initial creation from papyrus.spec.in
|
|
||||||
|
|
4
cairomm.rpmlintrc
Normal file
4
cairomm.rpmlintrc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# Explicit dependencies among documentation packages are indeed reasonable
|
||||||
|
addFilter(r' explicit-lib-dependency .*-doc[s]?$')
|
||||||
|
# All of the documentation is in the -doc subpackage, of course!
|
||||||
|
addFilter(r' no-documentation$')
|
442
cairomm.spec
Normal file
442
cairomm.spec
Normal file
@ -0,0 +1,442 @@
|
|||||||
|
%global so_version 1
|
||||||
|
%global apiver 1.0
|
||||||
|
|
||||||
|
# “Let mm-common-get copy some files to untracked/”, i.e., replace scripts from
|
||||||
|
# the tarball with those from mm-common. This is (potentially) required if
|
||||||
|
# building an autotools-generated tarball with meson, or vice versa.
|
||||||
|
%bcond_without maintainer_mode
|
||||||
|
|
||||||
|
Name: cairomm
|
||||||
|
Summary: C++ API for the cairo graphics library
|
||||||
|
Version: 1.14.2
|
||||||
|
Release: 10%{?dist}
|
||||||
|
|
||||||
|
URL: https://www.cairographics.org
|
||||||
|
License: LGPLv2+
|
||||||
|
|
||||||
|
%global src_base https://www.cairographics.org/releases
|
||||||
|
Source0: %{src_base}/%{name}-%{version}.tar.xz
|
||||||
|
# No keyring with authorized GPG signing keys is published
|
||||||
|
# (https://gitlab.freedesktop.org/freedesktop/freedesktop/-/issues/331), but we
|
||||||
|
# are able to verify the signature using the key for Kjell Ahlstedt from
|
||||||
|
# https://gitlab.freedesktop.org/freedesktop/freedesktop/-/issues/290.
|
||||||
|
Source1: %{src_base}/cairomm-%{version}.tar.xz.asc
|
||||||
|
Source2: https://gitlab.freedesktop.org/freedesktop/freedesktop/uploads/0ac64e9582659f70a719d59fb02cd037/gpg_key.pub
|
||||||
|
|
||||||
|
BuildRequires: gnupg2
|
||||||
|
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: meson
|
||||||
|
|
||||||
|
BuildRequires: pkgconfig(cairo)
|
||||||
|
BuildRequires: pkgconfig(sigc++-2.0)
|
||||||
|
BuildRequires: pkgconfig(fontconfig)
|
||||||
|
|
||||||
|
# Everything mentioned in data/cairomm*.pc.in, except the Quartz and Win32
|
||||||
|
# libraries that do not apply to this platform:
|
||||||
|
BuildRequires: pkgconfig(cairo-ft)
|
||||||
|
BuildRequires: pkgconfig(cairo-pdf)
|
||||||
|
BuildRequires: pkgconfig(cairo-png)
|
||||||
|
BuildRequires: pkgconfig(cairo-ps)
|
||||||
|
BuildRequires: pkgconfig(cairo-svg)
|
||||||
|
BuildRequires: pkgconfig(cairo-xlib)
|
||||||
|
BuildRequires: pkgconfig(cairo-xlib-xrender)
|
||||||
|
|
||||||
|
%if %{with maintainer_mode}
|
||||||
|
# mm-common-get
|
||||||
|
BuildRequires: mm-common
|
||||||
|
%endif
|
||||||
|
|
||||||
|
BuildRequires: perl-interpreter
|
||||||
|
BuildRequires: perl(Getopt::Long)
|
||||||
|
BuildRequires: doxygen
|
||||||
|
# dot
|
||||||
|
BuildRequires: graphviz
|
||||||
|
# xsltproc
|
||||||
|
BuildRequires: libxslt
|
||||||
|
BuildRequires: pkgconfig(mm-common-libstdc++)
|
||||||
|
|
||||||
|
# For tests:
|
||||||
|
BuildRequires: boost-devel
|
||||||
|
|
||||||
|
# Based on discussion in
|
||||||
|
# https://src.fedoraproject.org/rpms/pangomm/pull-request/2, cairomm will
|
||||||
|
# continue to provide API/ABI version 1.0 indefinitely, with the cairomm1.16
|
||||||
|
# package providing the new 1.16 API/ABI series. This virtual Provides is
|
||||||
|
# therefore no longer required, as dependent packages requiring the 1.0 API/ABI
|
||||||
|
# may safely require cairomm and its subpackages.
|
||||||
|
Provides: %{name}%{apiver}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description
|
||||||
|
This library provides a C++ interface to cairo.
|
||||||
|
|
||||||
|
The API/ABI version series is %{apiver}.
|
||||||
|
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
Provides: %{name}%{apiver}-devel%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
The %{name}-devel package contains libraries and header files for developing
|
||||||
|
applications that use %{name}.
|
||||||
|
|
||||||
|
The API/ABI version series is %{apiver}.
|
||||||
|
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Documentation for %{name}
|
||||||
|
BuildArch: noarch
|
||||||
|
Requires: libstdc++-docs
|
||||||
|
Requires: libsigc++20-doc
|
||||||
|
|
||||||
|
Provides: %{name}%{apiver}-doc = %{version}-%{release}
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
Documentation for %{name} can be viewed either through the devhelp
|
||||||
|
documentation browser or through a web browser at
|
||||||
|
%{_datadir}/doc/%{name}-%{apiver}/.
|
||||||
|
|
||||||
|
The API/ABI version series is %{apiver}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
# Import developer’s public GPG key to a keyring that we can use for signature
|
||||||
|
# verification.
|
||||||
|
workdir="$(mktemp --directory)"
|
||||||
|
gpg2 --homedir="${workdir}" --yes --import '%{SOURCE2}'
|
||||||
|
gpg2 --homedir="${workdir}" --export --export-options export-minimal \
|
||||||
|
> %{name}.gpg
|
||||||
|
rm -rf "${workdir}"
|
||||||
|
|
||||||
|
%{gpgverify} \
|
||||||
|
--keyring='%{name}.gpg' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
||||||
|
|
||||||
|
%autosetup
|
||||||
|
# We must remove the jQuery/jQueryUI bundle with precompiled/minified/bundled
|
||||||
|
# JavaScript that is in untracked/docs/reference/html/jquery.js, since such
|
||||||
|
# sources are banned in Fedora. (Note also that the bundled JavaScript had a
|
||||||
|
# different license.) We also remove the tag file, which triggers a rebuild of
|
||||||
|
# the documentation. While we are at it, we might as well rebuild the devhelp
|
||||||
|
# XML too.
|
||||||
|
rm -rf untracked/docs/reference/html
|
||||||
|
rm untracked/docs/reference/%{name}-%{apiver}.tag \
|
||||||
|
untracked/docs/reference/%{name}-%{apiver}.devhelp2
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%meson \
|
||||||
|
-Dmaintainer-mode=%{?with_maintainer_mode:true}%{?!with_maintainer_mode:false} \
|
||||||
|
-Dbuild-documentation=true \
|
||||||
|
-Dbuild-examples=false \
|
||||||
|
-Dbuild-tests=true \
|
||||||
|
-Dboost-shared=true \
|
||||||
|
-Dwarnings=max
|
||||||
|
%meson_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%meson_install
|
||||||
|
find %{buildroot} -type f -name '*.la' -print -delete
|
||||||
|
|
||||||
|
install -t %{buildroot}%{_datadir}/doc/%{name}-%{apiver} -m 0644 -p \
|
||||||
|
AUTHORS ChangeLog MAINTAINERS NEWS README
|
||||||
|
cp -rp examples %{buildroot}%{_datadir}/doc/%{name}-%{apiver}/
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
%meson_test
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license COPYING
|
||||||
|
%{_libdir}/lib%{name}-%{apiver}.so.%{so_version}
|
||||||
|
%{_libdir}/lib%{name}-%{apiver}.so.%{so_version}.*
|
||||||
|
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_includedir}/%{name}-%{apiver}
|
||||||
|
%{_libdir}/lib%{name}-%{apiver}.so
|
||||||
|
%{_libdir}/pkgconfig/%{name}-%{apiver}.pc
|
||||||
|
%{_libdir}/pkgconfig/%{name}-*-%{apiver}.pc
|
||||||
|
%{_libdir}/%{name}-%{apiver}
|
||||||
|
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%license COPYING
|
||||||
|
%doc %{_datadir}/doc/%{name}-%{apiver}/
|
||||||
|
%doc %{_datadir}/devhelp/
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.14.2-10
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.14.2-9
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Sat Feb 20 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-8
|
||||||
|
- Verify source with new strong signatures from upstream
|
||||||
|
|
||||||
|
* Thu Feb 18 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-7
|
||||||
|
- Working (but weak, dependent on SHA1) source signature verification
|
||||||
|
- Added API/ABI version to descriptions
|
||||||
|
|
||||||
|
* Wed Feb 17 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-6
|
||||||
|
- Fix typo %%{_?isa} for %%{?_isa} in virtual Provides
|
||||||
|
- Tidy up BR’s, including dropping make
|
||||||
|
|
||||||
|
* Mon Feb 15 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-5
|
||||||
|
- Update comments based on the new plan for the version 1.16 API/ABI
|
||||||
|
|
||||||
|
* Thu Feb 11 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-4
|
||||||
|
- Prepare for future upgrade to API/ABI version 1.16 by introducing virtual
|
||||||
|
Provides for a name for API/ABI version 1.0: cairomm1.0. This will be the name
|
||||||
|
of a future package that continues to provide API/ABI version 1.0 after the
|
||||||
|
upgrade.
|
||||||
|
|
||||||
|
* Thu Feb 11 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-3
|
||||||
|
- Switch from autotools to meson; enable the tests, since the meson build system
|
||||||
|
permits us to use a shared boost library
|
||||||
|
- Install examples in the -doc subpackage
|
||||||
|
|
||||||
|
* Thu Feb 11 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-2
|
||||||
|
- Restore removal of pre-built documentation with its minified JS bundle
|
||||||
|
|
||||||
|
* Thu Feb 11 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-1
|
||||||
|
- Update to 1.14.2; this adds new APIs, but is ABI-backwards-compatible
|
||||||
|
|
||||||
|
* Thu Feb 11 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.12.2-1
|
||||||
|
- Update to 1.12.2
|
||||||
|
|
||||||
|
* Thu Feb 11 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.12.0-16
|
||||||
|
- Switch URLs from HTTP to HTTPS
|
||||||
|
- Rough out code to verify source tarball signatures, and document why we
|
||||||
|
cannot yet do so
|
||||||
|
|
||||||
|
* Thu Feb 11 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.12.0-15
|
||||||
|
- Spec file style tweaks
|
||||||
|
- Macro-ize documentation path in description
|
||||||
|
- Simplified summaries and descriptions
|
||||||
|
- Use make macros (https://src.fedoraproject.org/rpms/cairomm/pull-request/1)
|
||||||
|
- Drop obsolete %%ldconfig_scriptlets macro
|
||||||
|
- Much stricter file globs, including so-version
|
||||||
|
- Stop requiring the base package from the -doc package
|
||||||
|
- Migrate top-level text file documentation to the -doc subpackage
|
||||||
|
- BR mm-common; at minimum, this lets us find tags for libstdc++ documentation;
|
||||||
|
require libstdc++-docs from the -doc subpackage, since we are now able to
|
||||||
|
find the tag file in configure
|
||||||
|
- Remove bundled jQuery/jQueryUI from prebuilt documentation, and rebuild the
|
||||||
|
documentation ourselves
|
||||||
|
- Add a note explaining why we cannot run the tests
|
||||||
|
- Drop explicit/manual lib Requires on cairo/libsigc++20
|
||||||
|
- Drop version requirements in BRs
|
||||||
|
- Rebuild autotools-generated files
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Feb 04 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.12.0-7
|
||||||
|
- Switch to %%ldconfig_scriptlets
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Sep 22 2015 Kalev Lember <klember@redhat.com> - 1.12.0-1
|
||||||
|
- Update to 1.12.0
|
||||||
|
- Drop manual requires that are automatically handled by pkgconfig dep gen
|
||||||
|
- Use license macro for COPYING
|
||||||
|
- Tighten -devel subpackage deps with the _isa macro
|
||||||
|
- Use make_install macro
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.10.0-11
|
||||||
|
- Rebuilt for GCC 5 C++11 ABI change
|
||||||
|
|
||||||
|
* Sat Mar 07 2015 Kalev Lember <kalevlember@gmail.com> - 1.10.0-10
|
||||||
|
- Rebuilt for gcc5 ABI change
|
||||||
|
|
||||||
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-4
|
||||||
|
- Rebuilt for c++ ABI breakage
|
||||||
|
|
||||||
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 1.10.0-2
|
||||||
|
- Rebuild for new libpng
|
||||||
|
|
||||||
|
* Fri Jul 29 2011 Kalev Lember <kalevlember@gmail.com> - 1.10.0-1
|
||||||
|
- Update to 1.10.0
|
||||||
|
- Have the -doc subpackage depend on the base package
|
||||||
|
- Modernize the spec file
|
||||||
|
- Really own /usr/share/devhelp directory
|
||||||
|
|
||||||
|
* Mon Feb 21 2011 Haïkel Guémar <hguemar@fedoraproject.org> - 1.9.8-2
|
||||||
|
- fix documentation location
|
||||||
|
- co-own /usr/share/devhelp
|
||||||
|
|
||||||
|
* Mon Feb 14 2011 Haïkel Guémar <hguemar@fedoraproject.org> - 1.9.8-1
|
||||||
|
- upstream 1.9.8
|
||||||
|
- fix issues with f15/rawhide (RHBZ #676878)
|
||||||
|
- drop gtk-doc dependency (RHBZ #604169)
|
||||||
|
|
||||||
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 14 2010 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.9.1-1
|
||||||
|
- New upstream release
|
||||||
|
- Removed html docs from -devel package
|
||||||
|
- Seperated requires into one per line
|
||||||
|
- Fixed devhelp docs
|
||||||
|
|
||||||
|
* Tue Nov 17 2009 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.8.4-1
|
||||||
|
- New upstream release
|
||||||
|
- Added cairommconfig.h file
|
||||||
|
- Added doc subpackage
|
||||||
|
|
||||||
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 24 2009 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.8.0-1
|
||||||
|
- Update to 1.8.0
|
||||||
|
- Added libsigc++20-devel dependency
|
||||||
|
|
||||||
|
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Aug 29 2008 Denis Leroy <denis@poolshark.org> - 1.6.2-1
|
||||||
|
- Update to upstream 1.6.2
|
||||||
|
- atsui patch upstreamed
|
||||||
|
|
||||||
|
* Sun Mar 23 2008 Denis Leroy <denis@poolshark.org> - 1.5.0-1
|
||||||
|
- Update to 1.5.0
|
||||||
|
- Added patch from Mamoru Tasaka to fix font type enum (#438600)
|
||||||
|
|
||||||
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.4-2
|
||||||
|
- Autorebuild for GCC 4.3
|
||||||
|
|
||||||
|
* Fri Aug 17 2007 Denis Leroy <denis@poolshark.org> - 1.4.4-1
|
||||||
|
- Update to upstream version 1.4.4
|
||||||
|
- Fixed License tag
|
||||||
|
|
||||||
|
* Fri Jul 20 2007 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.4.2-1
|
||||||
|
- New upstream release
|
||||||
|
- Changed install to preserve timestamps
|
||||||
|
- Removed mv of docs/reference and include files directly
|
||||||
|
|
||||||
|
* Wed Jan 17 2007 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.4-1
|
||||||
|
- New release
|
||||||
|
|
||||||
|
* Sat Oct 14 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.2-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Sun Aug 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-4
|
||||||
|
- Bumped release for make tag
|
||||||
|
|
||||||
|
* Sun Aug 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-3
|
||||||
|
- Bumped release for mass rebuild
|
||||||
|
|
||||||
|
* Sun Aug 20 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-2
|
||||||
|
- Bumped release for make tag
|
||||||
|
|
||||||
|
* Sun Aug 20 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-1
|
||||||
|
- New upstream release
|
||||||
|
- Updated summary and description
|
||||||
|
|
||||||
|
* Thu Aug 3 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.1.10-1
|
||||||
|
- First release for cairo 1.2
|
||||||
|
- Adjusted cairo dependencies for new version
|
||||||
|
- Docs were in html, moved to reference/html
|
||||||
|
|
||||||
|
* Sun Apr 9 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.6.0-1
|
||||||
|
- New upstream version should fix the upstream issues like AUTHORS and README
|
||||||
|
- Added pkgconfig to cairomm BuildRequires and cairomm-devel Requires
|
||||||
|
- Replaced makeinstall
|
||||||
|
- Fixed devel package description
|
||||||
|
- Modified includedir syntax
|
||||||
|
- docs included via the mv in install and in the devel files as html dir
|
||||||
|
|
||||||
|
* Sun Mar 5 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-10
|
||||||
|
- Removed duplicate Group tag in devel
|
||||||
|
- Disabled docs till they're fixed upstream
|
||||||
|
|
||||||
|
* Sun Mar 5 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-9
|
||||||
|
- Removed requires since BuildRequires is present
|
||||||
|
- Cleaned up Source tag
|
||||||
|
|
||||||
|
* Fri Feb 24 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-7
|
||||||
|
- Fixed URL and SOURCE tags
|
||||||
|
- Fixed header include directory
|
||||||
|
|
||||||
|
* Fri Feb 24 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-6
|
||||||
|
- Fixed URL tag
|
||||||
|
|
||||||
|
* Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-5
|
||||||
|
- Remove epoch 'leftovers'
|
||||||
|
|
||||||
|
* Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-4
|
||||||
|
- Cleanup for FE
|
||||||
|
|
||||||
|
* Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-3
|
||||||
|
- Added pre-release alphatag
|
||||||
|
|
||||||
|
* Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-2
|
||||||
|
- Updated to current cairomm CVS
|
||||||
|
- Added documentation to devel package
|
||||||
|
|
||||||
|
* Fri Feb 03 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-1
|
||||||
|
- Updated to current cairomm CVS
|
||||||
|
|
||||||
|
* Fri Jan 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.4.0-1
|
||||||
|
- Initial creation from papyrus.spec.in
|
||||||
|
|
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}
|
41
gpg_key.pub
Normal file
41
gpg_key.pub
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
mQGNBF9XkQUBDADmaPl0W4LoNnFwUy3aQQgQn2HyuoGO292p/UHdSjgQ+uiVOETU
|
||||||
|
sGlXUoqMHB2L0G/PM5fBGAdH26EWdkTNoRMVIH1vhcbA6xKCI4AEM06HtU8J7vTw
|
||||||
|
hKtW9qiYe0Gf5gF0lYFEeyoLaZUKZJmVgcFvs33kxPNkBX8+kSbCDG77cjY1X2M5
|
||||||
|
jTR/JFv0IwxAdGBaONyp4pB66qQU8skXKlrNmmc6VvP2Q8D0P6EcDJ3FfUumuTMa
|
||||||
|
tcWf72jimHKsu3XR6nfH3ghbpxxLD54MSv0vtF/5jJRon1PkASkbo+aAf3w28pKQ
|
||||||
|
TZnCeD4RcL1f3ijo2VlxMqAcdUOL/c5aRLuzz+iQobl68zsOn2YSg9kpfgmfoOmZ
|
||||||
|
Uk1XB6R4aJkh6FihZmd+QIrmjIPD3fZPxfyx2SfdAq2o5CURbNfq/enG9DyBfg78
|
||||||
|
jgTv6ybISpOmrWjR9i6nAJAkAI5upBgIuKn2VntQKuHzrjNRDSQeMMV+rdgnx2Fz
|
||||||
|
nkcIjs30U+kz9uMAEQEAAbQoS2plbGwgQWhsc3RlZHQgPGtqZWxsYWhsc3RlZHRA
|
||||||
|
Z21haWwuY29tPokB1AQTAQoAPhYhBGy0RagWUEcUqkliV566FV/MEtLABQJfV5EF
|
||||||
|
AhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEJ66FV/MEtLAa4MM
|
||||||
|
ALqkWxHC+hXB2yxH/X32nOGdJTZqEsW+gAuOyJ26mOy29ZecaBf83eEBR6BYN22Z
|
||||||
|
OwLta5bhC75OJt3rxqZZRC1QcFLxDH5n8UkXInu5U7kZkPIyEW8rmtgK4Y3EEetF
|
||||||
|
AcxT75/OsYL1ssTd/CCbNCe2KLarIwu/mNRN42yZq8nqWN94sfRwCGRltwtEjPiW
|
||||||
|
OepIBjk4QNaFa2iACCWKyeDX3l6XdWUza7InYYZep+9759Vv3iHOlwOJRQdXE7Gp
|
||||||
|
RrftCxls/aR/M4pWMHa8Mbev12Gz1+emChCcpyU14ce04mDsefcRiaCPD8kH5LII
|
||||||
|
fH7YMqFd0KOZZDLZFQRQhLb5zCPlLwgjiDsS7XUhfCCA7HQhWVPV26afbllIB03f
|
||||||
|
d9m0WCbnrPsKP3LazDVhXLkYRrDNrEzKV8Oy2hKw+BlpmOhgtVIPrHCdYMt+4kzi
|
||||||
|
f16CFUiim2yTjqa8tDcsiIMPccaqRjjhQJ/KxmQSvMLmZOgkYNaOgO9FQ/pJsnMX
|
||||||
|
b7kBjQRfV5EFAQwAu2/c0DO1x5gwcXoAlXzx5ONIpSzqOtTHubMaUTV0R6B8yVGs
|
||||||
|
o2rL5tbTdr5ClIOwc2gvYz/mLsOyikb7fy+EBW7/CrtlPZTFrt5pA19it7I0MK7K
|
||||||
|
mMu6bDgK14E9LBfJIsNnDEvmPhdMloCMeIxcSldpVu/VG3CbWqVVrCy/PTI22FYx
|
||||||
|
lM+CIDOgQgG7NeIebvBKAeaWk1lGW0qf/i/mWMTuv+/37okUzjWBXboKhpJ0WzY4
|
||||||
|
O2fxgTV1EwQ44jMDiKFbq+hUFRln+hdTCrez4F4xvly2AyNYLciiksCz0LqcMZ2o
|
||||||
|
x1MHm3P/lWJvPK7r1tQQI+THq/XbWcVRKJPCOiFcEUs1rHxsTprmHVOuAPhWP3kp
|
||||||
|
+ZhLIqdpvw2B//hiJmJgLIiXHkfRUwmHaIAZrmWTqEjhJc0cZP+F4+0UNabr7Lmd
|
||||||
|
pl7vBGh+TCwu9EN/SmCvRAc9JdlLOHwpaDxXrjUQ5S9PbwMiw00HwvDjqt7Wsvks
|
||||||
|
1XVAiiBTddhafZCJABEBAAGJAbwEGAEKACYWIQRstEWoFlBHFKpJYleeuhVfzBLS
|
||||||
|
wAUCX1eRBQIbDAUJA8JnAAAKCRCeuhVfzBLSwE7aDADlFFoqJFNqxF2jC+jHzTcS
|
||||||
|
vjpZVk9GTcyRqulVzpH18gLZnN+1abgVOGA0abfE9qV+mRnMmyfrhfB8kGc+VodS
|
||||||
|
ByRuAktW8n+AlgGN26hk4nEChcf09BHhRZkDbdSEhhZNeqYfTGZIivxx97KgzrC6
|
||||||
|
9b9MrSMogzeOMbzLYojiJxsAhFvTgrPeJObRwf71dLFmBvjL7fheTVsaDq/v6EWz
|
||||||
|
unnNZPRGWwiYnIZkHN8+ZVbumlm2zHAk1EOaCbaVOok24CVzZaOJWhUsoWwdAMuy
|
||||||
|
hJB4iTy3NzhpgJaU8M6CwSDdZboXLqe4S2Ys74Y7Pf5kOhV/b9C+DD3D7kirwyWS
|
||||||
|
gsmjKHdTZbNx9NBsDoAIOQiCvg1VqwUBSeqBYPMJOKzvZGRN+CZnoiN+NDoAS1qI
|
||||||
|
zLEl8udwtXc30yzKbX5Izx3PqaHx7eWJeY8VuF+oynb/hQUdb9VMYFAfP3//Ow2A
|
||||||
|
8v/f6lrl1xTqdRtpn719bcIDXYCZNPEi6kHk0vU/sH4=
|
||||||
|
=nxmX
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
2
sources
Normal file
2
sources
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SHA512 (cairomm-1.14.2.tar.xz) = aef374fca25ad22770407e36512046b266d71ebeccd47fb629cfbf2f67783aa314bb335b972088a88d98417a4774d6f144cd2769c452f8aa23770eae08dca592
|
||||||
|
SHA512 (cairomm-1.14.2.tar.xz.asc) = b2b9c79d4fb2b43f30599a1bcb5138bf375962728e173514a2ee8b69bed2e7a78a8a4818258e0aec0138c953597f3e6cf83cd3b99b3e3a1538afcc0c23f6a7c1
|
Loading…
Reference in New Issue
Block a user