Hello community,

here is the log from the commit of package docker-compose for openSUSE:Factory 
checked in at 2015-12-09 19:50:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/docker-compose (Old)
 and      /work/SRC/openSUSE:Factory/.docker-compose.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "docker-compose"

Changes:
--------
--- /work/SRC/openSUSE:Factory/docker-compose/docker-compose.changes    
2015-09-17 09:20:28.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.docker-compose.new/docker-compose.changes       
2015-12-09 22:15:11.000000000 +0100
@@ -1,0 +2,19 @@
+Thu Nov 19 17:57:50 UTC 2015 - fcaste...@suse.com
+
+- Add fix-requirements.patch: require the version of python-enum34
+  shipped with SLE and openSUSE. The original version is not really
+  needed.
+- Downgraded python-enum34 requirement to suit what is already shipped
+  with SLE/openSUSE
+
+-------------------------------------------------------------------
+Sun Nov 15 20:31:33 UTC 2015 - jmassaguer...@suse.com
+
+- Update to docker-compose 1.5.1 
+
+  Remove fix_requires.patch because latest version requires different
+  versions of the previous packages
+
+  Changelog: https://github.com/docker/compose/blob/1.5.1/CHANGELOG.md
+
+-------------------------------------------------------------------

Old:
----
  compose-1.3.2.tar.gz
  fix_requires.patch

New:
----
  compose-1.5.1.tar.gz
  fix-requirements.patch

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

Other differences:
------------------
++++++ docker-compose.spec ++++++
--- /var/tmp/diff_new_pack.0p1rke/_old  2015-12-09 22:15:11.000000000 +0100
+++ /var/tmp/diff_new_pack.0p1rke/_new  2015-12-09 22:15:11.000000000 +0100
@@ -19,7 +19,7 @@
 %define mod_name compose
 
 Name:           docker-compose
-Version:        1.3.2
+Version:        1.5.1
 Release:        0
 Summary:        Define and run complex applications using Docker
 License:        Apache-2.0
@@ -27,17 +27,19 @@
 Url:            https://pypi.python.org/pypi/fig
 Source0:        %{mod_name}-%{version}.tar.gz
 Source1:        README.SUSE
-Patch0:         fix_requires.patch
+Patch0:         fix-requirements.patch
 Requires:       docker
-Requires:       python-PyYAML           >= 3.1.0
-Requires:       python-docker-py        >= 1.0.0
-Requires:       python-dockerpty        >= 0.3.2
+Requires:       python-PyYAML           >= 3.11
+Requires:       python-docker-py        >= 1.5.0
+Requires:       python-dockerpty        >= 0.3.4
 Requires:       python-docopt           >= 0.6.1
-Requires:       python-requests         >= 2.6.1
+Requires:       python-enum34           >= 1.0
+Requires:       python-jsonschema       >= 2.5.1
+Requires:       python-requests         >= 2.7.0
 Requires:       python-setuptools
 Requires:       python-six              >= 1.7.3
 Requires:       python-texttable        >= 0.8.2
-Requires:       python-websocket-client >= 0.11.0
+Requires:       python-websocket-client >= 0.32.0
 BuildRequires:  python-setuptools
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 

++++++ compose-1.3.2.tar.gz -> compose-1.5.1.tar.gz ++++++
++++ 19849 lines of diff (skipped)

++++++ fix-requirements.patch ++++++
diff --git a/requirements.txt b/requirements.txt
index 60327d7..65169a6 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -2,7 +2,7 @@ PyYAML==3.11
 docker-py==1.5.0
 dockerpty==0.3.4
 docopt==0.6.1
-enum34==1.0.4
+enum34>=1.0
 jsonschema==2.5.1
 requests==2.7.0
 six==1.7.3
diff --git a/setup.py b/setup.py
index 4020122..6f43d2a 100644
--- a/setup.py
+++ b/setup.py
@@ -30,7 +30,7 @@ def find_version(*file_paths):
 install_requires = [
     'docopt >= 0.6.1, < 0.7',
     'PyYAML >= 3.10, < 4',
-    'requests >= 2.6.1, < 2.8',
+    'requests >= 2.6.1, < 2.9',
     'texttable >= 0.8.1, < 0.9',
     'websocket-client >= 0.32.0, < 1.0',
     'docker-py >= 1.5.0, < 2',
@@ -47,7 +47,7 @@ tests_require = [
 
 if sys.version_info[:2] < (3, 4):
     tests_require.append('mock >= 1.0.1')
-    install_requires.append('enum34 >= 1.0.4, < 2')
+    install_requires.append('enum34 >= 1.0, < 2')
 
 
 setup(

Reply via email to