Hello community,

here is the log from the commit of package python-s3transfer for 
openSUSE:Factory checked in at 2016-04-14 13:07:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-s3transfer (Old)
 and      /work/SRC/openSUSE:Factory/.python-s3transfer.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-s3transfer"

Changes:
--------
New Changes file:

--- /dev/null   2016-04-07 01:36:33.300037506 +0200
+++ /work/SRC/openSUSE:Factory/.python-s3transfer.new/python-s3transfer.changes 
2016-04-14 13:07:14.000000000 +0200
@@ -0,0 +1,12 @@
+-------------------------------------------------------------------
+Tue Apr 12 11:46:04 UTC 2016 - [email protected]
+
+- Set the proper target directory for copying the license file
+  + Fixes build issue on SLE 11
+
+-------------------------------------------------------------------
+Mon Apr 11 21:30:05 UTC 2016 - [email protected]
+
+- Initial build include in SLE 12 (FATE#320748, bsc#974993)
+  + Version 0.0.1
+

New:
----
  LICENSE.txt
  hide_py_pckgmgmt.patch
  python-s3transfer.changes
  python-s3transfer.spec
  s3transfer-0.0.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-s3transfer.spec ++++++
#
# spec file for package python-s3transfer
#
# Copyright (c) 2016 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:           python-s3transfer
Version:        0.0.1
Release:        0
Summary:        Python S3 transfer manager
License:        Apache-2.0
Group:          Development/Languages/Python
Url:            https://github.com/boto/s3transfer
Source0:        
https://pypi.python.org/packages/source/s/s3transfer/s3transfer-%{version}.tar.gz
Source1:        LICENSE.txt
Patch0:         hide_py_pckgmgmt.patch
BuildRequires:  python-setuptools
Requires:       python-botocore  >= 1.4.10
Requires:       python-futures   <= 4.0.0
Requires:       python-futures   >= 2.2.0
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch:      noarch
%endif

%description
A transfer manager for Amazon Web Services S3

%prep
%setup -q -n s3transfer-%{version}
%patch0

%build
python setup.py build

%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot} 
--install-scripts=%{_bindir}
cp %{SOURCE1} %{_builddir}/s3transfer-%{version}

%files
%defattr(-,root,root,-)
%doc LICENSE.txt README.rst
%{python_sitelib}/s3transfer/
%{python_sitelib}/s3transfer-%{version}-py%{py_ver}.egg-info

%changelog
++++++ LICENSE.txt ++++++
Copyright 2012-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License"). You
may not use this file except in compliance with the License. A copy of
the License is located at

    http://aws.amazon.com/apache2.0/

or in the "license" file accompanying this file. This file is
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License.
++++++ hide_py_pckgmgmt.patch ++++++
--- setup.py.orig
+++ setup.py
@@ -10,15 +10,15 @@ ROOT = os.path.dirname(__file__)
 VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''')
 
 
-requires = [
-    'botocore>=1.3.0,<2.0.0',
-]
+#requires = [
+#    'botocore>=1.3.0,<2.0.0',
+#]
 
 
-if sys.version_info[0] == 2:
+#if sys.version_info[0] == 2:
     # concurrent.futures is only in python3, so for
     # python2 we need to install the backport.
-    requires.append('futures>=2.2.0,<4.0.0')
+#    requires.append('futures>=2.2.0,<4.0.0')
 
 
 def get_version():
@@ -35,11 +35,11 @@ setup(
     author_email='[email protected]',
     url='https://github.com/boto/s3transfer',
     packages=find_packages(exclude=['tests*']),
-    install_requires=requires,
-    extras_require={
-        ':python_version=="2.6" or python_version=="2.7"': [
-            'futures>=2.2.0,<4.0.0']
-    },
+#    install_requires=requires,
+#    extras_require={
+#        ':python_version=="2.6" or python_version=="2.7"': [
+#            'futures>=2.2.0,<4.0.0']
+#    },
     license="Apache License 2.0",
     classifiers=(
         'Development Status :: 1 - Planning',

Reply via email to