Blame SPECS/nmstate.spec

9b6c93
%?python_enable_dependency_generator
9b6c93
%define srcname nmstate
9b6c93
%define libname libnmstate
9b6c93
9b6c93
Name:           nmstate
e10733
Version:        1.2.1
e10733
Release:        1%{?dist}
9b6c93
Summary:        Declarative network manager API
1380ab
License:        LGPLv2+
9b6c93
URL:            https://github.com/%{srcname}/%{srcname}
1380ab
Source0:        %{url}/releases/download/v%{version}/%{srcname}-%{version}.tar.gz
1380ab
Source1:        %{url}/releases/download/v%{version}/%{srcname}-%{version}.tar.gz.asc
47b589
Source2:        https://www.nmstate.io/nmstate.gpg
e10733
Source3:        nmstate-rust-vendor-%{version}.tar.xz
9b6c93
BuildRequires:  python3-devel
9b6c93
BuildRequires:  python3-setuptools
9b6c93
BuildRequires:  gnupg2
e10733
BuildRequires:  rust-toolset
e10733
BuildRequires:  pkg-config
9b6c93
Requires:       python3-setuptools
9b6c93
Requires:       python3-%{libname} = %{?epoch:%{epoch}:}%{version}-%{release}
9b6c93
9b6c93
%description
1380ab
Nmstate is a library with an accompanying command line tool that manages host
9b6c93
networking settings in a declarative manner and aimed to satisfy enterprise
9b6c93
needs to manage host networking through a northbound declarative API and multi
9b6c93
provider support on the southbound.
9b6c93
9b6c93
9b6c93
%package -n python3-%{libname}
9b6c93
Summary:        nmstate Python 3 API library
e10733
BuildArch:      noarch
c204d1
Requires:       NetworkManager-libnm >= 1:1.26.0
9b6c93
# Use Recommends for NetworkManager because only access to NM DBus is required,
9b6c93
# but NM could be running on a different host
9b6c93
Recommends:     NetworkManager
1380ab
# Avoid automatically generated profiles
1380ab
Recommends:     NetworkManager-config-server
47b589
# Use Suggests for NetworkManager-ovs and NetworkManager-team since it is only
47b589
# required for OVS and team support
9b6c93
Suggests:       NetworkManager-ovs
47b589
Suggests:       NetworkManager-team
c204d1
Requires:       nispor
c204d1
Requires:       python3dist(varlink)
9b6c93
47b589
%package -n nmstate-plugin-ovsdb
47b589
Summary:        nmstate plugin for OVS database manipulation
e10733
BuildArch:      noarch
47b589
Requires:       python3-%{libname} = %{?epoch:%{epoch}:}%{version}-%{release}
47b589
# The python-openvswitch rpm pacakge is not in the same repo with nmstate,
47b589
# hence state it as Recommends, no requires.
47b589
Recommends:     python3dist(ovs)
9b6c93
e10733
e10733
%package libs
e10733
Summary:        C binding of nmstate
e10733
License:        ASL 2.0
e10733
e10733
%package devel
e10733
Summary:        C binding development files of nmstate
e10733
License:        ASL 2.0
e10733
Requires:       nmstate-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
e10733
e10733
%description libs
e10733
This package contains the C binding of nmstate.
e10733
e10733
%description devel
e10733
This package contains the C binding development files of nmstate.
e10733
9b6c93
%description -n python3-%{libname}
9b6c93
This package contains the Python 3 library for nmstate.
9b6c93
47b589
%description -n nmstate-plugin-ovsdb
47b589
This package contains the nmstate plugin for OVS database manipulation.
47b589
9b6c93
%prep
47b589
gpg2 --import --import-options import-export,import-minimal %{SOURCE2} > ./gpgkey-mantainers.gpg
47b589
gpgv2 --keyring ./gpgkey-mantainers.gpg %{SOURCE1} %{SOURCE0}
1380ab
%autosetup -p1
9b6c93
e10733
pushd rust
e10733
# Source3 is vendored dependencies
e10733
%cargo_prep -V 3
e10733
e10733
# The cargo_prep will create `.cargo/config` which take precedence over
e10733
# `.cargo/config.toml` shipped by upstream which fix the SONAME of cdylib.
e10733
# To workaround that, merge upstream rustflags into cargo_prep created one.
e10733
_FLAGS=`sed -ne 's/rustflags = "\(.\+\)"/\1/p' .cargo/config.toml`
e10733
sed -i -e "s/rustflags = \[\(.\+\), \]$/rustflags = [\1, \"$_FLAGS\"]/" \
e10733
    .cargo/config
e10733
rm .cargo/config.toml
e10733
e10733
popd
e10733
9b6c93
%build
9b6c93
%py3_build
9b6c93
e10733
pushd rust
e10733
make
e10733
popd
e10733
9b6c93
%install
9b6c93
%py3_install
e10733
pushd rust
e10733
env SKIP_PYTHON_INSTALL=1 PREFIX=%{_prefix} LIBDIR=%{_libdir} %make_install
e10733
popd
9b6c93
9b6c93
%files
9b6c93
%doc README.md
9b6c93
%doc examples/
1380ab
%{_mandir}/man8/nmstatectl.8*
800f6c
%{_mandir}/man8/nmstate-autoconf.8*
9b6c93
%{python3_sitelib}/nmstatectl
9b6c93
%{_bindir}/nmstatectl
e10733
%{_bindir}/nmstatectl-rust
800f6c
%{_bindir}/nmstate-autoconf
9b6c93
9b6c93
%files -n python3-%{libname}
9b6c93
%license LICENSE
9b6c93
%{python3_sitelib}/%{libname}
9b6c93
%{python3_sitelib}/%{srcname}-*.egg-info/
47b589
%exclude %{python3_sitelib}/%{libname}/plugins/nmstate_plugin_*
47b589
%exclude %{python3_sitelib}/%{libname}/plugins/__pycache__/nmstate_plugin_*
47b589
47b589
%files -n nmstate-plugin-ovsdb
47b589
%{python3_sitelib}/%{libname}/plugins/nmstate_plugin_ovsdb*
47b589
%{python3_sitelib}/%{libname}/plugins/__pycache__/nmstate_plugin_ovsdb*
9b6c93
e10733
%files libs
e10733
%license rust/LICENSE
e10733
%{_libdir}/libnmstate.so.*
e10733
e10733
%files devel
e10733
%license LICENSE
e10733
%{_libdir}/libnmstate.so
e10733
%{_includedir}/nmstate.h
e10733
%{_libdir}/pkgconfig/nmstate.pc
e10733
e10733
%post libs
e10733
/sbin/ldconfig
e10733
e10733
%postun libs
e10733
/sbin/ldconfig
e10733
9b6c93
%changelog
e10733
* Mon Feb 14 2022 Gris Ge <fge@redhat.com> - 1.2.1-1
e10733
- Upgrade to 1.2.1. RHBZ#1996618
e10733
e10733
* Thu Jan 27 2022 Gris Ge <ferferna@redhat.com> - 1.2.1-0.2.alpha2
e10733
- Upgrade to 1.2.1 alpha2. RHBZ#1996618
e10733
e10733
* Thu Jan 13 2022 Gris Ge <fge@redhat.com> - 1.2.1-0.1.alpha1
e10733
- Upgrade to 1.2.1 alpha1. RHBZ#1996618
e10733
e10733
* Thu Dec 16 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.2.0-1
e10733
- Upgrade to 1.2.0. RHBZ#1996618
e10733
e10733
* Thu Dec 09 2021 Gris Ge <fge@redhat.com> - 1.2.0-0.1.alpha2
e10733
- Upgrade to 1.2.0 alpha2. RHBZ#1996618
e10733
e10733
* Tue Oct 12 2021 Gris Ge <fge@redhat.com> - 1.2.0-0.1.alpha1
e10733
- Upgrade to 1.2.0 alpha1.
e10733
e10733
* Wed Sep 15 2021 Ana Cabral <acabral@redhat.com> - 1.1.1-0.1.alpha1
e10733
- Upgrade to 1.1.1 alpha1.
e10733
- Canonicalize ipv6 addresses for dns nameservers. RHBZ#1911241
e10733
- Throw better error when peer is missing for veth interfaces. RHBZ#1973973
e10733
800f6c
* Tue Jul 27 2021 Gris Ge <fge@redhat.com> - 1.1.0-3
800f6c
- Fix state=ignore for OVS interface. RHBZ#1944054
800f6c
- Fix verification for next hop address 0.0.0.0. RHBZ#1985879
800f6c
800f6c
* Fri Jul 23 2021 Gris Ge <fge@redhat.com> - 1.1.0-2
800f6c
- Preserving existing ethtool settings. RHBZ#1984764
800f6c
800f6c
* Thu Jul 15 2021 Gris Ge <fge@redhat.com> - 1.1.0-1
800f6c
- Upgrade to 1.1.0.
800f6c
800f6c
* Fri Jul 09 2021 Gris Ge <fge@redhat.com> - 1.1.0-0.7.alpha7
800f6c
- Upgarde to 1.1.0 alpha7.
800f6c
800f6c
* Thu Jul 01 2021 Gris Ge <fge@redhat.com> - 1.1.0-0.6.alpha6
800f6c
- Upgrade to 1.1.0 alpha6.
800f6c
800f6c
* Mon Jun 21 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.1.0-0.5.alpha4
800f6c
- Upgrade to 1.1.0 alpha4.
800f6c
800f6c
* Wed Jun 16 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.1.0-0.4.alpha3
800f6c
- Rebuild to introduce CI gating tier1 tests. RHBZ#1813357
800f6c
800f6c
* Tue Jun 08 2021 Gris Ge <fge@redhat.com> - 1.1.0-0.3.alpha3
800f6c
- Upgrade to 1.1.0 alpha3.
800f6c
800f6c
* Mon Jun 07 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.1.0-0.2
800f6c
- Upgrade to 1.1.0 alpha2.
800f6c
800f6c
* Wed May 19 2021 Wen Liang <wenliang@redhat.com> - 1.1.0-0.1
800f6c
- Upgrade to 1.1.0 alpha1.
800f6c
800f6c
* Tue Apr 20 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.3-1
800f6c
- Upgrade to 1.0.3. RHBZ#1942458
800f6c
800f6c
* Fri Mar 26 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-6
800f6c
- Rebuild for RHEL 8.5. RHBZ#1935710
800f6c
800f6c
* Fri Mar 26 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-5
800f6c
- New patch for fixing unmanaged interfaces being managed. RHBZ#1935710
800f6c
800f6c
* Tue Feb 23 2021 Gris Ge <fge@redhat.com> - 1.0.2-4
800f6c
- New patch for SRIOV decrease VF amount. RHBZ#1931355
800f6c
800f6c
* Tue Feb 23 2021 Gris Ge <fge@redhat.com> - 1.0.2-3
800f6c
- Fix actiation failure when decrease VF mount on i40e. RHBZ#1931355
800f6c
800f6c
* Tue Feb 23 2021 Gris Ge <fge@redhat.com> - 1.0.2-2
800f6c
- Fix nmstatectl return code of `set` command. RHBZ#1931751
800f6c
c204d1
* Fri Feb 19 2021 Gris Ge <fge@redhat.com> - 1.0.2-1
c204d1
- Upgrade to 1.0.2.
c204d1
c204d1
* Wed Feb 10 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-0.3
c204d1
- Fix sources name
c204d1
c204d1
* Wed Feb 10 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-0.2
c204d1
- Upgrade to 1.0.2 alpha 2
c204d1
c204d1
* Tue Jan 26 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-0.1
c204d1
- Upgrade to 1.0.2 alpha 1
c204d1
c204d1
* Tue Jan 19 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.1-1
c204d1
- Upgrade to 1.0.1. RHBZ#1881287
c204d1
c204d1
* Tue Jan 05 2021 Gris Ge <fge@redhat.com> - 1.0.1-0.1
c204d1
- Upgrade to 1.0.1 alpha 1
c204d1
c204d1
* Tue Dec 08 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.0-1
c204d1
- Upgrade to 1.0.0
c204d1
c204d1
* Mon Nov 16 2020 Gris Ge <fge@redhat.com> - 1.0.0-0.1
c204d1
- Upgrade to 1.0.0 alpha 1
c204d1
c204d1
* Wed Oct 28 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.1-2
c204d1
- Allow VRF port to hold IP information
c204d1
c204d1
* Thu Oct 22 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.1-1
c204d1
- Upgrade to 0.4.1
c204d1
c204d1
* Tue Oct 20 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.0-3
c204d1
- Add nispor as a dependency for CI gating
c204d1
c204d1
* Tue Oct 20 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.0-2
c204d1
- Rebuild for CI gating
c204d1
- Remove old patches from the repository
c204d1
c204d1
* Mon Sep 14 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.0-1
c204d1
- Upgrade to 0.4.0
c204d1
- Sync. up with upstream spec file.
c204d1
c204d1
* Tue Aug 18 2020 Gris Ge <fge@redhat.com> - 0.3.4-12
c204d1
- New patch: OVSDB: Allowing remove all OVS ports. RHBZ#1869345
c204d1
c204d1
* Tue Aug 18 2020 Gris Ge <fge@redhat.com> - 0.3.4-11
c204d1
- OVSDB: Allowing remove all OVS ports. RHBZ#1869345
c204d1
c204d1
* Thu Aug 06 2020 Gris Ge <fge@redhat.com> - 0.3.4-10
c204d1
- OVSDB: Preserv old external_ids. RHBZ#1866269
c204d1
c204d1
* Tue Aug 04 2020 Gris Ge <fge@redhat.com> - 0.3.4-9
c204d1
- Fix converting memory only profile to persistent. RHBZ#1859844
c204d1
c204d1
* Mon Aug 03 2020 Gris Ge <fge@redhat.com> - 0.3.4-8
c204d1
- Fix failure when adding ovs bond to existing bridge. RHBZ#1858758
c204d1
c204d1
* Thu Jul 30 2020 Gris Ge <fge@redhat.com> - 0.3.4-7
c204d1
- Remove existing inactivate NM profiles. RHBZ#1862025
c204d1
c204d1
* Wed Jul 29 2020 Gris Ge <fge@redhat.com> - 0.3.4-6
c204d1
- New build to retrigger the CI gating.
c204d1
c204d1
* Wed Jul 29 2020 Gris Ge <fge@redhat.com> - 0.3.4-5
c204d1
- Use new patch. RHBZ#1861668
c204d1
c204d1
* Wed Jul 29 2020 Gris Ge <fge@redhat.com> - 0.3.4-4
c204d1
- Ignore unknown interface. RHBZ#1861668
c204d1
c204d1
* Tue Jul 28 2020 Gris Ge <fge@redhat.com> - 0.3.4-3
c204d1
- Add support NetworkManaged exteranl managed interface. RHBZ#1861263
c204d1
c204d1
* Tue Jul 28 2020 Gris Ge <fge@redhat.com> - 0.3.4-2
c204d1
- Hide MTU for OVS patch port. RHBZ#1858762
c204d1
c204d1
* Sat Jul 25 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.4-1
c204d1
- Upgrade to 0.3.4
c204d1
c204d1
* Fri Jul 24 2020 Gris Ge <fge@redhat.com> - 0.3.3-3
c204d1
- Allowing child been marked absent. RHBZ#1859148
c204d1
c204d1
* Mon Jul 06 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.3-2
c204d1
- Fix bug 1850698
c204d1
c204d1
* Thu Jul 02 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.3-1
c204d1
- Upgrade to 0.3.3
c204d1
47b589
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-6
47b589
- Improve performance by remove unneeded calls. RHBZ#1820009
47b589
47b589
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-5
47b589
- Sort the pretty state with priority. RHBZ#1806474
47b589
47b589
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-4
47b589
- Canonicalize IP address. RHBZ#1816612
47b589
47b589
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-3
47b589
- Improve VLAN MTU error message. RHBZ#1788763
47b589
47b589
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-2
47b589
- Fix bug 1850698
47b589
47b589
* Mon Jun 15 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.2-1
47b589
- Upgrade to 0.3.2
47b589
- Sync. up with upstream spec file
47b589
47b589
* Thu Jun 11 2020 Gris Ge <fge@redhat.com> - 0.3.1-1
47b589
- Upgrade to 0.3.1
47b589
47b589
* Wed May 13 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.0-1
47b589
- Upgrade to 0.3.0
47b589
- Sync. up with upstream spec file.
47b589
- Update signature verification.
47b589
47b589
* Tue Mar 31 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.9-1
47b589
- Upgrade to 0.2.9
47b589
47b589
* Wed Mar 25 2020 Gris Ge <fge@redhat.com> - 0.2.6-6
47b589
- Support 3+ DNS name server(IPv4 only or IPv6 only). RHBZ #1816043
47b589
47b589
* Fri Mar 20 2020 Gris Ge <fge@redhat.com> - 0.2.6-5
47b589
- Support static DNS with DHCP. RHBZ #1815112
47b589
47b589
* Thu Mar 12 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.6-4.8
47b589
- Fix bond mac and options regression. RHBZ #1809330
47b589
47b589
* Mon Mar 09 2020 Gris Ge <fge@redhat.com> - 0.2.6-3.8
47b589
- Fix change bond mode. RHBZ #1809330
47b589
47b589
* Mon Mar 02 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.6-2.7
47b589
- Fix cmd stuck when trying to create ovs-bond. RHBZ #1806249.
47b589
47b589
* Tue Feb 25 2020 Gris Ge <fge@redhat.com> - 0.2.6-1
47b589
- Upgrade to 0.2.6
47b589
47b589
* Thu Feb 20 2020 Gris Ge <fge@redhat.com> - 0.2.5-1
47b589
- Upgrade to 0.2.5
47b589
47b589
* Thu Feb 13 2020 Gris Ge <fge@redhat.com> - 0.2.4-2
47b589
- Fix failure when editing existing OVS interface. RHBZ #1786935
47b589
47b589
* Thu Feb 13 2020 Gris Ge <fge@redhat.com> - 0.2.4-1
47b589
- Upgrade to 0.2.4
47b589
47b589
* Wed Feb 05 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.3-1
47b589
- Upgrade to 0.2.3
47b589
47b589
* Tue Feb 04 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.2-3
47b589
- Fix the incorrect source
47b589
47b589
* Tue Feb 04 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.2-2
47b589
- Upgrade to 0.2.2
47b589
47b589
* Wed Jan 22 2020 Gris Ge <fge@redhat.com> - 0.2.0-3.1
47b589
- Fix the memeory leak of NM.Client. RHBZ #1784707
47b589
1380ab
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.2.0-2
1380ab
- Fix the incorrect source tarbal.
1380ab
1380ab
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.2.0-1
1380ab
- Upgrade to nmstate 0.2.0
1380ab
1380ab
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.1.1-4
1380ab
- Fix the problem found by CI gating.
1380ab
1380ab
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.1.1-3
1380ab
- Bump dist number as RHEL 8.1.1 took 0.1.1-2.
1380ab
1380ab
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.1.1-2
1380ab
- Upgrade to nmstate 0.1.1.
1380ab
1380ab
* Tue Sep 10 2019 Gris Ge <fge@redhat.com> - 0.0.8-15
1380ab
- Detach slaves without deleting them: RHBZ #1749632
1380ab
1380ab
* Fri Sep 06 2019 Gris Ge <fge@redhat.com> - 0.0.8-14
1380ab
- Preserve (dynamic) IPv6 address base on MAC address: RHBZ #1748825
1380ab
1380ab
* Fri Sep 06 2019 Gris Ge <fge@redhat.com> - 0.0.8-13
1380ab
- Prioritize master interfaces activaction: RHBZ #1749314
1380ab
1380ab
* Mon Sep 02 2019 Gris Ge <fge@redhat.com> - 0.0.8-12
1380ab
- Fix slave activatoin race: RHBZ #1741440
1380ab
1380ab
* Mon Sep 02 2019 Gris Ge 
1380ab
- Add NetworkManager-config-server dependency: Fix RHBZ #1740085
1380ab
1380ab
* Thu Aug 15 2019 Gris Ge <fge@redhat.com> - 0.0.8-10
1380ab
- Fix RHBZ #1740125
1380ab
1380ab
* Wed Aug 14 2019 Gris Ge <fge@redhat.com> - 0.0.8-9
1380ab
- Fix RHBZ #1741049
1380ab
1380ab
* Wed Aug 14 2019 Gris Ge <fge@redhat.com> - 0.0.8-8
1380ab
- Fix RHBZ #1740584
1380ab
1380ab
* Tue Aug 13 2019 Gris Ge <fge@redhat.com> - 0.0.8-7
1380ab
- Fix RHBZ #1740554
1380ab
1380ab
* Tue Aug 13 2019 Gris Ge <fge@redhat.com> - 0.0.8-6
1380ab
- Bump release tag as CNV took the -5.
1380ab
1380ab
* Tue Aug 13 2019 Gris Ge <fge@redhat.com> - 0.0.8-5
1380ab
- Bump release tag as CNV took the -4.
1380ab
1380ab
* Tue Aug 13 2019 Gris Ge <fge@redhat.com> - 0.0.8-4
1380ab
- Disable reapply on ipv6 to fix bug 1738101.
1380ab
1380ab
* Fri Jul 26 2019 Gris Ge <fge@redhat.com> - 0.0.8-3
1380ab
- Fix the license to meet Fedora/RHEL guideline.
1380ab
1380ab
* Fri Jul 26 2019 Gris Ge <fge@redhat.com> - 0.0.8-2
1380ab
- Relicense to LGPL2.1+.
1380ab
1380ab
* Fri Jul 26 2019 Gris Ge <fge@redhat.com> - 0.0.8-1
1380ab
- Upgrade to 0.0.8.
1380ab
9b6c93
* Fri Jun 14 2019 Gris Ge <fge@redhat.com> - 0.0.7-1
9b6c93
- Upgrade to 0.0.7.
9b6c93
9b6c93
* Mon Apr 22 2019 Gris Ge <fge@redhat.com> - 0.0.5-3
9b6c93
- Add missing runtime dependency.
9b6c93
9b6c93
* Thu Mar 21 2019 Gris Ge <fge@redhat.com> - 0.0.5-2
9b6c93
- Rebuild to enable CI testing.
9b6c93
9b6c93
* Mon Mar 18 2019 Gris Ge <fge@redhat.com> - 0.0.5-1
9b6c93
- Initial release