2020-10-15 19:09:17 +00:00
|
|
|
%?python_enable_dependency_generator
|
|
|
|
%define srcname nmstate
|
|
|
|
%define libname libnmstate
|
|
|
|
|
|
|
|
Name: nmstate
|
2022-03-10 22:32:34 +00:00
|
|
|
Version: 2.1.0
|
|
|
|
Release: 0.alpha.20220311.6f7c2be%{?dist}
|
2020-10-15 19:09:17 +00:00
|
|
|
Summary: Declarative network manager API
|
|
|
|
License: LGPLv2+
|
|
|
|
URL: https://github.com/%{srcname}/%{srcname}
|
2022-03-10 22:32:34 +00:00
|
|
|
Source0: %{url}/releases/download/v%{version}/%{srcname}-%{version}-alpha.20220311.6f7c2be.tar.gz
|
|
|
|
Source1: %{url}/releases/download/v%{version}/%{srcname}-%{version}-alpha.20220311.6f7c2be.tar.gz.asc
|
2020-10-15 19:09:17 +00:00
|
|
|
Source2: nmstate.gpg
|
2022-03-10 22:32:34 +00:00
|
|
|
Source3: nmstate-rust-vendor-%{version}-alpha.20220311.tar.xz
|
2020-10-15 19:09:17 +00:00
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
BuildRequires: gnupg2
|
2021-12-10 07:35:36 +00:00
|
|
|
BuildRequires: rust-toolset
|
|
|
|
BuildRequires: pkg-config
|
2020-10-15 19:09:17 +00:00
|
|
|
Requires: python3-setuptools
|
|
|
|
Requires: python3-%{libname} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
|
|
|
%description
|
|
|
|
Nmstate is a library with an accompanying command line tool that manages host
|
|
|
|
networking settings in a declarative manner and aimed to satisfy enterprise
|
|
|
|
needs to manage host networking through a northbound declarative API and multi
|
|
|
|
provider support on the southbound.
|
|
|
|
|
|
|
|
|
|
|
|
%package -n python3-%{libname}
|
|
|
|
Summary: nmstate Python 3 API library
|
2022-02-24 13:18:22 +00:00
|
|
|
BuildArch: noarch
|
2020-10-15 19:09:17 +00:00
|
|
|
Requires: NetworkManager-libnm >= 1:1.26.0
|
|
|
|
# Use Recommends for NetworkManager because only access to NM DBus is required,
|
|
|
|
# but NM could be running on a different host
|
|
|
|
Recommends: NetworkManager
|
|
|
|
# Avoid automatically generated profiles
|
|
|
|
Recommends: NetworkManager-config-server
|
|
|
|
Recommends: (nmstate-plugin-ovsdb if openvswitch)
|
|
|
|
# Use Suggests for NetworkManager-ovs and NetworkManager-team since it is only
|
|
|
|
# required for OVS and team support
|
|
|
|
Suggests: NetworkManager-ovs
|
|
|
|
Suggests: NetworkManager-team
|
|
|
|
# FIXME: Once upstream included nispor into requirement.txt, remove below line
|
|
|
|
Requires: python3dist(nispor)
|
|
|
|
|
|
|
|
%package -n nmstate-plugin-ovsdb
|
|
|
|
Summary: nmstate plugin for OVS database manipulation
|
2022-02-24 13:18:22 +00:00
|
|
|
BuildArch: noarch
|
2020-10-15 19:09:17 +00:00
|
|
|
Requires: python3-%{libname} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
%if 0%{?rhel}
|
|
|
|
# The python-openvswitch rpm package is not in the same repo with nmstate,
|
|
|
|
# require only if openvswitch is installed.
|
|
|
|
Requires: (python3dist(ovs) if openvswitch)
|
|
|
|
Recommends: python3dist(ovs)
|
|
|
|
%else
|
|
|
|
Requires: python3dist(ovs)
|
|
|
|
%endif
|
|
|
|
|
2021-12-10 07:35:36 +00:00
|
|
|
%package libs
|
|
|
|
Summary: C binding of nmstate
|
|
|
|
License: ASL 2.0
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: C binding development files of nmstate
|
|
|
|
License: ASL 2.0
|
|
|
|
Requires: nmstate-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
This package contains the C binding of nmstate.
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package contains the C binding development files of nmstate.
|
|
|
|
|
2020-10-15 19:09:17 +00:00
|
|
|
|
|
|
|
%description -n python3-%{libname}
|
|
|
|
This package contains the Python 3 library for Nmstate.
|
|
|
|
|
|
|
|
%description -n nmstate-plugin-ovsdb
|
|
|
|
This package contains the nmstate plugin for OVS database manipulation.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
gpg2 --import --import-options import-export,import-minimal %{SOURCE2} > ./gpgkey-mantainers.gpg
|
|
|
|
gpgv2 --keyring ./gpgkey-mantainers.gpg %{SOURCE1} %{SOURCE0}
|
|
|
|
%setup -q
|
|
|
|
|
2021-12-10 07:35:36 +00:00
|
|
|
pushd rust
|
|
|
|
# Source3 is vendored dependencies
|
|
|
|
%cargo_prep -V 3
|
|
|
|
|
|
|
|
# The cargo_prep will create `.cargo/config` which take precedence over
|
|
|
|
# `.cargo/config.toml` shipped by upstream which fix the SONAME of cdylib.
|
|
|
|
# To workaround that, merge upstream rustflags into cargo_prep created one.
|
|
|
|
_FLAGS=`sed -ne 's/rustflags = "\(.\+\)"/\1/p' .cargo/config.toml`
|
|
|
|
sed -i -e "s/rustflags = \[\(.\+\), \]$/rustflags = [\1, \"$_FLAGS\"]/" \
|
|
|
|
.cargo/config
|
|
|
|
rm .cargo/config.toml
|
|
|
|
|
|
|
|
popd
|
|
|
|
|
2020-10-15 19:09:17 +00:00
|
|
|
%build
|
|
|
|
%py3_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%py3_install
|
2021-12-10 07:35:36 +00:00
|
|
|
pushd rust
|
|
|
|
env SKIP_PYTHON_INSTALL=1 PREFIX=%{_prefix} LIBDIR=%{_libdir} %make_install
|
|
|
|
popd
|
2020-10-15 19:09:17 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%doc README.md
|
|
|
|
%doc examples/
|
|
|
|
%{_mandir}/man8/nmstatectl.8*
|
2021-09-23 15:35:04 +00:00
|
|
|
%{_mandir}/man8/nmstate-autoconf.8*
|
2020-10-15 19:09:17 +00:00
|
|
|
%{python3_sitelib}/nmstatectl
|
|
|
|
%{_bindir}/nmstatectl
|
2021-09-23 15:35:04 +00:00
|
|
|
%{_bindir}/nmstate-autoconf
|
2021-12-10 07:35:36 +00:00
|
|
|
%{_bindir}/nmstatectl-rust
|
2020-10-15 19:09:17 +00:00
|
|
|
|
|
|
|
%files -n python3-%{libname}
|
|
|
|
%license LICENSE
|
|
|
|
%{python3_sitelib}/%{libname}
|
|
|
|
%{python3_sitelib}/%{srcname}-*.egg-info/
|
|
|
|
%exclude %{python3_sitelib}/%{libname}/plugins/nmstate_plugin_*
|
|
|
|
%exclude %{python3_sitelib}/%{libname}/plugins/__pycache__/nmstate_plugin_*
|
|
|
|
|
|
|
|
%files -n nmstate-plugin-ovsdb
|
|
|
|
%{python3_sitelib}/%{libname}/plugins/nmstate_plugin_ovsdb*
|
|
|
|
%{python3_sitelib}/%{libname}/plugins/__pycache__/nmstate_plugin_ovsdb*
|
|
|
|
|
2021-12-10 07:35:36 +00:00
|
|
|
%files libs
|
|
|
|
%license rust/LICENSE
|
|
|
|
%{_libdir}/libnmstate.so.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%license LICENSE
|
|
|
|
%{_libdir}/libnmstate.so
|
|
|
|
%{_includedir}/nmstate.h
|
|
|
|
%{_libdir}/pkgconfig/nmstate.pc
|
|
|
|
|
|
|
|
%post libs
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%postun libs
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
2020-10-15 19:09:17 +00:00
|
|
|
%changelog
|
2022-03-10 22:32:34 +00:00
|
|
|
* Fri Mar 11 2022 Gris Ge <fge@redhat.com> - 2.1.0-0.alpha.20220311.6f7c2be
|
|
|
|
Upgrade to nmstate-2.1.0-0.alpha.20220311.6f7c2be
|
|
|
|
|
2022-02-24 13:18:22 +00:00
|
|
|
* Thu Feb 24 2022 Gris Ge <fge@redhat.com> - 2.0.0-2
|
|
|
|
- Force python3-libnmstate and nmstate-plugin-ovsdb as noarch. RHBZ#1996575
|
|
|
|
|
2022-02-16 09:18:47 +00:00
|
|
|
* Wed Feb 16 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.0.0-1
|
|
|
|
- Upgrade to 2.0.0. RHBZ#1996575
|
|
|
|
|
2022-01-13 12:06:05 +00:00
|
|
|
* Thu Jan 13 2022 Gris Ge <fge@redhat.com> - 2.0.0-0.7.alpha6
|
|
|
|
- Add gating.yaml. RHBZ#1996575
|
|
|
|
|
2022-01-13 07:15:19 +00:00
|
|
|
* Wed Jan 12 2022 Gris Ge <fge@redhat.com> - 2.0.0-0.6.alpha6
|
|
|
|
- Upgrade to 2.0.0. alpha 6. Resolves: RHBZ#1996575
|
|
|
|
|
2021-12-16 11:03:45 +00:00
|
|
|
* Thu Dec 16 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.0.0-0.5.alpha5
|
|
|
|
- Upgrade to 2.0.0 alpha 5. Resolves: RHBZ#1996575
|
|
|
|
- Fix release number.
|
|
|
|
|
2021-12-10 07:35:36 +00:00
|
|
|
* Thu Dec 09 2021 Gris Ge <fge@redhat.com> - 2.0.0-0.1.alpha4
|
|
|
|
- Upgrade to 2.0.0 alpha 4. Resolves: RHBZ#1996575
|
|
|
|
|
2021-09-23 15:35:04 +00:00
|
|
|
* Thu Sep 23 2021 Ana Cabral <acabral@redhat.com> - 2.0.0-0.4.alpha3
|
|
|
|
- Upgrade to 2.0.0 alpha 3. Resolves: RHBZ#1996575
|
|
|
|
- Remove connection renaming behaviour. Resolves: RHBZ#1998222
|
|
|
|
- Add prefixes to OVS bridges and interfaces connections. Resolves: RHBZ#1998218
|
|
|
|
- Improve OVS bridge start with nmstate. Resolves: RHBZ#1660250
|
|
|
|
|
2021-08-09 22:33:37 +00:00
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.0.0-0.3.alpha2
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
2021-07-14 07:09:52 +00:00
|
|
|
* Wed Jul 14 2021 Gris Ge <fge@redhat.com> - 2.0.0-0.2.alpha2
|
|
|
|
- Upgrade to 2.0.0 alpha2
|
|
|
|
|
2021-07-02 14:10:13 +00:00
|
|
|
* Fri Jul 02 2021 Wen Liang <wenliang@redhat.com> - 2.0.0-0.1
|
|
|
|
- Upgrade to 2.0.0 alpha1
|
|
|
|
|
2021-06-17 13:47:16 +00:00
|
|
|
* Fri Jun 18 2021 Wen Liang <wenliang@redhat.com> - 1.1.0-0.3
|
|
|
|
- Fix the 'Release' error. Resolves: RHBZ#1962381
|
|
|
|
|
2021-06-10 11:25:36 +00:00
|
|
|
* Thu Jun 10 2021 Wen Liang <wenliang@redhat.com> - 1.1.0-0.3
|
|
|
|
- Upgrade to 1.1.0 alpha3
|
|
|
|
|
2021-05-27 21:24:16 +00:00
|
|
|
* Thu May 27 2021 Wen Liang <wenliang@redhat.com> - 1.1.0-0.1
|
|
|
|
- Upgrade to 1.1.0 alpha1
|
|
|
|
|
2021-04-16 02:27:34 +00:00
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.0.2-3
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
2021-02-21 19:55:20 +00:00
|
|
|
* Sun Feb 21 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-2
|
2021-07-14 07:09:52 +00:00
|
|
|
- Add missing source to source file
|
2021-02-21 19:55:20 +00:00
|
|
|
|
|
|
|
* Sun Feb 21 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-1
|
|
|
|
- Upgrade to 1.0.2
|
|
|
|
|
2021-02-04 14:01:26 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-18 23:36:17 +00:00
|
|
|
* Tue Jan 19 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.1-1
|
|
|
|
- Upgrade to 1.0.1
|
|
|
|
|
2020-12-10 00:29:46 +00:00
|
|
|
* Tue Dec 08 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.0-1
|
|
|
|
- Upgrade to 1.0.0
|
|
|
|
|
2020-10-27 20:36:32 +00:00
|
|
|
* Thu Oct 22 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.1-1
|
|
|
|
- Upgrade to 0.4.1
|
|
|
|
|
2020-10-15 19:09:17 +00:00
|
|
|
* Tue Oct 13 2020 Gris Ge <fge@redhat.com> - 0.4.0-2
|
|
|
|
- Fix the ELN build by put ovs stuff as soft requirement.
|
|
|
|
|
|
|
|
* Sun Sep 20 2020 Gris Ge <fge@redhat.com> - 0.4.0-1
|
|
|
|
- Upgrade to 0.4.0
|
|
|
|
|
|
|
|
* Mon Aug 31 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.5-1
|
|
|
|
- Update to 0.3.5
|
|
|
|
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
* Sat Jul 25 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.4-1
|
|
|
|
- Update to 0.3.4
|
|
|
|
- Sync. with upstream specfile
|
|
|
|
|
|
|
|
* Thu Jul 02 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.3-1
|
|
|
|
- Update to 0.3.3
|
|
|
|
|
|
|
|
* Tue Jun 16 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.2-1
|
|
|
|
- Update to 0.3.2
|
|
|
|
- Sync with upstream specfile
|
|
|
|
|
|
|
|
* Tue Jun 09 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.1-1
|
|
|
|
- Update to 0.3.1
|
|
|
|
|
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.3.0-5
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
|
|
|
* Fri May 08 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.0-4
|
|
|
|
- Fix source path
|
|
|
|
|
|
|
|
* Fri May 08 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.0-3
|
|
|
|
- Fix signature verification
|
|
|
|
|
|
|
|
* Fri May 08 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.0-2
|
|
|
|
- Update signature verification
|
|
|
|
|
|
|
|
* Fri May 08 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.0-1
|
|
|
|
- Update to 0.3.0
|
|
|
|
- Sync with upstream specfile
|
|
|
|
|
|
|
|
* Tue Apr 21 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.10-1
|
|
|
|
- Update to 0.2.10
|
|
|
|
|
|
|
|
* Thu Mar 26 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.9-1
|
|
|
|
- Update to 0.2.9
|
|
|
|
|
|
|
|
* Fri Mar 13 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.8-1
|
|
|
|
- Update to 0.2.8
|
|
|
|
|
|
|
|
* Wed Mar 04 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.7-1
|
|
|
|
- Update to 0.2.7
|
|
|
|
|
|
|
|
* Mon Feb 24 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.6-1
|
|
|
|
- Update to 0.2.6
|
|
|
|
|
|
|
|
* Wed Feb 19 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.5-1
|
|
|
|
- Update to 0.2.5
|
|
|
|
- Sync with upstream specfile
|
|
|
|
|
|
|
|
* Wed Feb 12 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.4-1
|
|
|
|
- Update to 0.2.4
|
|
|
|
|
|
|
|
* Wed Feb 05 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.3-1
|
|
|
|
- Update to 0.2.3
|
|
|
|
|
|
|
|
* Tue Feb 04 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.2-1
|
|
|
|
- Update to 0.2.2
|
|
|
|
- Sync with upstream specfile
|
|
|
|
|
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
* Tue Jan 14 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.1-2
|
|
|
|
- Fix changelog
|
|
|
|
|
|
|
|
* Tue Jan 14 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.1-1
|
|
|
|
- Update to 0.2.1
|
|
|
|
|
|
|
|
* Tue Dec 03 2019 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.0-2
|
|
|
|
- Fix changelog
|
|
|
|
|
|
|
|
* Tue Dec 03 2019 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.0-1
|
|
|
|
- Update to 0.2.0
|
|
|
|
|
|
|
|
* Mon Dec 02 2019 Till Maas <opensource@till.name> - 0.1.1-1
|
|
|
|
- Update to 0.1.1
|
|
|
|
- Sync with upstream specfile
|
|
|
|
|
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.0.8-3
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.0.8-2
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
|
|
|
* Fri Jul 26 2019 Gris Ge <fge@redhat.com> - 0.0.8-1
|
|
|
|
- Upgrade to 0.0.8.
|
|
|
|
|
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.7-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri Jun 14 2019 Gris Ge <fge@redhat.com> - 0.0.7-2
|
|
|
|
- Workaround broken dbus-python packaging:
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1654774
|
|
|
|
|
|
|
|
* Fri Jun 14 2019 Gris Ge <fge@redhat.com> - 0.0.7-1
|
|
|
|
- Upgrade to 0.0.7
|
|
|
|
|
|
|
|
* Sun May 05 2019 Gris Ge <fge@redhat.com> - 0.0.6-1
|
|
|
|
- Upgrade to 0.0.6
|
|
|
|
|
|
|
|
* Fri Apr 12 2019 Gris Ge <fge@redhat.com - 0.0.5-2
|
|
|
|
- Add missing runtime requirement: python3-dbus
|
|
|
|
|
|
|
|
* Tue Mar 12 2019 Gris Ge <fge@redhat.com> - 0.0.5-1
|
|
|
|
- Upgrade to 0.0.5
|
|
|
|
|
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
* Tue Jan 29 2019 Till Maas <opensource@till.name> - 0.0.4-2
|
|
|
|
- Sync with upstream spec
|
|
|
|
- Use Recommends for NetworkManager
|
|
|
|
- Add Suggests for NetworkManager-ovs
|
|
|
|
- package examples as doc
|
|
|
|
|
|
|
|
* Thu Jan 24 2019 Gris Ge <fge@redhat.com> - 0.0.4-1
|
|
|
|
- Upgrade to 0.0.4.
|
|
|
|
|
|
|
|
* Mon Jan 21 2019 Gris Ge <fge@redhat.com> - 0.0.3-3
|
|
|
|
- Add missing runtime dependency for nmstatectl.
|
|
|
|
|
|
|
|
* Wed Jan 02 2019 Gris Ge <fge@redhat.com> - 0.0.3-2
|
|
|
|
- Add source file PGP verification.
|
|
|
|
|
|
|
|
* Thu Dec 20 2018 Gris Ge <fge@redhat.com> - 0.0.3-1
|
|
|
|
- Upgrade to 0.0.3.
|
|
|
|
|
|
|
|
* Mon Dec 03 2018 Gris Ge <fge@redhat.com> - 0.0.2-2
|
|
|
|
- Trival RPM SPEC fix.
|
|
|
|
|
|
|
|
* Wed Nov 28 2018 Gris Ge <fge@redhat.com> - 0.0.2-1
|
|
|
|
- Initial release.
|