|
|
|
@ -1,21 +1,69 @@
|
|
|
|
|
## START: Set by rpmautospec
|
|
|
|
|
## (rpmautospec version 0.7.3)
|
|
|
|
|
## RPMAUTOSPEC: autorelease, autochangelog
|
|
|
|
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
|
|
|
|
release_number = 7;
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
%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
|
|
|
|
|
%bcond maintainer_mode 1
|
|
|
|
|
|
|
|
|
|
# Doxygen HTML help is not suitable for packaging due to a minified JavaScript
|
|
|
|
|
# bundle inserted by Doxygen itself. See discussion at
|
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=2006555.
|
|
|
|
|
#
|
|
|
|
|
# We can enable the Doxygen PDF documentation as a substitute.
|
|
|
|
|
#
|
|
|
|
|
# We still generate the HTML documentation, but strip out all the JavaScript
|
|
|
|
|
# that causes policy issues. This degrades it in the browser, but is sufficient
|
|
|
|
|
# to keep the Devhelp documentation working.
|
|
|
|
|
%bcond doc_pdf 1
|
|
|
|
|
|
|
|
|
|
Name: cairomm
|
|
|
|
|
Summary: C++ API for the cairo graphics library
|
|
|
|
|
Version: 1.14.2
|
|
|
|
|
Release: 10%{?dist}
|
|
|
|
|
Version: 1.14.5
|
|
|
|
|
Release: %autorelease
|
|
|
|
|
|
|
|
|
|
URL: https://www.cairographics.org
|
|
|
|
|
License: LGPLv2+
|
|
|
|
|
License: LGPL-2.0-or-later
|
|
|
|
|
# The following files under other allowable licenses belong to the build system
|
|
|
|
|
# and do not contribute to the licenses of the binary RPMs.
|
|
|
|
|
#
|
|
|
|
|
# FSFAP:
|
|
|
|
|
# build/ax_boost_base.m4
|
|
|
|
|
# build/ax_boost_test_exec_monitor.m4
|
|
|
|
|
# build/ax_boost_unit_test_framework.m4
|
|
|
|
|
# GPL-2.0-or-later:
|
|
|
|
|
# MSVC_NMake/gendef/gendef.cc
|
|
|
|
|
# untracked/docs/tagfile-to-devhelp2.xsl
|
|
|
|
|
# LGPL-2.1-or-later:
|
|
|
|
|
# Makefile.am
|
|
|
|
|
# cairomm/Makefile.am
|
|
|
|
|
# configure.ac
|
|
|
|
|
# docs/Makefile.am
|
|
|
|
|
# MIT:
|
|
|
|
|
# untracked/docs/reference/html/dynsections.js
|
|
|
|
|
# untracked/docs/reference/html/jquery.js
|
|
|
|
|
# untracked/docs/reference/html/menu.js
|
|
|
|
|
# untracked/docs/reference/html/menudata.js
|
|
|
|
|
SourceLicense: %{shrink:
|
|
|
|
|
%{license} AND
|
|
|
|
|
FSFAP AND
|
|
|
|
|
GPL-2.0-or-later AND
|
|
|
|
|
LGPL-2.1-or-later AND
|
|
|
|
|
MIT
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%global src_base https://www.cairographics.org/releases
|
|
|
|
|
Source0: %{src_base}/%{name}-%{version}.tar.xz
|
|
|
|
|
Source0: %{src_base}/cairomm-%{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
|
|
|
|
@ -44,17 +92,19 @@ BuildRequires: pkgconfig(cairo-xlib-xrender)
|
|
|
|
|
|
|
|
|
|
%if %{with maintainer_mode}
|
|
|
|
|
# mm-common-get
|
|
|
|
|
BuildRequires: mm-common
|
|
|
|
|
BuildRequires: mm-common >= 1.0.4
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
BuildRequires: perl-interpreter
|
|
|
|
|
BuildRequires: perl(Getopt::Long)
|
|
|
|
|
BuildRequires: doxygen
|
|
|
|
|
# dot
|
|
|
|
|
BuildRequires: graphviz
|
|
|
|
|
# xsltproc
|
|
|
|
|
BuildRequires: libxslt
|
|
|
|
|
BuildRequires: pkgconfig(mm-common-libstdc++)
|
|
|
|
|
%if %{with doc_pdf}
|
|
|
|
|
BuildRequires: doxygen-latex
|
|
|
|
|
BuildRequires: make
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# For tests:
|
|
|
|
|
BuildRequires: boost-devel
|
|
|
|
@ -65,7 +115,7 @@ BuildRequires: boost-devel
|
|
|
|
|
# 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}
|
|
|
|
|
Provides: cairomm%{apiver}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
This library provides a C++ interface to cairo.
|
|
|
|
@ -74,59 +124,65 @@ The API/ABI version series is %{apiver}.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
Summary: Development files for cairomm
|
|
|
|
|
Requires: cairomm%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
Provides: %{name}%{apiver}-devel%{?_isa} = %{version}-%{release}
|
|
|
|
|
Provides: cairomm%{apiver}-devel%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
The %{name}-devel package contains libraries and header files for developing
|
|
|
|
|
applications that use %{name}.
|
|
|
|
|
The cairomm-devel package contains libraries and header files for developing
|
|
|
|
|
applications that use cairomm.
|
|
|
|
|
|
|
|
|
|
The API/ABI version series is %{apiver}.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
|
Summary: Documentation for %{name}
|
|
|
|
|
Summary: Documentation for cairomm
|
|
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
Requires: libstdc++-docs
|
|
|
|
|
Requires: libsigc++20-doc
|
|
|
|
|
|
|
|
|
|
Provides: %{name}%{apiver}-doc = %{version}-%{release}
|
|
|
|
|
Provides: cairomm%{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}/.
|
|
|
|
|
Documentation for cairomm can be viewed through the devhelp documentation
|
|
|
|
|
browser.
|
|
|
|
|
|
|
|
|
|
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}'
|
|
|
|
|
--keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
|
|
|
|
|
|
|
|
|
%autosetup
|
|
|
|
|
# Fix stray executable bit:
|
|
|
|
|
chmod -v a-x NEWS
|
|
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
# XML too. Note that we will still install the HTML documentation, since the
|
|
|
|
|
# devhelp XML requires it, but we will strip out the JavaScript, which will
|
|
|
|
|
# degrade the documentation in a web browser.
|
|
|
|
|
rm -rf untracked/docs/reference/html
|
|
|
|
|
rm untracked/docs/reference/%{name}-%{apiver}.tag \
|
|
|
|
|
untracked/docs/reference/%{name}-%{apiver}.devhelp2
|
|
|
|
|
rm untracked/docs/reference/cairomm-%{apiver}.tag \
|
|
|
|
|
untracked/docs/reference/cairomm-%{apiver}.devhelp2
|
|
|
|
|
%if %{with doc_pdf}
|
|
|
|
|
# We enable the Doxygen PDF documentation as a substitute. We must
|
|
|
|
|
# enable GENERATE_LATEX and LATEX_BATCHMODE; the rest are precautionary and
|
|
|
|
|
# should already be set as we like them.
|
|
|
|
|
sed -r -i \
|
|
|
|
|
-e "s/^([[:blank:]]*(GENERATE_LATEX|LATEX_BATCHMODE|USE_PDFLATEX|\
|
|
|
|
|
PDF_HYPERLINKS)[[:blank:]]*=[[:blank:]]*)NO[[:blank:]]*/\1YES/" \
|
|
|
|
|
-e "s/^([[:blank:]]*(LATEX_TIMESTAMP)\
|
|
|
|
|
[[:blank:]]*=[[:blank:]]*)YES[[:blank:]]*/\1NO/" \
|
|
|
|
|
docs/reference/Doxyfile.in
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%conf
|
|
|
|
|
%meson \
|
|
|
|
|
-Dmaintainer-mode=%{?with_maintainer_mode:true}%{?!with_maintainer_mode:false} \
|
|
|
|
|
-Dbuild-documentation=true \
|
|
|
|
@ -134,16 +190,31 @@ rm untracked/docs/reference/%{name}-%{apiver}.tag \
|
|
|
|
|
-Dbuild-tests=true \
|
|
|
|
|
-Dboost-shared=true \
|
|
|
|
|
-Dwarnings=max
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%meson_build
|
|
|
|
|
|
|
|
|
|
%if %{with doc_pdf}
|
|
|
|
|
%make_build -C '%{_vpath_builddir}/docs/reference/latex'
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%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}/
|
|
|
|
|
install -t %{buildroot}%{_docdir}/cairomm-%{apiver} -m 0644 -p \
|
|
|
|
|
ChangeLog NEWS README.md
|
|
|
|
|
cp -rp examples %{buildroot}%{_docdir}/cairomm-%{apiver}/
|
|
|
|
|
|
|
|
|
|
# Strip out bundled and/or pre-minified JavaScript; this degrades the browser
|
|
|
|
|
# experience, but the HTML is still usable for devhelp.
|
|
|
|
|
find '%{buildroot}%{_docdir}/cairomm-%{apiver}/reference/html' \
|
|
|
|
|
-type f \( -name '*.js' -o -name '*.js.*' \) -print -delete
|
|
|
|
|
%if %{with doc_pdf}
|
|
|
|
|
install '%{_vpath_builddir}/docs/reference/latex/refman.pdf' -p -m 0644 \
|
|
|
|
|
'%{buildroot}%{_docdir}/cairomm-%{apiver}/reference/cairomm-%{apiver}.pdf'
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
@ -152,31 +223,125 @@ cp -rp examples %{buildroot}%{_datadir}/doc/%{name}-%{apiver}/
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%license COPYING
|
|
|
|
|
%{_libdir}/lib%{name}-%{apiver}.so.%{so_version}
|
|
|
|
|
%{_libdir}/lib%{name}-%{apiver}.so.%{so_version}.*
|
|
|
|
|
%{_libdir}/libcairomm-%{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}
|
|
|
|
|
%{_includedir}/cairomm-%{apiver}/
|
|
|
|
|
%{_libdir}/libcairomm-%{apiver}.so
|
|
|
|
|
%{_libdir}/pkgconfig/cairomm-%{apiver}.pc
|
|
|
|
|
%{_libdir}/pkgconfig/cairomm-*-%{apiver}.pc
|
|
|
|
|
%{_libdir}/cairomm-%{apiver}/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files doc
|
|
|
|
|
%license COPYING
|
|
|
|
|
%doc %{_datadir}/doc/%{name}-%{apiver}/
|
|
|
|
|
# Note: JavaScript has been removed from HTML reference manual, degrading the
|
|
|
|
|
# browser experience. It is still needed for Devhelp support.
|
|
|
|
|
%doc %{_docdir}/cairomm-%{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
|
|
|
|
|
* Tue Dec 24 2024 Arkady L. Shane <tigro@msvsphere-os.ru> - 1.14.5-7
|
|
|
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
|
|
|
|
|
|
## START: Generated by rpmautospec
|
|
|
|
|
* Wed Dec 11 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.5-7
|
|
|
|
|
- Add a SourceLicense field
|
|
|
|
|
|
|
|
|
|
* Thu Oct 31 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.5-6
|
|
|
|
|
- Invoke %%meson in %%conf rather than in %%build
|
|
|
|
|
|
|
|
|
|
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.5-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jan 23 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.5-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.5-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Sep 28 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.5-1
|
|
|
|
|
- Update to 1.14.5 (close RHBZ#2240942)
|
|
|
|
|
|
|
|
|
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.4-10
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Jun 17 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.4-9
|
|
|
|
|
- Use new (rpm 4.17.1+) bcond style
|
|
|
|
|
|
|
|
|
|
* Thu Jun 15 2023 Björn Persson <Bjorn@Rombobjörn.se> - 1.14.4-8
|
|
|
|
|
- Removed superfluous processing of the OpenPGP key.
|
|
|
|
|
|
|
|
|
|
* Mon Jan 23 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.4-7
|
|
|
|
|
- Revert "Work around missing dependency on texlive-wasy"
|
|
|
|
|
|
|
|
|
|
* Thu Jan 19 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.4-6
|
|
|
|
|
- Work around missing dependency on texlive-wasy
|
|
|
|
|
|
|
|
|
|
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.4-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Dec 19 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.4-4
|
|
|
|
|
- Trivially simplify a files list
|
|
|
|
|
|
|
|
|
|
* Mon Dec 19 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.4-3
|
|
|
|
|
- Indicate dirs. in files list with trailing slashes
|
|
|
|
|
|
|
|
|
|
* Thu Sep 22 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.4-2
|
|
|
|
|
- Explicit perl BR no longer needed with mm-common >= 1.0.4
|
|
|
|
|
|
|
|
|
|
* Wed Sep 21 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.4-1
|
|
|
|
|
- Update to 1.14.4 (close RHBZ#2128740)
|
|
|
|
|
|
|
|
|
|
* Wed Aug 03 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-24
|
|
|
|
|
- Update License field to SPDX
|
|
|
|
|
|
|
|
|
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.2-23
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.2-22
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Nov 27 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-21
|
|
|
|
|
- Tweak a spec file comment
|
|
|
|
|
|
|
|
|
|
* Wed Oct 20 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-20
|
|
|
|
|
- Bump release and rebuild (close RHBZ#2015257)
|
|
|
|
|
|
|
|
|
|
* Fri Oct 01 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-19
|
|
|
|
|
- Re-enable Doxygen HTML, stripping JS, for devhelp
|
|
|
|
|
|
|
|
|
|
* Mon Sep 27 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-18
|
|
|
|
|
- Rename PDF documentation file
|
|
|
|
|
|
|
|
|
|
* Mon Sep 27 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-17
|
|
|
|
|
- No need to remove .la files; meson doesn’t create them
|
|
|
|
|
|
|
|
|
|
* Mon Sep 27 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-16
|
|
|
|
|
- Package PDF docs in lieu of HTML
|
|
|
|
|
|
|
|
|
|
* Sun Sep 26 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-15
|
|
|
|
|
- Mention search/search.js
|
|
|
|
|
|
|
|
|
|
* Sat Sep 25 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-14
|
|
|
|
|
- In -doc, unbundle js-jquery and fix License
|
|
|
|
|
|
|
|
|
|
* Sat Sep 25 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-13
|
|
|
|
|
- Reduce macro indirection in spec file
|
|
|
|
|
|
|
|
|
|
* Tue Aug 10 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-12
|
|
|
|
|
- Rebuild for Boost 1.76
|
|
|
|
|
|
|
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.2-11
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.2-10
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* 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
|
|
|
|
|
* Tue Jul 20 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-9
|
|
|
|
|
- Fix release number with rpmautospec
|
|
|
|
|
|
|
|
|
|
* Sat Feb 20 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.14.2-8
|
|
|
|
|
- Verify source with new strong signatures from upstream
|
|
|
|
@ -440,3 +605,4 @@ cp -rp examples %{buildroot}%{_datadir}/doc/%{name}-%{apiver}/
|
|
|
|
|
* Fri Jan 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.4.0-1
|
|
|
|
|
- Initial creation from papyrus.spec.in
|
|
|
|
|
|
|
|
|
|
## END: Generated by rpmautospec
|
|
|
|
|