|
|
@ -1,52 +1,55 @@
|
|
|
|
%global opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
|
|
|
# OCaml packages not built on i686 since OCaml 5 / Fedora 39.
|
|
|
|
|
|
|
|
ExcludeArch: %{ix86}
|
|
|
|
|
|
|
|
|
|
|
|
# Optionally disable camomile dep on RHEL.
|
|
|
|
# Optionally disable camomile dep on RHEL.
|
|
|
|
%if !0%{?rhel}
|
|
|
|
%if !0%{?rhel}
|
|
|
|
%bcond_without camomile
|
|
|
|
%bcond_without camomile
|
|
|
|
|
|
|
|
%bcond_without tests
|
|
|
|
%else
|
|
|
|
%else
|
|
|
|
%bcond_with camomile
|
|
|
|
%bcond_with camomile
|
|
|
|
|
|
|
|
%bcond_with tests
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
Name: ocaml-gettext
|
|
|
|
Name: ocaml-gettext
|
|
|
|
Version: 0.4.2
|
|
|
|
Version: 0.4.2
|
|
|
|
Release: 6%{?dist}
|
|
|
|
Release: 23%{?dist}
|
|
|
|
Summary: OCaml library for i18n
|
|
|
|
Summary: OCaml library for i18n
|
|
|
|
|
|
|
|
|
|
|
|
License: LGPLv2+ with exceptions
|
|
|
|
License: LGPL-2.1-or-later with OCaml-LGPL-linking-exception
|
|
|
|
URL: https://github.com/gildor478/ocaml-gettext
|
|
|
|
URL: https://github.com/gildor478/ocaml-gettext
|
|
|
|
|
|
|
|
|
|
|
|
Source0: https://github.com/gildor478/%{name}/archive/v%{version}.tar.gz
|
|
|
|
Source0: https://github.com/gildor478/%{name}/archive/v%{version}.tar.gz
|
|
|
|
|
|
|
|
|
|
|
|
BuildRequires: make
|
|
|
|
# Updates for OCaml 5. Based in part on
|
|
|
|
BuildRequires: ocaml >= 4.00.1
|
|
|
|
# https://github.com/gildor478/ocaml-gettext/pull/24
|
|
|
|
BuildRequires: ocaml-findlib-devel >= 1.3.3-3
|
|
|
|
Patch0: %{name}-ocaml5.patch
|
|
|
|
BuildRequires: ocaml-compiler-libs
|
|
|
|
# Adapt to changes in camomile 2.0
|
|
|
|
BuildRequires: ocaml-ocamldoc
|
|
|
|
# https://github.com/gildor478/ocaml-gettext/pull/27
|
|
|
|
|
|
|
|
Patch1: %{name}-camomile2.patch
|
|
|
|
|
|
|
|
# Two tests that are supposed to fail raise different errors under OCaml 5.2.0
|
|
|
|
|
|
|
|
Patch2: %{name}-ocaml5.2.patch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BuildRequires: ocaml >= 4.03.0
|
|
|
|
BuildRequires: ocaml-fileutils-devel >= 0.4.4-4
|
|
|
|
BuildRequires: ocaml-fileutils-devel >= 0.4.4-4
|
|
|
|
BuildRequires: ocaml-dune-devel
|
|
|
|
BuildRequires: ocaml-dune >= 1.11.0
|
|
|
|
|
|
|
|
BuildRequires: ocaml-dune-configurator-devel
|
|
|
|
BuildRequires: ocaml-cppo
|
|
|
|
BuildRequires: ocaml-cppo
|
|
|
|
BuildRequires: docbook-style-xsl
|
|
|
|
BuildRequires: docbook-style-xsl
|
|
|
|
BuildRequires: libxslt
|
|
|
|
BuildRequires: libxslt
|
|
|
|
BuildRequires: libxml2
|
|
|
|
BuildRequires: libxml2
|
|
|
|
BuildRequires: chrpath
|
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: autoconf
|
|
|
|
|
|
|
|
%if !0%{?rhel}
|
|
|
|
|
|
|
|
BuildRequires: ocaml-ounit-devel
|
|
|
|
BuildRequires: ocaml-ounit-devel
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
%if %{with camomile}
|
|
|
|
%if %{with camomile}
|
|
|
|
BuildRequires: ocaml-camomile-devel >= 0.8.6-3
|
|
|
|
BuildRequires: ocaml-camomile-devel >= 0.8.6-3
|
|
|
|
BuildRequires: ocaml-camomile-data
|
|
|
|
BuildRequires: ocaml-camomile-data
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
BuildRequires: autoconf, automake
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with camomile}
|
|
|
|
%if %{with camomile}
|
|
|
|
# ocaml-gettext program needs camomile data files
|
|
|
|
# ocaml-gettext program needs camomile data files
|
|
|
|
Requires: ocaml-camomile-data
|
|
|
|
Requires: ocaml-camomile-data
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%global __ocaml_requires_opts -i Asttypes -i Parsetree
|
|
|
|
|
|
|
|
%global __ocaml_provides_opts -i Pr_gettext
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
%description
|
|
|
|
Ocaml-gettext provides support for internationalization of Ocaml
|
|
|
|
Ocaml-gettext provides support for internationalization of Ocaml
|
|
|
@ -62,10 +65,10 @@ Constraints :
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
# BZ 446919.
|
|
|
|
# BZ 446919.
|
|
|
|
Requires: ocaml-fileutils-devel >= 0.4.0
|
|
|
|
Requires: ocaml-fileutils-devel%{?_isa} >= 0.4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
%description devel
|
|
|
@ -76,7 +79,7 @@ developing applications that use %{name}.
|
|
|
|
%if %{with camomile}
|
|
|
|
%if %{with camomile}
|
|
|
|
%package camomile
|
|
|
|
%package camomile
|
|
|
|
Summary: Parts of %{name} which depend on Camomile
|
|
|
|
Summary: Parts of %{name} which depend on Camomile
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description camomile
|
|
|
|
%description camomile
|
|
|
@ -86,8 +89,9 @@ depend on Camomile.
|
|
|
|
|
|
|
|
|
|
|
|
%package camomile-devel
|
|
|
|
%package camomile-devel
|
|
|
|
Summary: Development files for %{name}-camomile
|
|
|
|
Summary: Development files for %{name}-camomile
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
|
|
|
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-camomile = %{version}-%{release}
|
|
|
|
Requires: %{name}-camomile%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
Requires: ocaml-camomile-devel%{?_isa}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description camomile-devel
|
|
|
|
%description camomile-devel
|
|
|
@ -98,15 +102,11 @@ signature files for developing applications that use
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{name}-%{version}
|
|
|
|
%autosetup -p1
|
|
|
|
%autopatch -p1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Remove dependency on batteries.
|
|
|
|
|
|
|
|
sed -i -e 's/batteries//' test/dune
|
|
|
|
|
|
|
|
sed -i -e 's/batteries//' test/test-stub/dune
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{without camomile}
|
|
|
|
%if %{without camomile}
|
|
|
|
# Remove dependency on camomile.
|
|
|
|
# Remove dependency on camomile.
|
|
|
|
|
|
|
|
rm -f gettext-camomile.opam
|
|
|
|
rm -r src/lib/gettext-camomile
|
|
|
|
rm -r src/lib/gettext-camomile
|
|
|
|
rm -r test/test-camomile
|
|
|
|
rm -r test/test-camomile
|
|
|
|
sed -i -e 's/camomile//' `find -name dune`
|
|
|
|
sed -i -e 's/camomile//' `find -name dune`
|
|
|
@ -114,63 +114,28 @@ sed -i -e 's/camomile//' `find -name dune`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%build
|
|
|
|
make build
|
|
|
|
%dune_build
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#check
|
|
|
|
|
|
|
|
# Tests require batteries, so they are disabled at present.
|
|
|
|
|
|
|
|
# Under discussion with upstream.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%install
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ocaml
|
|
|
|
%dune_install -s
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
sed -i '\@%{_bindir}@d;\@%{_mandir}@d' .ofiles-gettext
|
|
|
|
dune install --destdir=$RPM_BUILD_ROOT
|
|
|
|
cat .ofiles-gettext-stub >> .ofiles-gettext
|
|
|
|
|
|
|
|
cat .ofiles-gettext-stub-devel >> .ofiles-gettext-devel
|
|
|
|
|
|
|
|
|
|
|
|
# Remove this, we will use our own rules for documentation.
|
|
|
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT/usr/doc
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{without camomile}
|
|
|
|
%if %{with tests}
|
|
|
|
# If you use --without camomile but happen to have the camomile
|
|
|
|
%check
|
|
|
|
# packages installed then it will still build them.
|
|
|
|
%dune_check
|
|
|
|
rm -rf $RPM_BUILD_ROOT/%{_libdir}/ocaml/gettext-camomile
|
|
|
|
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%files -f .ofiles-gettext
|
|
|
|
%doc LICENSE.txt
|
|
|
|
%license LICENSE.txt
|
|
|
|
%{_libdir}/ocaml/gettext
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext-stub
|
|
|
|
|
|
|
|
%if %opt
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext/*.cmxa
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext/*/*.a
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext/*/*.cmxa
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext/*/*.cmx
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext-stub/*.a
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext-stub/*.cmxa
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext-stub/*.cmx
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext/*/*.ml
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext/*/*.mli
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext-stub/*.ml
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/stublibs/*.so
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%files devel -f .ofiles-gettext-devel
|
|
|
|
%doc README.md CHANGES.md THANKS TODO.md
|
|
|
|
%doc README.md CHANGES.md THANKS TODO.md
|
|
|
|
# %doc build/share/doc/html/*
|
|
|
|
|
|
|
|
%if %opt
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext/*.cmxa
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext/*/*.a
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext/*/*.cmxa
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext/*/*.cmx
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext-stub/*.a
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext-stub/*.cmxa
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext-stub/*.cmx
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext/*/*.ml
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext/*/*.mli
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext-stub/*.ml
|
|
|
|
|
|
|
|
%{_bindir}/ocaml-gettext
|
|
|
|
%{_bindir}/ocaml-gettext
|
|
|
|
%{_bindir}/ocaml-xgettext
|
|
|
|
%{_bindir}/ocaml-xgettext
|
|
|
|
%{_mandir}/man1/ocaml-gettext.1*
|
|
|
|
%{_mandir}/man1/ocaml-gettext.1*
|
|
|
@ -179,43 +144,85 @@ rm -rf $RPM_BUILD_ROOT/%{_libdir}/ocaml/gettext-camomile
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with camomile}
|
|
|
|
%if %{with camomile}
|
|
|
|
%files camomile
|
|
|
|
%files camomile -f .ofiles-gettext-camomile
|
|
|
|
%doc LICENSE.txt
|
|
|
|
%license LICENSE.txt
|
|
|
|
%{_libdir}/ocaml/gettext-camomile
|
|
|
|
|
|
|
|
%if %opt
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext-camomile/*.a
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext-camomile/*.cmxa
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext-camomile/*.cmx
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%exclude %{_libdir}/ocaml/gettext-camomile/*.mli
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files camomile-devel
|
|
|
|
%files camomile-devel -f .ofiles-gettext-camomile-devel
|
|
|
|
%doc README.md
|
|
|
|
%doc README.md
|
|
|
|
%if %opt
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext-camomile/*.a
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext-camomile/*.cmxa
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext-camomile/*.cmx
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%{_libdir}/ocaml/gettext-camomile/*.mli
|
|
|
|
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
* Fri Mar 11 2022 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-6
|
|
|
|
* Thu Oct 31 2024 Troy Dawson <tdawson@redhat.com> - 0.4.2-23
|
|
|
|
- Rebuild for EPEL
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
resolves: rhbz#2060850
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jun 25 2024 Troy Dawson <tdawson@redhat.com> - 0.4.2-22
|
|
|
|
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jun 19 2024 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-21
|
|
|
|
|
|
|
|
- OCaml 5.2.0 ppc64le fix
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed May 29 2024 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-20
|
|
|
|
|
|
|
|
- OCaml 5.2.0 for Fedora 41
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed May 8 2024 Jerry James <loganjerry@gmail.com> - 0.4.2-19
|
|
|
|
|
|
|
|
- Add patch to fix tests with OCaml 5.2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.2-19
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.2-18
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Dec 18 2023 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-17
|
|
|
|
|
|
|
|
- OCaml 5.1.1 + s390x code gen fix for Fedora 40
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Dec 12 2023 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-16
|
|
|
|
|
|
|
|
- OCaml 5.1.1 rebuild for Fedora 40
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Oct 05 2023 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-15
|
|
|
|
|
|
|
|
- OCaml 5.1 rebuild for Fedora 40
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.2-14
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jul 11 2023 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-13
|
|
|
|
|
|
|
|
- OCaml 5.0 rebuild for Fedora 39
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jul 10 2023 Jerry James <loganjerry@gmail.com> - 0.4.2-12
|
|
|
|
|
|
|
|
- OCaml 5.0.0 rebuild
|
|
|
|
|
|
|
|
- Convert License tag to SPDX
|
|
|
|
|
|
|
|
- Enable tests
|
|
|
|
|
|
|
|
- Use new dune macros
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jan 24 2023 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-11
|
|
|
|
|
|
|
|
- Rebuild OCaml packages for F38
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.2-10
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.2-9
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Jun 19 2022 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-8
|
|
|
|
|
|
|
|
- OCaml 4.14.0 rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Feb 04 2022 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-7
|
|
|
|
|
|
|
|
- OCaml 4.13.1 rebuild to remove package notes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.2-6
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.4.2-5
|
|
|
|
* Tue Oct 05 2021 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-5
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
- OCaml 4.13.1 build
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jun 23 2021 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-4
|
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.2-4
|
|
|
|
- Bump and rebuild
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
resolves: rhbz#1975309
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.4.2-3
|
|
|
|
* Tue Mar 30 2021 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-3
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
- Bump and rebuild for ELN.
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Mar 8 23:22:35 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-2
|
|
|
|
* Mon Mar 8 23:22:35 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 0.4.2-2
|
|
|
|
- Better handling of optional camomile subpackage.
|
|
|
|
- Better handling of optional camomile subpackage.
|
|
|
|