Hello community,
here is the log from the commit of package python3-ec2imgutils for
openSUSE:Leap:15.2 checked in at 2020-03-06 12:40:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/python3-ec2imgutils (Old)
and /work/SRC/openSUSE:Leap:15.2/.python3-ec2imgutils.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-ec2imgutils"
Fri Mar 6 12:40:15 2020 rev:5 rq:781578 version:7.0.8
Changes:
--------
---
/work/SRC/openSUSE:Leap:15.2/python3-ec2imgutils/python3-ec2imgutils.changes
2020-01-15 15:54:50.587646043 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.python3-ec2imgutils.new.26092/python3-ec2imgutils.changes
2020-03-06 12:43:30.026838287 +0100
@@ -1,0 +2,18 @@
+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
+
+-------------------------------------------------------------------
+Thu Nov 14 21:53:26 UTC 2019 - Sean Marlow <[email protected]>
+
+- Update to version 7.0.7
+ + Fix cleanup with --use-root-swap img upload.
+- Update to version 7.0.6
+ + Add requirements files to manifest.
+ + Avoid race condition with security group creation.
+ + Remove code duplication when avoiding group name
+ collision.
+
+-------------------------------------------------------------------
Old:
----
ec2imgutils-7.0.5.tar.bz2
New:
----
ec2imgutils-7.0.8.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-ec2imgutils.spec ++++++
--- /var/tmp/diff_new_pack.F0K2dJ/_old 2020-03-06 12:43:30.646838664 +0100
+++ /var/tmp/diff_new_pack.F0K2dJ/_new 2020-03-06 12:43:30.650838667 +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
@@ -19,7 +19,7 @@
%define upstream_name ec2imgutils
Name: python3-ec2imgutils
-Version: 7.0.5
+Version: 7.0.8
Release: 0
Summary: Image management utilities for AWS EC2
License: GPL-3.0-or-later
++++++ ec2imgutils-7.0.5.tar.bz2 -> ec2imgutils-7.0.8.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ec2imgutils-7.0.5/ec2uploadimg
new/ec2imgutils-7.0.8/ec2uploadimg
--- old/ec2imgutils-7.0.5/ec2uploadimg 2019-08-05 18:19:57.561472390 +0200
+++ 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.5/lib/ec2imgutils/VERSION
new/ec2imgutils-7.0.8/lib/ec2imgutils/VERSION
--- old/ec2imgutils-7.0.5/lib/ec2imgutils/VERSION 2019-08-05
18:19:57.561472390 +0200
+++ new/ec2imgutils-7.0.8/lib/ec2imgutils/VERSION 2020-02-04
18:58:47.247367202 +0100
@@ -1 +1 @@
-7.0.5
+7.0.8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ec2imgutils-7.0.5/lib/ec2imgutils/ec2uploadimg.py
new/ec2imgutils-7.0.8/lib/ec2imgutils/ec2uploadimg.py
--- old/ec2imgutils-7.0.5/lib/ec2imgutils/ec2uploadimg.py 2019-08-05
18:19:57.561472390 +0200
+++ new/ec2imgutils-7.0.8/lib/ec2imgutils/ec2uploadimg.py 2020-02-04
18:58:47.247367202 +0100
@@ -1055,6 +1055,7 @@
True
)
+ self._clean_up()
return ami['ImageId']
# ---------------------------------------------------------------------