import rhn-virtualization-5.4.70-4.module+el8.1.0+3115+d1f204ad
This commit is contained in:
commit
a9ebd52ce0
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SOURCES/rhn-virtualization-5.4.70.tar.gz
|
||||
1
.rhn-virtualization.metadata
Normal file
1
.rhn-virtualization.metadata
Normal file
@ -0,0 +1 @@
|
||||
b32fb1460ae99a0602349695f391b3fe0c95a29b SOURCES/rhn-virtualization-5.4.70.tar.gz
|
||||
@ -0,0 +1,23 @@
|
||||
diff --git a/rhn-virtualization.spec b/rhn-virtualization.spec
|
||||
index 1cca4a6..30a6ebc 100644
|
||||
--- a/rhn-virtualization.spec
|
||||
+++ b/rhn-virtualization.spec
|
||||
@@ -12,7 +12,7 @@
|
||||
Name: rhn-virtualization
|
||||
Summary: RHN/Spacewalk action support for virtualization
|
||||
Version: 5.4.70
|
||||
-Release: 1%{?dist}
|
||||
+Release: 2%{?dist}
|
||||
|
||||
License: GPLv2
|
||||
URL: https://github.com/spacewalkproject/spacewalk
|
||||
@@ -266,6 +266,9 @@ fi
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
+* Mon Mar 05 2018 Tomas Kasparek <tkasparek@redhat.com> 5.4.70-2
|
||||
+- rebuild for rhel8
|
||||
+
|
||||
* Fri Feb 09 2018 Michael Mraka <michael.mraka@redhat.com> 5.4.70-1
|
||||
- remove install/clean section initial cleanup
|
||||
- removed Group from specfile
|
||||
@ -0,0 +1,32 @@
|
||||
diff --git a/rhn-virtualization.spec b/rhn-virtualization.spec
|
||||
index 30a6ebc..6829e9f 100644
|
||||
--- a/rhn-virtualization.spec
|
||||
+++ b/rhn-virtualization.spec
|
||||
@@ -2,7 +2,7 @@
|
||||
%define rhn_conf_dir %{_sysconfdir}/sysconfig/rhn
|
||||
%define cron_dir %{_sysconfdir}/cron.d
|
||||
|
||||
-%if 0%{?fedora} || 0%{?suse_version} > 1320
|
||||
+%if 0%{?fedora} || 0%{?suse_version} > 1320 || 0%{?rhel} >= 8
|
||||
%global build_py3 1
|
||||
%global default_py3 1
|
||||
%endif
|
||||
@@ -12,7 +12,7 @@
|
||||
Name: rhn-virtualization
|
||||
Summary: RHN/Spacewalk action support for virtualization
|
||||
Version: 5.4.70
|
||||
-Release: 2%{?dist}
|
||||
+Release: 3%{?dist}
|
||||
|
||||
License: GPLv2
|
||||
URL: https://github.com/spacewalkproject/spacewalk
|
||||
@@ -266,6 +266,9 @@ fi
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
+* Wed Mar 14 2018 Tomas Kasparek <tkasparek@redhat.com> 5.4.70-3
|
||||
+- build rhn-virtualization for python3 (tkasparek@redhat.com)
|
||||
+
|
||||
* Mon Mar 05 2018 Tomas Kasparek <tkasparek@redhat.com> 5.4.70-2
|
||||
- rebuild for rhel8
|
||||
|
||||
@ -0,0 +1,111 @@
|
||||
diff --git a/rhn-virtualization.spec b/rhn-virtualization.spec
|
||||
index 6829e9f..7d2956a 100644
|
||||
--- a/rhn-virtualization.spec
|
||||
+++ b/rhn-virtualization.spec
|
||||
@@ -7,12 +7,16 @@
|
||||
%global default_py3 1
|
||||
%endif
|
||||
|
||||
+%if ( 0%{?fedora} && 0%{?fedora} < 28 ) || ( 0%{?rhel} && 0%{?rhel} < 8 )
|
||||
+%global build_py2 1
|
||||
+%endif
|
||||
+
|
||||
%define pythonX %{?default_py3: python3}%{!?default_py3: python2}
|
||||
|
||||
Name: rhn-virtualization
|
||||
Summary: RHN/Spacewalk action support for virtualization
|
||||
Version: 5.4.70
|
||||
-Release: 3%{?dist}
|
||||
+Release: 4%{?dist}
|
||||
|
||||
License: GPLv2
|
||||
URL: https://github.com/spacewalkproject/spacewalk
|
||||
@@ -28,6 +32,7 @@ BuildRequires: sysconfig syslog
|
||||
rhn-virtualization provides various RHN/Spacewalk actions for manipulation
|
||||
virtual machine guest images.
|
||||
|
||||
+%if 0%{?build_py2}
|
||||
%package -n python2-%{name}-common
|
||||
Summary: Files needed by rhn-virtualization-host
|
||||
%{?python_provide:%python_provide python2-%{name}-common}
|
||||
@@ -46,6 +51,7 @@ Requires: chkconfig
|
||||
%description -n python2-%{name}-common
|
||||
This package contains files that are needed by the rhn-virtualization-host
|
||||
package.
|
||||
+%endif
|
||||
|
||||
%if 0%{?build_py3}
|
||||
%package -n python3-%{name}-common
|
||||
@@ -73,6 +79,7 @@ Requires: /usr/sbin/crond
|
||||
This package contains code for RHN's and Spacewalk's Virtualization support
|
||||
that is specific to the Host system (a.k.a. Dom0).
|
||||
|
||||
+%if 0%{?build_py2}
|
||||
%package -n python2-%{name}-host
|
||||
Summary: RHN/Spacewalk Virtualization support specific to the Host system
|
||||
Requires: %{name}-host = %{version}-%{release}
|
||||
@@ -85,6 +92,7 @@ Requires: python-pycurl
|
||||
%endif
|
||||
%description -n python2-%{name}-host
|
||||
Python 2 files for %{name}-host.
|
||||
+%endif
|
||||
|
||||
%if 0%{?build_py3}
|
||||
%package -n python3-%{name}-host
|
||||
@@ -105,11 +113,13 @@ make -f Makefile.rhn-virtualization
|
||||
|
||||
|
||||
%install
|
||||
+%if 0%{?build_py2}
|
||||
make -f Makefile.rhn-virtualization DESTDIR=$RPM_BUILD_ROOT PKGDIR0=%{_initrddir} \
|
||||
PYTHONPATH=%{python_sitelib} install
|
||||
sed -i 's,@PYTHON@,python,; s,@PYTHONPATH@,%{python_sitelib},;' \
|
||||
$RPM_BUILD_ROOT/%{_initrddir}/rhn-virtualization-host \
|
||||
$RPM_BUILD_ROOT/%{cron_dir}/rhn-virtualization.cron
|
||||
+%endif
|
||||
|
||||
%if 0%{?build_py3}
|
||||
make -f Makefile.rhn-virtualization DESTDIR=$RPM_BUILD_ROOT PKGDIR0=%{_initrddir} \
|
||||
@@ -162,6 +172,7 @@ fi
|
||||
/sbin/service crond condrestart
|
||||
%endif
|
||||
|
||||
+%if 0%{?build_py2}
|
||||
%files -n python2-%{name}-common
|
||||
%{python_sitelib}/virtualization/__init__.py*
|
||||
%{python_sitelib}/virtualization/batching_log_notifier.py*
|
||||
@@ -173,6 +184,7 @@ fi
|
||||
%if 0%{?suse_version}
|
||||
%dir %{python_sitelib}/virtualization
|
||||
%endif
|
||||
+%endif
|
||||
|
||||
%if 0%{?build_py3}
|
||||
%files -n python3-%{name}-common
|
||||
@@ -208,6 +220,7 @@ fi
|
||||
%config(noreplace) %{rhn_conf_dir}/image.cfg
|
||||
%doc LICENSE
|
||||
|
||||
+%if 0%{?build_py2}
|
||||
%files -n python2-%{name}-host
|
||||
%{python_sitelib}/virtualization/domain_config.py*
|
||||
%{python_sitelib}/virtualization/domain_control.py*
|
||||
@@ -229,6 +242,7 @@ fi
|
||||
%dir %{python_sitelib}/rhn
|
||||
%dir %{python_sitelib}/rhn/actions
|
||||
%endif
|
||||
+%endif
|
||||
|
||||
%if 0%{?build_py3}
|
||||
%files -n python3-%{name}-host
|
||||
@@ -266,6 +280,10 @@ fi
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
+* Tue Mar 20 2018 Tomas Kasparek <tkasparek@redhat.com> 5.4.70-4
|
||||
+- don't build python2 subpackages on systems with default python3
|
||||
+ (tkasparek@redhat.com)
|
||||
+
|
||||
* Wed Mar 14 2018 Tomas Kasparek <tkasparek@redhat.com> 5.4.70-3
|
||||
- build rhn-virtualization for python3 (tkasparek@redhat.com)
|
||||
|
||||
396
SPECS/rhn-virtualization.spec
Normal file
396
SPECS/rhn-virtualization.spec
Normal file
@ -0,0 +1,396 @@
|
||||
%define rhn_dir %{_datadir}/rhn
|
||||
%define rhn_conf_dir %{_sysconfdir}/sysconfig/rhn
|
||||
%define cron_dir %{_sysconfdir}/cron.d
|
||||
|
||||
%if 0%{?fedora} || 0%{?suse_version} > 1320 || 0%{?rhel} >= 8
|
||||
%global build_py3 1
|
||||
%global default_py3 1
|
||||
%endif
|
||||
|
||||
%if ( 0%{?fedora} && 0%{?fedora} < 28 ) || ( 0%{?rhel} && 0%{?rhel} < 8 )
|
||||
%global build_py2 1
|
||||
%endif
|
||||
|
||||
%define pythonX %{?default_py3: python3}%{!?default_py3: python2}
|
||||
|
||||
Name: rhn-virtualization
|
||||
Summary: RHN/Spacewalk action support for virtualization
|
||||
Version: 5.4.70
|
||||
Release: 4%{?dist}
|
||||
|
||||
License: GPLv2
|
||||
URL: https://github.com/spacewalkproject/spacewalk
|
||||
Source0: https://github.com/spacewalkproject/spacewalk/archive/%{name}-%{version}.tar.gz
|
||||
Patch0: rhn-virtualization-5.4.70-1-to-rhn-virtualization-5.4.70-2-el8.patch
|
||||
Patch1: rhn-virtualization-5.4.70-2-el8-to-rhn-virtualization-5.4.70-3-el8.patch
|
||||
Patch2: rhn-virtualization-5.4.70-3-el8-to-rhn-virtualization-5.4.70-4-el8.patch
|
||||
|
||||
BuildArch: noarch
|
||||
%if 0%{?suse_version}
|
||||
# make chkconfig work in OBS
|
||||
BuildRequires: sysconfig syslog
|
||||
%endif
|
||||
|
||||
%description
|
||||
rhn-virtualization provides various RHN/Spacewalk actions for manipulation
|
||||
virtual machine guest images.
|
||||
|
||||
%if 0%{?build_py2}
|
||||
%package -n python2-%{name}-common
|
||||
Summary: Files needed by rhn-virtualization-host
|
||||
%{?python_provide:%python_provide python2-%{name}-common}
|
||||
Obsoletes: %{name}-common < 5.4.62
|
||||
Requires: python2-rhn-client-tools
|
||||
Requires: spacewalk-usix
|
||||
BuildRequires: python
|
||||
%if 0%{?suse_version}
|
||||
# aaa_base provide chkconfig
|
||||
Requires: aaa_base
|
||||
# provide directories for filelist check in obs
|
||||
BuildRequires: rhn-client-tools rhn-check
|
||||
%else
|
||||
Requires: chkconfig
|
||||
%endif
|
||||
%description -n python2-%{name}-common
|
||||
This package contains files that are needed by the rhn-virtualization-host
|
||||
package.
|
||||
%endif
|
||||
|
||||
%if 0%{?build_py3}
|
||||
%package -n python3-%{name}-common
|
||||
Summary: Files needed by rhn-virtualization-host
|
||||
%{?python_provide:%python_provide python3-%{name}-common}
|
||||
Obsoletes: %{name}-common < 5.4.62
|
||||
Requires: python3-spacewalk-usix
|
||||
Requires: python3-rhn-client-tools
|
||||
BuildRequires: python3-devel
|
||||
%description -n python3-%{name}-common
|
||||
This package contains files that are needed by the rhn-virtualization-host
|
||||
package.
|
||||
%endif
|
||||
|
||||
%package host
|
||||
Summary: RHN/Spacewalk Virtualization support specific to the Host system
|
||||
Requires: %{pythonX}-%{name}-host = %{version}-%{release}
|
||||
%if 0%{?suse_version}
|
||||
Requires: cron
|
||||
%else
|
||||
Requires: /usr/sbin/crond
|
||||
%endif
|
||||
|
||||
%description host
|
||||
This package contains code for RHN's and Spacewalk's Virtualization support
|
||||
that is specific to the Host system (a.k.a. Dom0).
|
||||
|
||||
%if 0%{?build_py2}
|
||||
%package -n python2-%{name}-host
|
||||
Summary: RHN/Spacewalk Virtualization support specific to the Host system
|
||||
Requires: %{name}-host = %{version}-%{release}
|
||||
Requires: libvirt-python
|
||||
Requires: python2-%{name}-common = %{version}-%{release}
|
||||
%if 0%{?suse_version}
|
||||
Requires: python-curl
|
||||
%else
|
||||
Requires: python-pycurl
|
||||
%endif
|
||||
%description -n python2-%{name}-host
|
||||
Python 2 files for %{name}-host.
|
||||
%endif
|
||||
|
||||
%if 0%{?build_py3}
|
||||
%package -n python3-%{name}-host
|
||||
Summary: RHN/Spacewalk Virtualization support specific to the Host system
|
||||
Requires: %{name}-host = %{version}-%{release}
|
||||
Requires: libvirt-python3
|
||||
Requires: python3-%{name}-common = %{version}-%{release}
|
||||
Requires: python3-pycurl
|
||||
%description -n python3-%{name}-host
|
||||
Python 3 files for %{name}-host.
|
||||
%endif
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%patch2 -p1
|
||||
|
||||
%build
|
||||
make -f Makefile.rhn-virtualization
|
||||
|
||||
|
||||
%install
|
||||
%if 0%{?build_py2}
|
||||
make -f Makefile.rhn-virtualization DESTDIR=$RPM_BUILD_ROOT PKGDIR0=%{_initrddir} \
|
||||
PYTHONPATH=%{python_sitelib} install
|
||||
sed -i 's,@PYTHON@,python,; s,@PYTHONPATH@,%{python_sitelib},;' \
|
||||
$RPM_BUILD_ROOT/%{_initrddir}/rhn-virtualization-host \
|
||||
$RPM_BUILD_ROOT/%{cron_dir}/rhn-virtualization.cron
|
||||
%endif
|
||||
|
||||
%if 0%{?build_py3}
|
||||
make -f Makefile.rhn-virtualization DESTDIR=$RPM_BUILD_ROOT PKGDIR0=%{_initrddir} \
|
||||
PYTHONPATH=%{python3_sitelib} install
|
||||
sed -i 's,@PYTHON@,python3,; s,@PYTHONPATH@,%{python3_sitelib},;' \
|
||||
$RPM_BUILD_ROOT/%{_initrddir}/rhn-virtualization-host \
|
||||
$RPM_BUILD_ROOT/%{cron_dir}/rhn-virtualization.cron
|
||||
%endif
|
||||
|
||||
%if 0%{?fedora} || (0%{?rhel} && 0%{?rhel} > 5) || 0%{?suse_version}
|
||||
find $RPM_BUILD_ROOT -name "localvdsm*" -exec rm -f '{}' ';'
|
||||
%endif
|
||||
|
||||
%if 0%{?suse_version}
|
||||
rm -f $RPM_BUILD_ROOT/%{_initrddir}/rhn-virtualization-host
|
||||
%py_compile -O %{buildroot}/%{python_sitelib}
|
||||
%if 0%{?build_py3}
|
||||
%py3_compile -O %{buildroot}/%{python3_sitelib}
|
||||
%endif
|
||||
%endif
|
||||
|
||||
|
||||
%clean
|
||||
|
||||
%if 0%{?suse_version}
|
||||
%post host
|
||||
if [ -d /proc/xen ]; then
|
||||
# xen kernel is running
|
||||
# change the default template to the xen version
|
||||
sed -i 's@^IMAGE_CFG_TEMPLATE=/etc/sysconfig/rhn/studio-kvm-template.xml@IMAGE_CFG_TEMPLATE=/etc/sysconfig/rhn/studio-xen-template.xml@' /etc/sysconfig/rhn/image.cfg
|
||||
fi
|
||||
|
||||
%else
|
||||
|
||||
%post host
|
||||
/sbin/chkconfig --add rhn-virtualization-host
|
||||
/sbin/service crond condrestart
|
||||
if [ -d /proc/xen ]; then
|
||||
# xen kernel is running
|
||||
# change the default template to the xen version
|
||||
sed -i 's@^IMAGE_CFG_TEMPLATE=/etc/sysconfig/rhn/studio-kvm-template.xml@IMAGE_CFG_TEMPLATE=/etc/sysconfig/rhn/studio-xen-template.xml@' /etc/sysconfig/rhn/image.cfg
|
||||
fi
|
||||
|
||||
%preun host
|
||||
if [ $1 = 0 ]; then
|
||||
/sbin/chkconfig --del rhn-virtualization-host
|
||||
fi
|
||||
|
||||
%postun host
|
||||
/sbin/service crond condrestart
|
||||
%endif
|
||||
|
||||
%if 0%{?build_py2}
|
||||
%files -n python2-%{name}-common
|
||||
%{python_sitelib}/virtualization/__init__.py*
|
||||
%{python_sitelib}/virtualization/batching_log_notifier.py*
|
||||
%{python_sitelib}/virtualization/constants.py*
|
||||
%{python_sitelib}/virtualization/errors.py*
|
||||
%{python_sitelib}/virtualization/notification.py*
|
||||
%{python_sitelib}/virtualization/util.py*
|
||||
%doc LICENSE
|
||||
%if 0%{?suse_version}
|
||||
%dir %{python_sitelib}/virtualization
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%if 0%{?build_py3}
|
||||
%files -n python3-%{name}-common
|
||||
%{python3_sitelib}/virtualization/__init__.py*
|
||||
%{python3_sitelib}/virtualization/batching_log_notifier.py*
|
||||
%{python3_sitelib}/virtualization/constants.py*
|
||||
%{python3_sitelib}/virtualization/errors.py*
|
||||
%{python3_sitelib}/virtualization/notification.py*
|
||||
%{python3_sitelib}/virtualization/util.py*
|
||||
%doc LICENSE
|
||||
%dir %{python3_sitelib}/virtualization/__pycache__
|
||||
%{python3_sitelib}/virtualization/__pycache__/__init__.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/batching_log_notifier.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/constants.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/errors.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/notification.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/util.*
|
||||
%if 0%{?suse_version}
|
||||
%dir %{python3_sitelib}/virtualization
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%files host
|
||||
%if 0%{?suse_version}
|
||||
%dir %{rhn_conf_dir}
|
||||
%else
|
||||
%{_initrddir}/rhn-virtualization-host
|
||||
%endif
|
||||
%dir %{rhn_conf_dir}/virt
|
||||
%dir %{rhn_conf_dir}/virt/auto
|
||||
%config(noreplace) %attr(644,root,root) %{cron_dir}/rhn-virtualization.cron
|
||||
%{rhn_conf_dir}/studio-*-template.xml
|
||||
%config(noreplace) %{rhn_conf_dir}/image.cfg
|
||||
%doc LICENSE
|
||||
|
||||
%if 0%{?build_py2}
|
||||
%files -n python2-%{name}-host
|
||||
%{python_sitelib}/virtualization/domain_config.py*
|
||||
%{python_sitelib}/virtualization/domain_control.py*
|
||||
%{python_sitelib}/virtualization/domain_directory.py*
|
||||
%{python_sitelib}/virtualization/get_config_value.py*
|
||||
%{python_sitelib}/virtualization/init_action.py*
|
||||
%{python_sitelib}/virtualization/poller.py*
|
||||
%{python_sitelib}/virtualization/schedule_poller.py*
|
||||
%{python_sitelib}/virtualization/poller_state_cache.py*
|
||||
%{python_sitelib}/virtualization/start_domain.py*
|
||||
%{python_sitelib}/virtualization/state.py*
|
||||
%{python_sitelib}/virtualization/support.py*
|
||||
%{python_sitelib}/rhn/actions/virt.py*
|
||||
%{python_sitelib}/rhn/actions/image.py*
|
||||
%if (0%{?rhel} && 0%{?rhel} < 6)
|
||||
%{python_sitelib}/virtualization/localvdsm.py*
|
||||
%endif
|
||||
%if 0%{?suse_version}
|
||||
%dir %{python_sitelib}/rhn
|
||||
%dir %{python_sitelib}/rhn/actions
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%if 0%{?build_py3}
|
||||
%files -n python3-%{name}-host
|
||||
%{python3_sitelib}/virtualization/domain_config.py*
|
||||
%{python3_sitelib}/virtualization/domain_control.py*
|
||||
%{python3_sitelib}/virtualization/domain_directory.py*
|
||||
%{python3_sitelib}/virtualization/get_config_value.py*
|
||||
%{python3_sitelib}/virtualization/init_action.py*
|
||||
%{python3_sitelib}/virtualization/poller.py*
|
||||
%{python3_sitelib}/virtualization/schedule_poller.py*
|
||||
%{python3_sitelib}/virtualization/poller_state_cache.py*
|
||||
%{python3_sitelib}/virtualization/start_domain.py*
|
||||
%{python3_sitelib}/virtualization/state.py*
|
||||
%{python3_sitelib}/virtualization/support.py*
|
||||
%{python3_sitelib}/rhn/actions/virt.py*
|
||||
%{python3_sitelib}/rhn/actions/image.py*
|
||||
%{python3_sitelib}/virtualization/__pycache__/domain_config.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/domain_control.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/domain_directory.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/get_config_value.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/init_action.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/poller.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/schedule_poller.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/poller_state_cache.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/start_domain.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/state.*
|
||||
%{python3_sitelib}/virtualization/__pycache__/support.*
|
||||
%{python3_sitelib}/rhn/actions/__pycache__/virt.*
|
||||
%{python3_sitelib}/rhn/actions/__pycache__/image.*
|
||||
%if 0%{?suse_version}
|
||||
%dir %{python3_sitelib}/rhn
|
||||
%dir %{python3_sitelib}/rhn/actions
|
||||
%dir %{python3_sitelib}/rhn/actions/__pycache__
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Tue Mar 20 2018 Tomas Kasparek <tkasparek@redhat.com> 5.4.70-4
|
||||
- don't build python2 subpackages on systems with default python3
|
||||
(tkasparek@redhat.com)
|
||||
|
||||
* Wed Mar 14 2018 Tomas Kasparek <tkasparek@redhat.com> 5.4.70-3
|
||||
- build rhn-virtualization for python3 (tkasparek@redhat.com)
|
||||
|
||||
* Mon Mar 05 2018 Tomas Kasparek <tkasparek@redhat.com> 5.4.70-2
|
||||
- rebuild for rhel8
|
||||
|
||||
* Fri Feb 09 2018 Michael Mraka <michael.mraka@redhat.com> 5.4.70-1
|
||||
- remove install/clean section initial cleanup
|
||||
- removed Group from specfile
|
||||
- removed BuildRoot from specfiles
|
||||
|
||||
* Fri Nov 03 2017 Jan Dobes 5.4.69-1
|
||||
- simplify status check
|
||||
|
||||
* Fri Nov 03 2017 Jan Dobes 5.4.68-1
|
||||
- open cache file in binary mode
|
||||
|
||||
* Fri Nov 03 2017 Jan Dobes 5.4.67-1
|
||||
- fixing traceback from poller.py on Python 3
|
||||
|
||||
* Thu Nov 02 2017 Jan Dobes 5.4.66-1
|
||||
- fixing a bytes-like object is required, not 'str'
|
||||
|
||||
* Mon Oct 23 2017 Michael Mraka <michael.mraka@redhat.com> 5.4.65-1
|
||||
- rhn-virtualization: do not install sys-v init script on SUSE
|
||||
- rhn-virtualization: add missing dirs to filelist for SUSE and enable build
|
||||
for Tumbleweed
|
||||
|
||||
* Wed Oct 18 2017 Jan Dobes 5.4.64-1
|
||||
- rhn-virtualization - removing usage of string module not available in Python
|
||||
3
|
||||
|
||||
* Fri Oct 06 2017 Michael Mraka <michael.mraka@redhat.com> 5.4.63-1
|
||||
- virt modules (and deps) are now in standard python path
|
||||
|
||||
* Fri Oct 06 2017 Michael Mraka <michael.mraka@redhat.com> 5.4.62-1
|
||||
- install files into python_sitelib/python3_sitelib
|
||||
- move rhn-virtualization-host files into proper python2/python3 subpackages
|
||||
- move rhn-virtualization-common files into proper python2/python3 subpackages
|
||||
- split rhn-virtualization-host into python2/python3 specific packages
|
||||
- split rhn-virtualization into python2/python3 specific packages
|
||||
|
||||
* Wed Sep 06 2017 Michael Mraka <michael.mraka@redhat.com> 5.4.61-1
|
||||
- purged changelog entries for Spacewalk 2.0 and older
|
||||
|
||||
* Wed Aug 09 2017 Michael Mraka <michael.mraka@redhat.com> 5.4.60-1
|
||||
- precompile py3 bytecode on Fedora 23+
|
||||
- use standard brp-python-bytecompile
|
||||
|
||||
* Tue Jul 18 2017 Michael Mraka <michael.mraka@redhat.com> 5.4.59-1
|
||||
- move version and release before sources
|
||||
|
||||
* Mon Jul 17 2017 Jan Dobes 5.4.58-1
|
||||
- Updated links to github in spec files
|
||||
- Migrating Fedorahosted to GitHub
|
||||
|
||||
* Wed Feb 15 2017 Tomas Kasparek <tkasparek@redhat.com> 5.4.57-1
|
||||
- require spacewalk-usix indead of spacewalk-backend-usix
|
||||
|
||||
* Wed Oct 19 2016 Gennadii Altukhov <galt@redhat.com> 5.4.56-1
|
||||
- 1379891 - make rhn-virtualization code compatible with Python 2/3
|
||||
|
||||
* Tue Jan 13 2015 Matej Kollar <mkollar@redhat.com> 5.4.55-1
|
||||
- Getting rid of Tabs and trailing spaces in LICENSE, COPYING, and README files
|
||||
|
||||
* Fri Jul 11 2014 Milan Zazrivec <mzazrivec@redhat.com> 5.4.54-1
|
||||
- fix copyright years
|
||||
|
||||
* Wed Apr 23 2014 Stephen Herr <sherr@redhat.com> 5.4.53-1
|
||||
- 1089715 - some systems to not have /sbin in path
|
||||
|
||||
* Tue Apr 22 2014 Stephen Herr <sherr@redhat.com> 5.4.52-1
|
||||
- 1089715 - service location is not platform independent
|
||||
|
||||
* Mon Apr 21 2014 Stephen Herr <sherr@redhat.com> 5.4.51-1
|
||||
- 1089715 - rhn-virt-host should not spam root if libvirtd is stopped
|
||||
|
||||
* Mon Sep 30 2013 Michael Mraka <michael.mraka@redhat.com> 5.4.50-1
|
||||
- removed trailing whitespaces
|
||||
|
||||
* Tue Sep 17 2013 Michael Mraka <michael.mraka@redhat.com> 5.4.49-1
|
||||
- Grammar error occurred
|
||||
|
||||
* Wed Jul 17 2013 Tomas Kasparek <tkasparek@redhat.com> 5.4.48-1
|
||||
- updating copyright years
|
||||
|
||||
* Wed Jun 12 2013 Tomas Kasparek <tkasparek@redhat.com> 5.4.47-1
|
||||
- rebranding RHN Satellite to Red Hat Satellite in client stuff
|
||||
|
||||
* Fri May 03 2013 Tomas Lestach <tlestach@redhat.com> 5.4.46-1
|
||||
- 915287 - python 2.4 does not know 'exit'
|
||||
- 915287 - define a utf8_encode wrapper
|
||||
|
||||
* Thu Mar 28 2013 Jan Pazdziora 5.4.45-1
|
||||
- isInstallerConfig should check for autoyast in commandline
|
||||
- catch libvirtError to return meaningfull error messages
|
||||
|
||||
* Thu Feb 07 2013 Stephen Herr <sherr@redhat.com> 5.4.44-1
|
||||
- 908899 - rhn-virtualization-host needs to consistantly use the new function
|
||||
definition
|
||||
|
||||
* Wed Feb 06 2013 Jan Pazdziora 5.4.43-1
|
||||
- support studio KVM image type
|
||||
|
||||
Loading…
Reference in New Issue
Block a user