Hello community,
here is the log from the commit of package python3-ec2imgutils for
openSUSE:Factory checked in at 2020-02-13 10:12:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-ec2imgutils (Old)
and /work/SRC/openSUSE:Factory/.python3-ec2imgutils.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-ec2imgutils"
Thu Feb 13 10:12:00 2020 rev:6 rq:773704 version:7.0.8
Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-ec2imgutils/python3-ec2imgutils.changes
2019-11-17 19:23:02.922868720 +0100
+++
/work/SRC/openSUSE:Factory/.python3-ec2imgutils.new.26092/python3-ec2imgutils.changes
2020-02-13 10:12:02.196358104 +0100
@@ -1,0 +2,7 @@
+Wed Feb 5 13:05:02 UTC 2020 - Robert Schweikert <[email protected]>
+
+- Update to version 7.0.8 (bsc#1162712)
+ + For ARM image upload automatically enable ENA support. ARM based
+ instances require the ENA driver in the kernel
+
+-------------------------------------------------------------------
Old:
----
ec2imgutils-7.0.7.tar.bz2
New:
----
ec2imgutils-7.0.8.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-ec2imgutils.spec ++++++
--- /var/tmp/diff_new_pack.jDLsWd/_old 2020-02-13 10:12:03.492358855 +0100
+++ /var/tmp/diff_new_pack.jDLsWd/_new 2020-02-13 10:12:03.496358858 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python3-ec2imgutils
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,21 +17,26 @@
%define upstream_name ec2imgutils
+
Name: python3-ec2imgutils
-Version: 7.0.7
+Version: 7.0.8
Release: 0
Summary: Image management utilities for AWS EC2
License: GPL-3.0-or-later
Group: System/Management
-URL: https://github.com/SUSE-Enceladus/ec2imgutils
+Url: https://github.com/SUSE-Enceladus/ec2imgutils
Source0: %{upstream_name}-%{version}.tar.bz2
-BuildRequires: python3-boto3 >= 1.4.1
-BuildRequires: python3-dateutil
-BuildRequires: python3-setuptools
Requires: python3
Requires: python3-boto3 >= 1.4.1
Requires: python3-dateutil
Requires: python3-paramiko
+BuildRequires: python3-boto3 >= 1.4.1
+BuildRequires: python3-dateutil
+Requires: python3-paramiko
+BuildRequires: python3-setuptools
+BuildRoot: %{_tmppath}/%{name}-%{version}-build
+BuildArch: noarch
+
# Package renamed in SLE 12 do not remove Provides, Obsolete
# directives until after SLE 12 EOL
Provides: python-ec2utilsbase = %{version}
@@ -42,6 +47,7 @@
Obsoletes: python-ec2publishimg < %{version}
Provides: python-ec2uploadimg = %{version}
Obsoletes: python-ec2uploadimg < %{version}
+
# Package rename in SLE 15 GA do not remove Provides, Obsolete
# directives until after SLE 15 SP3 EOL
Provides: python3-ec2utilsbase = %{version}
@@ -52,7 +58,6 @@
Obsoletes: python3-ec2publishimg < %{version}
Provides: python3-ec2uploadimg = %{version}
Obsoletes: python3-ec2uploadimg < %{version}
-BuildArch: noarch
%description
A collection of image manipulation utilities for AWS EC2. These include:
++++++ ec2imgutils-7.0.7.tar.bz2 -> ec2imgutils-7.0.8.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ec2imgutils-7.0.7/ec2uploadimg
new/ec2imgutils-7.0.8/ec2uploadimg
--- old/ec2imgutils-7.0.7/ec2uploadimg 2019-11-14 22:52:32.590718805 +0100
+++ new/ec2imgutils-7.0.8/ec2uploadimg 2020-02-04 18:58:47.247367202 +0100
@@ -348,6 +348,15 @@
print('Specified architecture must be one of %s' % str(supported_arch))
sys.exit(1)
+# All arm64 images must support ENA
+# Choosing to assume the image has a sufficiently new kernel with the
+# ENA driver rather than to error out
+if args.arch == 'arm64':
+ if not args.ena:
+ print('Enabling ENA support, required by arm64', file=sys.stdout)
+ args.ena = True
+
+
sriov_type = args.sriov
if sriov_type:
sriov_type = 'simple'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ec2imgutils-7.0.7/lib/ec2imgutils/VERSION
new/ec2imgutils-7.0.8/lib/ec2imgutils/VERSION
--- old/ec2imgutils-7.0.7/lib/ec2imgutils/VERSION 2019-11-14
22:52:32.586718778 +0100
+++ new/ec2imgutils-7.0.8/lib/ec2imgutils/VERSION 2020-02-04
18:58:47.247367202 +0100
@@ -1 +1 @@
-7.0.7
+7.0.8