Reviewed-by: Peter Müller > - Update from 0.3.3 to 0.5.0 > - Update of rootfile > - Changelog > 0.5.0 > feature:Python: Dropped support for Python 2.7 > 0.4.2 > enhancement:s3: Add support for ExpectedBucketOwner. Fixes #181. > 0.4.1 > enhancement:crt: Add set_exception to CRTTransferFuture to allow setting exceptions in subscribers. > 0.4.0 > feature:crt: Add optional AWS Common Runtime (CRT) support. The AWS CRT provides a C-based S3 transfer client that can improve transfer throughput. > 0.3.7 > bugfix:ReadFileChunk: Fix seek behavior in ReadFileChunk class > 0.3.6 > bugfix:packaging: Fix setup.py metadata for futures on Python 2.7 > 0.3.5 > enhancement:s3: Block TransferManager methods for S3 Object Lambda resources > 0.3.4 > enhancement:s3: Add server side encryption context into allowed list > > Signed-off-by: Adolf Belka > --- > config/rootfiles/packages/python3-s3transfer | 45 ++++++++++---------- > lfs/python3-s3transfer | 6 +-- > 2 files changed, 26 insertions(+), 25 deletions(-) > > diff --git a/config/rootfiles/packages/python3-s3transfer b/config/rootfiles/packages/python3-s3transfer > index 5d172a62a..07e2def39 100644 > --- a/config/rootfiles/packages/python3-s3transfer > +++ b/config/rootfiles/packages/python3-s3transfer > @@ -1,22 +1,23 @@ > -#usr/lib/python3.8/site-packages/s3transfer > -#usr/lib/python3.8/site-packages/s3transfer-0.3.3-py3.8.egg-info > -#usr/lib/python3.8/site-packages/s3transfer-0.3.3-py3.8.egg-info/PKG-INFO > -#usr/lib/python3.8/site-packages/s3transfer-0.3.3-py3.8.egg-info/SOURCES.txt > -#usr/lib/python3.8/site-packages/s3transfer-0.3.3-py3.8.egg-info/dependency_links.txt > -#usr/lib/python3.8/site-packages/s3transfer-0.3.3-py3.8.egg-info/requires.txt > -#usr/lib/python3.8/site-packages/s3transfer-0.3.3-py3.8.egg-info/top_level.txt > -usr/lib/python3.8/site-packages/s3transfer/__init__.py > -usr/lib/python3.8/site-packages/s3transfer/bandwidth.py > -usr/lib/python3.8/site-packages/s3transfer/compat.py > -usr/lib/python3.8/site-packages/s3transfer/constants.py > -usr/lib/python3.8/site-packages/s3transfer/copies.py > -usr/lib/python3.8/site-packages/s3transfer/delete.py > -usr/lib/python3.8/site-packages/s3transfer/download.py > -usr/lib/python3.8/site-packages/s3transfer/exceptions.py > -usr/lib/python3.8/site-packages/s3transfer/futures.py > -usr/lib/python3.8/site-packages/s3transfer/manager.py > -usr/lib/python3.8/site-packages/s3transfer/processpool.py > -usr/lib/python3.8/site-packages/s3transfer/subscribers.py > -usr/lib/python3.8/site-packages/s3transfer/tasks.py > -usr/lib/python3.8/site-packages/s3transfer/upload.py > -usr/lib/python3.8/site-packages/s3transfer/utils.py > +#usr/lib/python3.10/site-packages/s3transfer > +#usr/lib/python3.10/site-packages/s3transfer-0.5.0-py3.10.egg-info > +#usr/lib/python3.10/site-packages/s3transfer-0.5.0-py3.10.egg-info/PKG-INFO > +#usr/lib/python3.10/site-packages/s3transfer-0.5.0-py3.10.egg-info/SOURCES.txt > +#usr/lib/python3.10/site-packages/s3transfer-0.5.0-py3.10.egg-info/dependency_links.txt > +#usr/lib/python3.10/site-packages/s3transfer-0.5.0-py3.10.egg-info/requires.txt > +#usr/lib/python3.10/site-packages/s3transfer-0.5.0-py3.10.egg-info/top_level.txt > +usr/lib/python3.10/site-packages/s3transfer/__init__.py > +usr/lib/python3.10/site-packages/s3transfer/bandwidth.py > +usr/lib/python3.10/site-packages/s3transfer/compat.py > +usr/lib/python3.10/site-packages/s3transfer/constants.py > +usr/lib/python3.10/site-packages/s3transfer/copies.py > +usr/lib/python3.10/site-packages/s3transfer/crt.py > +usr/lib/python3.10/site-packages/s3transfer/delete.py > +usr/lib/python3.10/site-packages/s3transfer/download.py > +usr/lib/python3.10/site-packages/s3transfer/exceptions.py > +usr/lib/python3.10/site-packages/s3transfer/futures.py > +usr/lib/python3.10/site-packages/s3transfer/manager.py > +usr/lib/python3.10/site-packages/s3transfer/processpool.py > +usr/lib/python3.10/site-packages/s3transfer/subscribers.py > +usr/lib/python3.10/site-packages/s3transfer/tasks.py > +usr/lib/python3.10/site-packages/s3transfer/upload.py > +usr/lib/python3.10/site-packages/s3transfer/utils.py > diff --git a/lfs/python3-s3transfer b/lfs/python3-s3transfer > index 365200448..1353d9a61 100644 > --- a/lfs/python3-s3transfer > +++ b/lfs/python3-s3transfer > @@ -24,7 +24,7 @@ > > include Config > > -VER = 0.3.3 > +VER = 0.5.0 > > THISAPP = s3transfer-$(VER) > DL_FILE = $(THISAPP).tar.gz > @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) > DIR_APP = $(DIR_SRC)/$(THISAPP) > TARGET = $(DIR_INFO)/$(THISAPP) > PROG = python3-s3transfer > -PAK_VER = 3 > +PAK_VER = 4 > > DEPS = > > @@ -44,7 +44,7 @@ objects = $(DL_FILE) > > $(DL_FILE) = $(DL_FROM)/$(DL_FILE) > > -$(DL_FILE)_MD5 = 9f90989a42a0f02f388d15928aa96c5f > +$(DL_FILE)_MD5 = 9416d1c7d33506501a8627bb1f7baf66 > > install : $(TARGET) >