Browse code

Updated python packages to latest version

Change-Id: I31b4f822e478f3f215f59937692830f4a02964e0
Reviewed-on: http://photon-jenkins.eng.vmware.com:8082/5626
Tested-by: gerrit-photon <photon-checkins@vmware.com>
Reviewed-by: Anish Swaminathan <anishs@vmware.com>

Tapas Kundu authored on 2018/09/11 04:14:35
Showing 73 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,30 @@
0
+--- a/setup.py	2018-09-12 04:22:16.777506605 +0530
1
+@@ -35,11 +35,16 @@
2
+ #
3
+ 
4
+ import os
5
+-import pip
6
+ import sys
7
+-from pip.req import parse_requirements
8
+ from setuptools import setup, find_packages
9
+ 
10
++try: # for pip >= 10
11
++    from pip._internal.req import parse_requirements
12
++    from pip._internal.download import PipSession
13
++except ImportError: # for pip <= 9.0
14
++    from pip.req import parse_requirements
15
++    from pip.download import PipSession
16
++
17
+ #
18
+ # Useful Variables
19
+ #
20
+@@ -120,7 +125,7 @@ def get_data_files():
21
+ # Python setup.py definitions
22
+ #
23
+ requirements = [str(requirement.req) for requirement in parse_requirements(
24
+-    'requirements.txt', session=pip.download.PipSession())]
25
++    'requirements.txt', session=PipSession())]
26
+ 
27
+ # Python Version check
28
+ if not sys.version_info[0] == 2:
... ...
@@ -5,7 +5,7 @@
5 5
 Summary:        Little IoT Agent
6 6
 Name:           liota
7 7
 Version:        0.4.1
8
-Release:        1%{?dist}
8
+Release:        2%{?dist}
9 9
 License:        BSD 2-Clause License.
10 10
 Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
... ...
@@ -13,6 +13,7 @@ Distribution:   Photon
13 13
 Url:            https://github.com/vmware/liota
14 14
 Source0:        https://github.com/vmware/liota/archive/%{name}-%{version}.tar.gz
15 15
 %define         sha1 liota=c20239309086753e0dcc9cfa5e88e09ce63203f5
16
+Patch0:         fix_for_building_liota_with_pip_gr_10.patch
16 17
 BuildRequires:  python-pip
17 18
 BuildRequires:  python-pyOpenSSL
18 19
 BuildRequires:  python2
... ...
@@ -32,6 +33,7 @@ Little IoT Agent (liota) is an open source project offering some convenience for
32 32
 
33 33
 %prep
34 34
 %setup -q -n %{name}-%{version}
35
+%patch0 -p1
35 36
 
36 37
 %build
37 38
 
... ...
@@ -64,5 +66,7 @@ cp -r packages/liotad/* %{buildroot}/usr/lib/%{name}/packages/liotad/
64 64
 %{python2_sitelib}/%{name}/
65 65
 
66 66
 %changelog
67
+*   Tue Sep 11 2018 Tapas Kundu <tkundu@vmware.com> 0.4.1-2
68
+-   Added fix to build with pip greater than version 10.
67 69
 *   Mon Aug 13 2018 Tapas Kundu <tkundu@vmware.com> 0.4.1-1
68 70
 -   Initial packaging for Photon
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        A port of the caching algorithms in httplib2 for use with requests session object.
5 5
 Name:           python-CacheControl
6
-Version:        0.12.3
7
-Release:        2%{?dist}
6
+Version:        0.12.5
7
+Release:        1%{?dist}
8 8
 License:        Apache Software License
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://github.com/ionrock/cachecontrol/archive/v%{version}.tar.gz
13
-Source0:        cachecontrol-%{version}.tar.gz
14
-%define sha1    cachecontrol=c0f8287d821a51e570487ca0d67aafac4fe73b0e
13
+Source0:        CacheControl-%{version}.tar.gz
14
+%define sha1    CacheControl=ccc7d5ff074b5c1a5ea96db1fcd322e9d2f67668
15 15
 
16 16
 BuildRequires:  python2-devel
17 17
 BuildRequires:  python-setuptools
... ...
@@ -35,7 +35,7 @@ Requires:       python3-msgpack
35 35
 %description -n python3-CacheControl
36 36
 
37 37
 %prep
38
-%setup -q -n cachecontrol-%{version}
38
+%setup -q -n CacheControl-%{version}
39 39
 rm -rf ../p3dir
40 40
 cp -a . ../p3dir
41 41
 
... ...
@@ -69,6 +69,8 @@ popd
69 69
 %{_bindir}/doesitcache3
70 70
 
71 71
 %changelog
72
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.12.5-1
73
+-   Update to version 0.12.5
72 74
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 0.12.3-2
73 75
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
74 76
 *   Thu May 25 2017 Xiaolin Li <xiaolinl@vmware.com> 0.12.3-1
... ...
@@ -2,8 +2,8 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-M2Crypto
5
-Version:        0.26.0
6
-Release:        2%{?dist}
5
+Version:        0.30.1
6
+Release:        1%{?dist}
7 7
 Summary:        Crypto and SSL toolkit for Python
8 8
 Group:          Development/Languages/Python
9 9
 License:        MIT
... ...
@@ -11,7 +11,7 @@ URL:            https://pypi.python.org/pypi/M2Crypto/0.26.0
11 11
 Source0:        https://pypi.python.org/packages/11/29/0b075f51c38df4649a24ecff9ead1ffc57b164710821048e3d997f1363b9/M2Crypto-%{version}.tar.gz
12 12
 Vendor:         VMware, Inc.
13 13
 Distribution:   Photon
14
-%define sha1 M2Crypto=1583782298a635c0634377e4037b1708c12ce426
14
+%define sha1    M2Crypto=8e2eb23196afbac08ad566ecb3378de9f35c5f12
15 15
 BuildRequires:  python2-devel
16 16
 BuildRequires:  openssl
17 17
 BuildRequires:  openssl-devel
... ...
@@ -74,6 +74,8 @@ rm -rf %{buildroot}
74 74
 %{python3_sitelib}/*
75 75
 
76 76
 %changelog
77
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.30.1-1
78
+-   Update to version 0.30.1
77 79
 *   Fri Oct 13 2017 Alexey Makhalov <amakhalov@vmware.com> 0.26.0-2
78 80
 -   Remove BuildArch
79 81
 *   Fri Jul 14 2017 Kumar Kaushik <kaushikk@vmware.com> 0.26.0-1
... ...
@@ -2,8 +2,8 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-alabaster
5
-Version:        0.7.10
6
-Release:        3%{?dist}
5
+Version:        0.7.11
6
+Release:        1%{?dist}
7 7
 Summary:        A configurable sidebar-enabled Sphinx theme
8 8
 License:        BSD
9 9
 Group:          Development/Languages/Python
... ...
@@ -11,7 +11,7 @@ Url:            https://github.com/bitprophet/alabaster/
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        https://pypi.python.org/packages/d0/a5/e3a9ad3ee86aceeff71908ae562580643b955ea1b1d4f08ed6f7e8396bd7/alabaster-%{version}.tar.gz
14
-%define sha1    alabaster=dba599faf1ca5541ef35ab251eb2b365ae2f25c7
14
+%define sha1    alabaster=3596a252d54c70d1214370b1cefdec3df203bb4e
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-devel
... ...
@@ -67,6 +67,8 @@ make -k check |& tee %{_specdir}/%{name}-check-log || %{nocheck}
67 67
 %{python3_sitelib}/*
68 68
 
69 69
 %changelog
70
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.7.11-1
71
+-   Update to version 0.7.11
70 72
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 0.7.10-3
71 73
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
72 74
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 0.7.10-2
... ...
@@ -2,14 +2,14 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-asn1crypto
5
-Version:        0.22.0
6
-Release:        3%{?dist}
5
+Version:        0.24.0
6
+Release:        1%{?dist}
7 7
 Summary:        A fast, pure Python library for parsing and serializing ASN.1 structures.
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Url:            https://pypi.python.org/packages/67/14/5d66588868c4304f804ebaff9397255f6ec5559e46724c2496e0f26e68d6/asn1crypto-0.22.0.tar.gz
11 11
 Source0:        asn1crypto-%{version}.tar.gz
12
-%define sha1    asn1crypto=c4f60b52dd06e3fd0ed568a741e968aaccd2e3e5
12
+%define sha1    asn1crypto=c8f64e99bc01d90c412891cdad97675d8fe79cc7
13 13
 
14 14
 BuildRequires:  python2
15 15
 BuildRequires:  python2-libs
... ...
@@ -65,6 +65,8 @@ popd
65 65
 %{python3_sitelib}/*
66 66
 
67 67
 %changelog
68
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.24.0-1
69
+-   Update to version 0.24.0
68 70
 *   Wed Jul 05 2017 Chang Lee <changlee@vmware.com> 0.22.0-3
69 71
 -   Removed %check because the source does not include the test module
70 72
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 0.22.0-2
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Python Atomic file writes
5 5
 Name:           python-atomicwrites
6
-Version:        1.1.5
7
-Release:        2%{?dist}
6
+Version:        1.2.1
7
+Release:        1%{?dist}
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://github.com/untitaker/python-atomicwrites
13 13
 Source0:        https://pypi.python.org/packages/a1/e1/2d9bc76838e6e6667fde5814aa25d7feb93d6fa471bf6816daac2596e8b2/atomicwrites-%{version}.tar.gz
14
-%define sha1    atomicwrites=89bfd295abb2c03e20f611a7c2205fc5c09e8509
14
+%define sha1    atomicwrites=fec341b1028177784ac97436c479a397ffeb20d7
15 15
 
16 16
 BuildRequires:  python-setuptools
17 17
 BuildRequires:  python2-devel
... ...
@@ -74,6 +74,8 @@ popd
74 74
 %{python3_sitelib}/*
75 75
 
76 76
 %changelog
77
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.2.1-1
78
+-   Update to version 1.2.1
77 79
 *   Wed Jul 26 2017 Divya Thaluru <dthaluru@vmware.com> 1.1.5-2
78 80
 -   Fixed rpm check errors
79 81
 *   Fri Jul 07 2017 Dheeraj Shetty <dheerajs@vmware.com> 1.1.5-1
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Attributes without boilerplate.
5 5
 Name:           python-attrs
6
-Version:        16.3.0
7
-Release:        3%{?dist}
6
+Version:        18.2.0
7
+Release:        1%{?dist}
8 8
 Url:            https://pypi.python.org/pypi/attrs
9 9
 License:        MIT
10 10
 Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        attrs-%{version}.tar.gz
14
-%define sha1    attrs=ce3d6456b024a21cc20291d605964dbcff205e64
14
+%define sha1    attrs=51a52e1afdd9e8c174ac0b65c2905a8360788dd2
15 15
 
16 16
 BuildArch:      noarch
17 17
 
... ...
@@ -71,6 +71,8 @@ python2 setup.py test
71 71
 %{python3_sitelib}/*
72 72
 
73 73
 %changelog
74
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 18.2.0-1
75
+-   Update to version 18.2.0
74 76
 *   Thu Jul 06 2017 Chang Lee <changlee@vmware.com> 16.3.0-3
75 77
 -   Updated %check
76 78
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 16.3.0-2
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Self-service finite-state machines for the programmer on the go.
5 5
 Name:           python-automat
6
-Version:        0.5.0
7
-Release:        4%{?dist}
6
+Version:        0.7.0
7
+Release:        1%{?dist}
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/Automat
13 13
 Source0:        https://files.pythonhosted.org/packages/source/A/Automat/Automat-%{version}.tar.gz
14
-%define         sha1 Automat=2fa7c1db2d1dab6cbb74ff5537e0f5be2782c637
14
+%define sha1    Automat=b96a67647f5c1650f0e4cc39bed762fdc2ac90b4
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -101,6 +101,8 @@ popd
101 101
 %{_bindir}/automat-visualize3
102 102
 
103 103
 %changelog
104
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.7.0-1
105
+-   Update to version 0.7.0
104 106
 *   Mon Jul 17 2017 Divya Thaluru <dthaluru@vmware.com> 0.5.0-4
105 107
 -   Fixed run time dependencies
106 108
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 0.5.0-3
... ...
@@ -2,8 +2,8 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-babel
5
-Version:        2.4.0
6
-Release:        3%{?dist}
5
+Version:        2.6.0
6
+Release:        1%{?dist}
7 7
 Summary:        an integrated collection of utilities that assist in internationalizing and localizing Python applications
8 8
 License:        BSD3
9 9
 Group:          Development/Languages/Python
... ...
@@ -11,7 +11,7 @@ Url:            http://babel.pocoo.org
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        https://pypi.python.org/packages/92/22/643f3b75f75e0220c5ef9f5b72b619ccffe9266170143a4821d4885198de/Babel-%{version}.tar.gz
14
-%define sha1    Babel=c3b247d17a34dc600c93f93f8f533029430bccb4
14
+%define sha1    Babel=6aed99e4fb8a2a75de7815599f610cdcbb81e3c2
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-devel
... ...
@@ -83,6 +83,8 @@ popd
83 83
 %{python3_sitelib}/*
84 84
 
85 85
 %changelog
86
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.6.0-1
87
+-   Update to version 2.6.0
86 88
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 2.4.0-3
87 89
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
88 90
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 2.4.0-2
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Summary:        Amazon Web Services Library.
6 6
 Name:           python-boto
7
-Version:        2.48.0
7
+Version:        2.49.0
8 8
 Release:        1%{?dist}
9 9
 License:        MIT License
10 10
 Group:          Development/Languages/Python
... ...
@@ -12,7 +12,7 @@ Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Url:            https://pypi.python.org/pypi/boto/2.48.0
14 14
 Source0:        https://files.pythonhosted.org/packages/source/b/boto/boto-%{version}.tar.gz
15
-%define         sha1 boto=9cd6fb5b28a1e2a66c4fa4715bcce251e4ea8434
15
+%define sha1    boto=300e6b7abd04a77a94f769e6cad6fb9e6e84ffbb
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
18 18
 BuildRequires:  python2-devel
... ...
@@ -134,5 +134,7 @@ popd
134 134
 %{_bindir}/taskadmin-%{python3_version}
135 135
 
136 136
 %changelog
137
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.49.0-1
138
+-   Update to version 2.49.0
137 139
 *   Tue Sep 12 2017 Xiaolin Li <xiaolinl@vmware.com> 2.48.0-1
138 140
 -   Initial packaging for Photon
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Summary:        The AWS SDK for Python
6 6
 Name:           python-boto3
7
-Version:        1.5.9
7
+Version:        1.9.0
8 8
 Release:        1%{?dist}
9 9
 License:        Apache 2.0
10 10
 Group:          Development/Languages/Python
... ...
@@ -12,7 +12,7 @@ Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Url:            https://github.com/boto/boto3
14 14
 Source0:        https://github.com/boto/boto3/archive/boto3-%{version}.tar.gz
15
-%define         sha1 boto3=31713c7ba10901494321e2a11fe19fb86b0176d5
15
+%define sha1    boto3=2c5174711d2a5c73a8dcc569734bbd94a9b63281
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
18 18
 BuildRequires:  python2-devel
... ...
@@ -77,5 +77,7 @@ popd
77 77
 %{python3_sitelib}/*
78 78
 
79 79
 %changelog
80
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.9.0-1
81
+-   Update to version 1.9.0
80 82
 *   Wed Jan 24 2018 Kumar Kaushik <kaushikk@vmware.com> 1.5.9-1
81 83
 -   Initial packaging for photon.
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 Summary:        Amazon Web Services Library.
6 6
 Name:           python-botocore
7
-Version:        1.8.15
7
+Version:        1.12.0
8 8
 Release:        1%{?dist}
9 9
 License:        Apache 2.0
10 10
 Group:          Development/Languages/Python
... ...
@@ -12,7 +12,7 @@ Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Url:            https://github.com/boto/botocore
14 14
 Source0:        https://github.com/boto/botocore/archive/botocore-%{version}.tar.gz
15
-%define         sha1 botocore=6ecad01c8235e53d22da5e2da65704cede758550
15
+%define sha1    botocore=e11850563bd1beaf8aa1756e03398358c057d606
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
18 18
 BuildRequires:  python2-devel
... ...
@@ -69,5 +69,7 @@ popd
69 69
 %{python3_sitelib}/*
70 70
 
71 71
 %changelog
72
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.12.0-1
73
+-   Update to version 1.12.0
72 74
 *   Sun Jan 07 2018 Kumar Kaushik <kaushikk@vmware.com> 1.8.15-1
73 75
 -   Initial packaging for photon.
... ...
@@ -5,15 +5,15 @@
5 5
 
6 6
 Summary:        A modern, feature-rich and highly-tunable Python client library for Apache Cassandra (2.1+)
7 7
 Name:           python-cassandra-driver
8
-Version:        3.10.0
9
-Release:        5%{?dist}
8
+Version:        3.15.1
9
+Release:        1%{?dist}
10 10
 Url:            https://github.com/datastax/python-driver#datastax-python-driver-for-apache-cassandra
11 11
 License:        Apache 2.0
12 12
 Group:          Development/Languages/Python
13 13
 Vendor:         VMware, Inc.
14 14
 Distribution:   Photon
15
-Source0:        https://github.com/datastax/python-driver/archive/%{name}-%{version}.tar.gz
16
-%define sha1    python-cassandra-driver=1eb85a0979b6b480b53c7a725018cc0991599a60
15
+Source0:        https://github.com/datastax/python-driver/archive/cassandra-driver-%{version}.tar.gz
16
+%define sha1    cassandra-driver=cf83c56599ef95c23c1f1b26e9d7209f2fe3ae87
17 17
 BuildRequires:  python2
18 18
 BuildRequires:  cython
19 19
 BuildRequires:  python2-libs
... ...
@@ -47,7 +47,7 @@ Requires:       python3-libs
47 47
 Python 3 version.
48 48
 
49 49
 %prep
50
-%setup -q -n python-driver-%{version}
50
+%setup -q -n cassandra-driver-%{version}
51 51
 rm -rf ../p3dir
52 52
 cp -a . ../p3dir
53 53
 
... ...
@@ -106,6 +106,8 @@ popd
106 106
 %{python3_sitelib}/*
107 107
 
108 108
 %changelog
109
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 3.15.1-1
110
+-   Update to version 3.15.1
109 111
 *   Fri Oct 13 2017 Alexey Makhalov <amakhalov@vmware.com> 3.10.0-5
110 112
 -   Remove BuildArch
111 113
 *   Tue Sep 12 2017 Dheeraj Shetty <dheerajs@vmware.com> 3.10.0-4
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Interface for Python to call C code
5 5
 Name:           python-cffi
6
-Version:        1.10.0
7
-Release:        3%{?dist}
6
+Version:        1.11.5
7
+Release:        1%{?dist}
8 8
 Url:            https://pypi.python.org/pypi/cffi
9 9
 License:        MIT
10 10
 Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        https://pypi.python.org/packages/source/c/cffi/cffi-%{version}.tar.gz
14
-%define sha1    cffi=8484aba03d1e64367d3110c0e36c1ed052b43f12
14
+%define sha1    cffi=1686e6689a691414d3d22626c837adeee3996dd9
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -81,6 +81,8 @@ popd
81 81
 %{python3_sitelib}/*
82 82
 
83 83
 %changelog
84
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.11.5-1
85
+-   Update to version 1.11.5
84 86
 *   Mon Jul 17 2017 Divya Thaluru <dthaluru@vmware.com> 1.10.0-3
85 87
 -   Added build time dependecies required during check
86 88
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 1.10.0-2
... ...
@@ -5,15 +5,15 @@
5 5
 
6 6
 Summary:        Code coverage measurement for Python.
7 7
 Name:           python-coverage
8
-Version:        4.3.4
9
-Release:        5%{?dist}
8
+Version:        4.5.1
9
+Release:        1%{?dist}
10 10
 License:        Apache 2.0
11 11
 Group:          Development/Languages/Python
12 12
 Vendor:         VMware, Inc.
13 13
 Distribution:   Photon
14 14
 Url:            https://pypi.python.org/pypi/coverage
15 15
 Source0:        https://files.pythonhosted.org/packages/source/c/coverage/coverage-%{version}.tar.gz
16
-%define         sha1 coverage=8ffe985cb6efd4b747fd8ee75a9a41e4f319cc71
16
+%define         sha1 coverage=ec7c2ee6eae78708bee08af8b85e03dd8d673ef2
17 17
 
18 18
 BuildRequires:  python2
19 19
 BuildRequires:  python2-libs
... ...
@@ -87,6 +87,8 @@ popd
87 87
 %{_bindir}/coverage-%{python3_version}
88 88
 
89 89
 %changelog
90
+*   Sat Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 4.5.1-1
91
+-   Updated to 4.5.1
90 92
 *   Thu Aug 10 2017 Xiaolin Li <xiaolinl@vmware.com> 4.3.4-5
91 93
 -   Fixed make check errors
92 94
 *   Fri Jul 07 2017 Chang Lee <changlee@vmware.com> 4.3.4-4
... ...
@@ -3,7 +3,7 @@
3 3
 
4 4
 Summary:        Python cryptography library
5 5
 Name:           python-cryptography
6
-Version:        2.0.3
6
+Version:        2.3.1
7 7
 Release:        1%{?dist}
8 8
 Url:            https://pypi.python.org/pypi/cryptography
9 9
 License:        ASL 2.0
... ...
@@ -11,7 +11,7 @@ Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        https://pypi.io/packages/source/c/cryptography/cryptography-%{version}.tar.gz
14
-%define sha1    cryptography=918c788a03142e5058e23c3711fc3e6618f38a61
14
+%define sha1    cryptography=c550f9ba5a46ad33a0568edc2b9d0f4af3e4adab
15 15
 BuildRequires:  python2
16 16
 BuildRequires:  python2-libs
17 17
 BuildRequires:  python2-devel
... ...
@@ -98,6 +98,8 @@ python3 setup.py test
98 98
 %{python3_sitelib}/*
99 99
 
100 100
 %changelog
101
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.3.1-1
102
+-   Update to version 2.3.1
101 103
 *   Mon Aug 14 2017 Xiaolin Li <xiaolinl@vmware.com> 2.0.3-1
102 104
 -   Updated to version 2.0.3.
103 105
 *   Tue Jul 25 2017 Divya Thaluru <dthaluru@vmware.com> 1.8.1-4
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Library to implement a well-behaved Unix daemon process.
5 5
 Name:           python-daemon
6
-Version:        2.1.2
7
-Release:        4%{?dist}
6
+Version:        2.2.0
7
+Release:        1%{?dist}
8 8
 License:        Apache-2
9 9
 Url:            https://pypi.python.org/pypi/python-daemon/
10 10
 Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13
-Source0:        https://files.pythonhosted.org/packages/source/p/python-daemon/python-daemon-2.1.2.tar.gz
14
-%define sha1    python-daemon=e333e9031424611b8974d2b2d2804dd26c4fae8e
13
+Source0:        https://files.pythonhosted.org/packages/source/p/python-daemon/%{name}-%{version}.tar.gz
14
+%define sha1    python-daemon=9135b7edafa5bcd457d88bb2c0dfae024b3d8778
15 15
 
16 16
 BuildRequires:  python2-devel
17 17
 BuildRequires:  python-setuptools
... ...
@@ -87,6 +87,8 @@ popd
87 87
 %{python3_sitelib}/*
88 88
 
89 89
 %changelog
90
+*   Sat Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.2.0-1
91
+-   Updated to 2.2.0
90 92
 *   Mon Jul 17 2017 Divya Thaluru <dthaluru@vmware.com> 2.1.2-4
91 93
 -   Fixed check command to run unit tests
92 94
 -   Added packages required to run tests
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Docutils -- Python Documentation Utilities.
5 5
 Name:           python-docutils
6
-Version:        0.13.1
7
-Release:        3%{?dist}
6
+Version:        0.14
7
+Release:        1%{?dist}
8 8
 License:        public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/docutils
13 13
 Source0:        https://files.pythonhosted.org/packages/source/d/docutils/docutils-%{version}.tar.gz
14
-%define         sha1 docutils=c16e14ef18142fa248400cd174edb4fa40e51d5b
14
+%define sha1    docutils=32cefb69ac3dab5b04c4d150776f35419cc4c863
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -106,8 +106,10 @@ popd
106 106
 %{_bindir}/rst2latex3.py
107 107
 %{_bindir}/rst2html53.py
108 108
 %{_bindir}/rst2html3.py
109
-
109
+%{_bindir}/rst2html4.py
110 110
 %changelog
111
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.14-1
112
+-   Update to version 0.14
111 113
 *   Thu Jun 22 2017 Dheeraj Shetty <dheerajs@vmware.com> 0.13.1-3
112 114
 -   Add BuildRequires python-xml and python3-xml for the tests to pass
113 115
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 0.13.1-2
... ...
@@ -1,8 +1,8 @@
1 1
 %{!?python2_sitelib: %define python2_sitelib %(python2 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
2 2
 
3 3
 Name:           python-enum
4
-Version:        0.4.6
5
-Release:        2%{?dist}
4
+Version:        0.4.7
5
+Release:        1%{?dist}
6 6
 Summary:        Robust enumerated type support in Python
7 7
 License:        MIT
8 8
 Group:          Development/Languages/Python
... ...
@@ -10,7 +10,7 @@ Url:            http://pypi.python.org/packages/source/e/enum/enum-%{version}.ta
10 10
 Vendor:		VMware, Inc.
11 11
 Distribution: 	Photon
12 12
 Source0:        enum-%{version}.tar.gz
13
-%define sha1    enum=b8868b1370181e92bbffbcd18b3ccd2be1f0438d
13
+%define sha1    enum=dccaa3ebd20ecba27192b6fb2462a197e1df7864
14 14
 
15 15
 BuildRequires:  python2
16 16
 BuildRequires:  python2-libs
... ...
@@ -41,6 +41,8 @@ python2 setup.py test
41 41
 %{python2_sitelib}/*
42 42
 
43 43
 %changelog
44
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.4.7-1
45
+-   Update to version 0.4.7
44 46
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 0.4.6-2
45 47
 -   Changed python to python2
46 48
 *   Thu Feb 16 2017 Xiaolin Li <xiaolinl@vmware.com> 0.4.6-1
... ...
@@ -1,14 +1,14 @@
1 1
 %{!?python2_sitelib: %define python2_sitelib %(python2 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
2 2
 
3 3
 Name:           python-fuse
4
-Version:        0.2.1
5
-Release:        2%{?dist}
4
+Version:        0.3.1
5
+Release:        1%{?dist}
6 6
 Summary:        Python interface to libfuse
7 7
 License:        LGPL
8 8
 Group:          Development/Languages/Python
9 9
 Url:            https://github.com/libfuse/%{name}/archive/%{version}.tar.gz
10 10
 Source0:        %{name}-%{version}.tar.gz
11
-%define sha1    python-fuse=789a922e0c11ed961c469794c73ea7b9ef88eb5f
11
+%define sha1    python-fuse=9ffaf925866cdca337e42248232fa20ab8ff57be
12 12
 Vendor:         VMware, Inc.
13 13
 Distribution:   Photon
14 14
 BuildRequires:  fuse
... ...
@@ -41,6 +41,8 @@ easy_install py
41 41
 %{python2_sitelib}/fuse*
42 42
 
43 43
 %changelog
44
+*   Sat Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.3.1-1
45
+-   Updated to 0.3.1
44 46
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 0.2.1-2
45 47
 -   Change python to python2
46 48
 *   Thu Apr 06 2017 Vinay Kulkarni <kulkarniv@vmware.com> 0.2.1-1
... ...
@@ -1,13 +1,13 @@
1 1
 %{!?python2_sitelib: %define python2_sitelib %(python2 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
2 2
 Name:           python-futures
3
-Version:        3.1.1
3
+Version:        3.2.0
4 4
 Release:        1%{?dist}
5 5
 Summary:        Backport of the concurrent.futures package to Python 2.6 and 2.7
6 6
 License:        PSF
7 7
 Group:          Development/Languages/Python
8 8
 Url:            https://pypi.python.org/pypi/futures
9 9
 Source0:        https://pypi.python.org/packages/cc/26/b61e3a4eb50653e8a7339d84eeaa46d1e93b92951978873c220ae64d0733/futures-%{version}.tar.gz
10
-%define sha1    futures=e6815bea6a2881218df730347732f67ec5e89108
10
+%define sha1    futures=ca2da8b80e81095ded372c0b545ae0fdae6027c4
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 BuildRequires:  pkg-config
... ...
@@ -37,5 +37,7 @@ easy_install py
37 37
 %{python2_sitelib}/*
38 38
 
39 39
 %changelog
40
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 3.2.0-1
41
+-   Update to version 3.2.0
40 42
 *   Thu Apr 06 2017 Harish Udaiya Kumar <hudaiyakumar@vmware.com> 3.1.1-1
41 43
 -   Initial version of python-fuse package for Photon.
... ...
@@ -3,7 +3,7 @@
3 3
 
4 4
 Summary:        Graph visualization dot render
5 5
 Name:           python-graphviz
6
-Version:        0.8
6
+Version:        0.9
7 7
 Release:        1%{?dist}
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
... ...
@@ -11,16 +11,16 @@ Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/graphviz
13 13
 #wget https://github.com/xflr6/graphviz/archive/0.8.tar.gz -O graphviz-0.8.tar.gz
14
-Source0:        graphviz-%{version}.tar.gz
15
-%define         sha1 graphviz=2aee1f3576b1ba08e0b70a0c83ef8e9e7d82d82f
14
+Source0:        graphviz-%{version}.zip
15
+%define sha1    graphviz=6864163a3647609bc517ee5d5acbf2c302954161
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
18 18
 BuildRequires:  python2-devel
19 19
 BuildRequires:  python-setuptools
20 20
 BuildRequires:  python-xml
21
+BuildRequires:  unzip
21 22
 Requires:       python2
22 23
 Requires:       python2-libs
23
-
24 24
 BuildArch:      noarch
25 25
 
26 26
 %description
... ...
@@ -70,5 +70,7 @@ popd
70 70
 %{python3_sitelib}/*
71 71
 
72 72
 %changelog
73
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.9-1
74
+-   Update to version 0.9
73 75
 *   Thu Jul 13 2017 Divya Thaluru <dthaluru@vmware.com> 0.8-1
74 76
 -   Initial packaging for Photon
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Lightweight in-process concurrent programming
5 5
 Name:           python-greenlet
6
-Version:        0.4.12
7
-Release:        3%{?dist}
6
+Version:        0.4.15
7
+Release:        1%{?dist}
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/greenlet
13 13
 Source0:        greenlet-%{version}.tar.gz
14
-%define sha1    greenlet=ac7f0341cd2395e0bdef70749c4e1dc89038ba99
14
+%define sha1    greenlet=0da9c069c38bf297923a1da0c601ef71c07ffb6d
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -64,6 +64,8 @@ python2 setup.py test
64 64
 /usr/include/python3.6m/greenlet/greenlet.h
65 65
 
66 66
 %changelog
67
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.4.15-1
68
+-   Update to version 0.4.15
67 69
 *   Fri Aug 11 2017 Rongrong Qiu <rqiu@vmware.com> 0.4.12-3
68 70
 -   make check only support python3 for bug 1937030
69 71
 *   Thu Apr 27 2017 Siju Maliakkal <smaliakkal@vmware.com> 0.4.12-2
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        provides a pure-Python implementation of immutable URLs
5 5
 Name:           python-hyperlink
6
-Version:        17.3.1
7
-Release:        2%{?dist}
6
+Version:        18.0.0
7
+Release:        1%{?dist}
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://github.com/python-hyper/hyperlink
13 13
 Source0:        https://github.com/python-hyper/hyperlink/archive/hyperlink-%{version}.tar.gz
14
-%define sha1 hyperlink=a577c1d40a14dfa970c74f3b79ad18a98b18a22f
14
+%define sha1    hyperlink=f51f4495795e51ae9468a13dd79ff26b3f457f40
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -77,6 +77,8 @@ popd
77 77
 %{python3_sitelib}/*
78 78
 
79 79
 %changelog
80
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 18.0.0-1
81
+-   Update to version 18.0.0
80 82
 *   Wed Sep 20 2017 Bo Gan <ganb@vmware.com> 17.3.1-2
81 83
 -   Fix make check issues
82 84
 *   Mon Sep 11 2017 Dheeraj Shetty <dheerajs@vmware.com> 17.3.1-1
... ...
@@ -2,8 +2,8 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-hypothesis
5
-Version:        3.8.2
6
-Release:        3%{?dist}
5
+Version:        3.71.0
6
+Release:        1%{?dist}
7 7
 Summary:        Python library for creating unit tests which are simpler to write and more powerful
8 8
 License:        MPLv2.0
9 9
 Group:          Development/Languages/Python
... ...
@@ -11,7 +11,7 @@ Url:            https://github.com/HypothesisWorks/hypothesis-python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        https://pypi.python.org/packages/cf/d5/b3d491e4b5094be0ef69b910d637096c8e23f84a9bdc4eba0b869220d1f0/hypothesis-%{version}.tar.gz
14
-%define sha1    hypothesis=7416346ebd8ae6f78f482980f80a57764913e27f
14
+%define sha1    hypothesis=ee60d25a948a6e0b2c8963023714c0889e9c413b
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-devel
... ...
@@ -72,6 +72,8 @@ make -k check |& tee %{_specdir}/%{name}-check-log || %{nocheck}
72 72
 %{python3_sitelib}/*
73 73
 
74 74
 %changelog
75
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 3.71.0-1
76
+-   Update to version 3.71.0
75 77
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 3.8.2-3
76 78
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
77 79
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 3.8.2-2
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Internationalized Domain Names in Applications (IDNA).
5 5
 Name:           python-idna
6
-Version:        2.5
7
-Release:        2%{?dist}
6
+Version:        2.7
7
+Release:        1%{?dist}
8 8
 Url:            https://pypi.python.org/pypi/idna
9 9
 License:        BSD-like
10 10
 Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        idna-%{version}.tar.gz
14
-%define sha1    idna=499531b72bf0440ded6ce7f079a1f979270ae2d0
14
+%define sha1    idna=9e1aec32b35423438c285ec21ee234228bedd6fb
15 15
 
16 16
 BuildArch:      noarch
17 17
 
... ...
@@ -77,6 +77,8 @@ popd
77 77
 %{python3_sitelib}/*
78 78
 
79 79
 %changelog
80
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.7-1
81
+-   Update to version 2.7
80 82
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 2.5-2
81 83
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
82 84
 *   Mon Mar 13 2017 Xiaolin Li <xiaolinl@vmware.com> 2.5-1
... ...
@@ -2,16 +2,16 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-imagesize
5
-Version:        0.7.1
6
-Release:        3%{?dist}
5
+Version:        1.1.0
6
+Release:        1%{?dist}
7 7
 Summary:        python module to analyze jpeg/jpeg2000/png/gif image header and return image size.
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Url:            https://github.com/shibukawa/imagesize_py
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13
-Source0:        https://pypi.python.org/packages/53/72/6c6f1e787d9cab2cc733cf042f125abec07209a58308831c9f292504e826/imagesize_py-%{version}.tar.gz
14
-%define sha1    imagesize_py=b0ae3151495d8bbb207170bff7ed253d929e0dce
13
+Source0:        https://pypi.python.org/packages/53/72/6c6f1e787d9cab2cc733cf042f125abec07209a58308831c9f292504e826/imagesize-%{version}.tar.gz
14
+%define sha1    imagesize=48b7277a450654db77dc956812020525f5e478c8
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-devel
... ...
@@ -41,7 +41,7 @@ Requires:       python3-libs
41 41
 Python 3 version.
42 42
 
43 43
 %prep
44
-%setup -n imagesize_py-%{version}
44
+%setup -n imagesize-%{version}
45 45
 rm -rf ../p3dir
46 46
 cp -a . ../p3dir
47 47
 
... ...
@@ -70,6 +70,8 @@ py.test3
70 70
 %{python3_sitelib}/*
71 71
 
72 72
 %changelog
73
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.1.0-1
74
+-   Update to version 1.1.0
73 75
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 0.7.1-3
74 76
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
75 77
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 0.7.1-2
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Incremental is a small library that versions your Python projects.
5 5
 Name:           python-incremental
6
-Version:        16.10.1
7
-Release:        2%{?dist}
6
+Version:        17.5.0
7
+Release:        1%{?dist}
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/incremental
13 13
 Source0:        incremental-%{version}.tar.gz
14
-%define         sha1 incremental=7ec58968fd367d20856488a8991f3a586c7a8695
14
+%define sha1    incremental=ec60b72cf95a092931f1e83807f5d641d80ae924
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -63,6 +63,8 @@ python3 setup.py test
63 63
 %{python3_sitelib}/*
64 64
 
65 65
 %changelog
66
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 17.5.0-1
67
+-   Update to version 17.5.0
66 68
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 16.10.1-2
67 69
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
68 70
 *   Mon Mar 06 2017 Xiaolin Li <xiaolinl@vmware.com> 16.10.1-1
... ...
@@ -2,15 +2,15 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-ipaddr
5
-Version:        2.1.11
6
-Release:        4%{?dist}
5
+Version:        2.2.0
6
+Release:        1%{?dist}
7 7
 Url:            https://github.com/google/ipaddr-py
8 8
 Summary:        Google's Python IP address manipulation library
9 9
 License:        Apache2
10 10
 Group:          Development/Languages/Python
11 11
 Source0:        https://pypi.python.org/packages/source/i/ipaddr/ipaddr-%{version}.tar.gz
12
-%define sha1 ipaddr=f9a16ddb3cf774b8dcf8894c2f4295c4e17d0ed3
13
-Patch0:         ipaddr-python3-compatibility.patch
12
+%define sha1    ipaddr=d2acca0d7eee9c21d103d11ddc1bd7a8cc9a5a27
13
+#Patch0:         ipaddr-python3-compatibility.patch
14 14
 
15 15
 BuildRequires:  python2
16 16
 BuildRequires:  python2-libs
... ...
@@ -38,7 +38,7 @@ Python 3 version.
38 38
 
39 39
 %prep
40 40
 %setup -q -n ipaddr-%{version}
41
-%patch0 -p1
41
+#%patch0 -p1
42 42
 rm -rf ../p3dir
43 43
 cp -a . ../p3dir
44 44
 
... ...
@@ -69,6 +69,8 @@ popd
69 69
 %{python3_sitelib}/*
70 70
 
71 71
 %changelog
72
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.2.0-1
73
+-   Update to version 2.2.0
72 74
 *   Tue May 16 2017 Kumar Kaushik <kaushikk@vmware.com> 2.1.11-4
73 75
 -   Adding python 3 support.
74 76
 *   Mon Oct 03 2016 ChangLee <changLee@vmware.com> 2.1.11-3
... ...
@@ -1,8 +1,8 @@
1 1
 %{!?python2_sitelib: %define python2_sitelib %(python2 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
2 2
 
3 3
 Name:           python-ipaddress
4
-Version:        1.0.18
5
-Release:        2%{?dist}
4
+Version:        1.0.22
5
+Release:        1%{?dist}
6 6
 Summary:        Port of the 3.3+ ipaddress module to 2.6, 2.7, 3.2
7 7
 License:        MIT
8 8
 Group:          Development/Languages/Python
... ...
@@ -10,7 +10,7 @@ Url:            https://pypi.python.org/pypi/ipaddress
10 10
 Vendor:		VMware, Inc.
11 11
 Distribution: 	Photon
12 12
 Source0:        ipaddress-%{version}.tar.gz
13
-%define sha1    ipaddress=f15a3714e4bea2ddfe54e80ad6f7b5de57cc94c5
13
+%define sha1    ipaddress=7b60cef3c7fdb7fa9c991ddff5968754cec6adb0
14 14
 
15 15
 BuildRequires:  python2
16 16
 BuildRequires:  python2-libs
... ...
@@ -41,6 +41,8 @@ python2 setup.py test
41 41
 %{python2_sitelib}/*
42 42
 
43 43
 %changelog
44
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.0.22-1
45
+-   Update to version 1.0.22
44 46
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 1.0.18-2
45 47
 -   Change python to python2
46 48
 *   Thu Feb 16 2017 Xiaolin Li <xiaolinl@vmware.com> 1.0.18-1
... ...
@@ -3,16 +3,16 @@
3 3
 %{!?python3_version: %define python3_version %(python3 -c "import sys; sys.stdout.write(sys.version[:3])")}
4 4
 
5 5
 Name:           python-jinja2
6
-Version:        2.9.5
7
-Release:        6%{?dist}
6
+Version:        2.10
7
+Release:        1%{?dist}
8 8
 Url:            http://jinja.pocoo.org/
9 9
 Summary:        A fast and easy to use template engine written in pure Python
10 10
 License:        BSD
11 11
 Group:          Development/Languages/Python
12 12
 Vendor:         VMware, Inc.
13 13
 Distribution:   Photon
14
-Source0:        https://pypi.python.org/packages/71/59/d7423bd5e7ddaf3a1ce299ab4490e9044e8dfd195420fc83a24de9e60726/Jinja2-2.9.5.tar.gz
15
-%define sha1    Jinja2=a3129c140d34ae565a556e48db40772df3536b23
14
+Source0:        https://pypi.python.org/packages/71/59/d7423bd5e7ddaf3a1ce299ab4490e9044e8dfd195420fc83a24de9e60726/Jinja2-%{version}.tar.gz
15
+%define sha1    Jinja2=34b69e5caab12ee37b9df69df9018776c008b7b8
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
18 18
 BuildRequires:  python-setuptools
... ...
@@ -66,19 +66,21 @@ make -k check |& tee %{_specdir}/%{name}-check-log || %{nocheck}
66 66
 
67 67
 %files
68 68
 %defattr(-,root,root)
69
-%doc AUTHORS CHANGES
69
+%doc AUTHORS
70 70
 %license LICENSE
71 71
 %{python2_sitelib}/jinja2
72 72
 %{python2_sitelib}/Jinja2-%{version}-py%{python_version}.egg-info
73 73
 
74 74
 %files -n python3-jinja2
75 75
 %defattr(-,root,root)
76
-%doc AUTHORS CHANGES
76
+%doc AUTHORS
77 77
 %license LICENSE
78 78
 %{python3_sitelib}/jinja2
79 79
 %{python3_sitelib}/Jinja2-%{version}-py%{python3_version}.egg-info
80 80
 
81 81
 %changelog
82
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.10-1
83
+-   Update to version 2.10
82 84
 *   Tue Jun 20 2017 Xiaolin Li <xiaolinl@vmware.com> 2.9.5-6
83 85
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
84 86
 *   Thu Jun 15 2017 Dheeraj Shetty <dheerajs@vmware.com> 2.9.5-5
... ...
@@ -2,14 +2,14 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-jsonpatch
5
-Version:        1.15
6
-Release:        4%{?dist}
5
+Version:        1.23
6
+Release:        1%{?dist}
7 7
 Summary:        Applying JSON Patches in Python
8 8
 License:        Modified BSD License
9 9
 Group:          Development/Languages/Python
10 10
 Url:		https://pypi.python.org/pypi/jsonpatch
11 11
 Source0:        https://pypi.python.org/packages/be/c1/947048a839120acefc13a614280be3289db404901d1a2d49b6310c6d5757/jsonpatch-%{version}.tar.gz
12
-%define sha1 jsonpatch=a678cb3d2a91fc350c7355361f0d3a0d9808d119
12
+%define sha1    jsonpatch=6097861e88b94fd42fcc9713aa81d5f97b4cc350
13 13
 
14 14
 BuildRequires: python2
15 15
 BuildRequires: python2-libs
... ...
@@ -69,6 +69,8 @@ popd
69 69
 %{_bindir}/jsonpatch3
70 70
 
71 71
 %changelog
72
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.23-1
73
+-   Update to version 1.23
72 74
 *       Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 1.15-4
73 75
 -       Separate python3 and python2 specific scripts in bin directory
74 76
 *       Thu Apr 27 2017 Sarah Choi <sarahc@vmware.com> 1.15-3
... ...
@@ -2,14 +2,14 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-jsonpointer
5
-Version:        1.10
6
-Release:        6%{?dist}
5
+Version:        2.0
6
+Release:        1%{?dist}
7 7
 Summary:        Applying JSON Patches in Python
8 8
 License:        Modified BSD License
9 9
 Group:          Development/Languages/Python
10 10
 Url:            https://pypi.python.org/packages/source/j/jsonpointer/jsonpointer-%{version}.tar.gz
11 11
 Source0:        jsonpointer-%{version}.tar.gz
12
-%define sha1 jsonpointer=74db9372f71d8af9cd380e34fe1a0e274e6cd7cc
12
+%define sha1    jsonpointer=f0733349a44b0c777ef9b8e0256d628e2530624b
13 13
 
14 14
 BuildRequires: python2
15 15
 BuildRequires: python2-libs
... ...
@@ -70,6 +70,8 @@ python2 setup.py install --prefix=%{_prefix} --root=%{buildroot}
70 70
 %{_bindir}/jsonpointer3
71 71
 
72 72
 %changelog
73
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.0-1
74
+-   Update to version 2.0
73 75
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 1.10-6
74 76
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
75 77
 *   Wed Apr 26 2017 Sarah Choi <sarahc@vmware.com> 1.10-5
... ...
@@ -2,13 +2,13 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 Summary:        XML and HTML with Python
4 4
 Name:           python-lxml
5
-Version:        3.7.3
6
-Release:        3%{?dist}
5
+Version:        4.2.4
6
+Release:        1%{?dist}
7 7
 Group:          Development/Libraries
8 8
 License:        BSD
9 9
 URL:            http://lxml.de
10 10
 Source0:        https://pypi.python.org/packages/39/e8/a8e0b1fa65dd021d48fe21464f71783655f39a41f218293c1c590d54eb82/lxml-%{version}.tar.gz
11
-%define         sha1 lxml=bce8b3101ed0de7440f00d7960a6a7a46ce50433
11
+%define sha1    lxml=4a77c5471dfea2a32fd16475d130350af7d33f85
12 12
 Vendor:         VMware, Inc.
13 13
 Distribution:   Photon
14 14
 BuildRequires:  python2-devel
... ...
@@ -76,6 +76,8 @@ rm -rf %{buildroot}
76 76
 %{python3_sitelib}/*
77 77
 
78 78
 %changelog
79
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 4.2.4-1
80
+-   Update to version 4.2.4
79 81
 *   Mon Aug 07 2017 Dheeraj Shetty <dheerajs@vmware.com> 3.7.3-3
80 82
 -   set LC_ALL and LANGUAGE for the tests to pass
81 83
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 3.7.3-2
... ...
@@ -3,7 +3,7 @@
3 3
 
4 4
 Summary:        Markdown to reStructuredText converter.
5 5
 Name:           python-m2r
6
-Version:        0.1.7
6
+Version:        0.2.0
7 7
 Release:        1%{?dist}
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
... ...
@@ -11,7 +11,7 @@ Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/m2r
13 13
 Source0:        https://github.com/miyakogi/m2r/archive/v%{version}/m2r-%{version}.tar.gz
14
-%define         sha1 m2r=0b4ce1ba98d380e641657a673675568cc692f0c8
14
+%define sha1    m2r=a8da99cfb8d964fbd1404eff8fe3782dfa2ff3a6
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -96,6 +96,8 @@ popd
96 96
 %{_bindir}/m2r3
97 97
 
98 98
 %changelog
99
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.2.0-1
100
+-   Update to version 0.2.0
99 101
 *   Fri Jul 21 2017 Divya Thaluru <dthaluru@vmware.com> 0.1.7-1
100 102
 -   Updated version to 0.1.7
101 103
 -   Fixed make check errors
... ...
@@ -2,14 +2,14 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-mako
5
-Version:        1.0.6
6
-Release:        5%{?dist}
5
+Version:        1.0.7
6
+Release:        1%{?dist}
7 7
 Summary:        Python templating language
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Url:            https://pypi.python.org/packages/56/4b/cb75836863a6382199aefb3d3809937e21fa4cb0db15a4f4ba0ecc2e7e8e/Mako-%{version}.tar.gz
11 11
 Source0:        Mako-%{version}.tar.gz
12
-%define sha1    Mako=8cbc52319268525208c88dd3ef62c929069e4b24
12
+%define sha1    Mako=bf0c1f4cdfca4dd37bc0c9f83e984a0558268b42
13 13
 
14 14
 BuildRequires:  python2
15 15
 BuildRequires:  python2-libs
... ...
@@ -72,6 +72,8 @@ popd
72 72
 %{_bindir}/mako-render3
73 73
 
74 74
 %changelog
75
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.0.7-1
76
+-   Update to version 1.0.7
75 77
 *   Thu Jul 06 2017 Xiaolin Li <xiaolinl@vmware.com> 1.0.6-5
76 78
 -   Fix make check issues.
77 79
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 1.0.6-4
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        The fastest markdown parser in pure Python.
5 5
 Name:           python-mistune
6
-Version:        0.7.4
7
-Release:        2%{?dist}
6
+Version:        0.8.3
7
+Release:        1%{?dist}
8 8
 License:        BSD
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/mistune/
13 13
 Source0:        https://files.pythonhosted.org/packages/source/m/mistune/mistune-%{version}.tar.gz
14
-%define         sha1 mistune=23adb8fe73662bfc0f1b21009a8df2fc9affd4aa
14
+%define sha1    mistune=993c67443f393f9645d5f969492a8a107d9edc5f
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -73,6 +73,8 @@ popd
73 73
 %{python3_sitelib}/*
74 74
 
75 75
 %changelog
76
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.8.3-1
77
+-   Update to version 0.8.3
76 78
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 0.7.4-2
77 79
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
78 80
 *   Mon Mar 20 2017 Xiaolin Li <xiaolinl@vmware.com> 0.7.4-1
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        MessagePack (de)serializer.
5 5
 Name:           python-msgpack
6
-Version:        0.4.8
7
-Release:        2%{?dist}
6
+Version:        0.5.6
7
+Release:        1%{?dist}
8 8
 License:        Apache Software License
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            http://msgpack.org/
13
-Source0:        https://pypi.io/packages/source/m/msgpack-python/msgpack-python-%{version}.tar.gz
14
-%define sha1    msgpack-python=59d4af5f0598bd31469cad7df316d70e6b492b1d
13
+Source0:        https://pypi.io/packages/source/m/msgpack-python/msgpack-%{version}.tar.gz
14
+%define sha1    msgpack=916c234864a5eaae179982dcd4b20efaa3677a30
15 15
 
16 16
 BuildRequires:  python2-devel
17 17
 BuildRequires:  python-setuptools
... ...
@@ -30,7 +30,7 @@ Requires:       python3
30 30
 %description -n python3-msgpack
31 31
 
32 32
 %prep
33
-%setup -q -n msgpack-python-%{version}
33
+%setup -q -n msgpack-%{version}
34 34
 rm -rf ../p3dir
35 35
 cp -a . ../p3dir
36 36
 
... ...
@@ -61,6 +61,8 @@ popd
61 61
 %{python3_sitelib}/*
62 62
 
63 63
 %changelog
64
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.5.6-1
65
+-   Update to version 0.5.6
64 66
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 0.4.8-2
65 67
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
66 68
 *   Thu May 25 2017 Xiaolin Li <xiaolinl@vmware.com> 0.4.8-1
... ...
@@ -2,14 +2,14 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-ndg-httpsclient
5
-Version:        0.4.2
5
+Version:        0.5.1
6 6
 Release:        1%{?dist}
7 7
 Summary:        Enhanced HTTPS support for httplib and urllib2 using PyOpenSSL.
8 8
 License:        BSD
9 9
 Group:          Development/Languages/Python
10 10
 Url:            https://pypi.python.org/pypi/ndg-httpsclient
11 11
 Source0:        ndg_httpsclient-%{version}.tar.gz
12
-%define sha1    ndg_httpsclient=03396d0b960c414e92ff355b4fe0fe210855fd58
12
+%define sha1    ndg_httpsclient=aa0b3c2d8ada61fa3f4e82ed307056b14cc63cb9
13 13
 Vendor:         VMware, Inc.
14 14
 Distribution:   Photon
15 15
 
... ...
@@ -64,5 +64,7 @@ python2 setup.py install --prefix=%{_prefix} --root=%{buildroot}
64 64
 %{python3_sitelib}/*
65 65
 
66 66
 %changelog
67
+*   Sat Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.5.1-1
68
+-   Updated to 0.5.1
67 69
 *   Tue Aug 29 2017 Vinay Kulkarni <kulkarniv@vmware.com> 0.4.2-1
68 70
 -   Initial version of python ndg-httpsclient for PhotonOS.
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Array processing for numbers, strings, records, and objects
5 5
 Name:           python-numpy
6
-Version:        1.12.1
7
-Release:        5%{?dist}
6
+Version:        1.15.1
7
+Release:        1%{?dist}
8 8
 License:        BSD
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/numpy
13 13
 Source0:        https://pypi.python.org/packages/a5/16/8a678404411842fe02d780b5f0a676ff4d79cd58f0f22acddab1b392e230/numpy-%{version}.zip 
14
-%define sha1    numpy=50d8a6dc5d95c914119d21b0c047b9761bbccd59 
14
+%define sha1    numpy=2e7548d4972e5366dd8b30ca3639e243dae96af9
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -80,6 +80,8 @@ rm -rf test
80 80
 %{_bindir}/f2py3
81 81
 
82 82
 %changelog
83
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.15.1-1
84
+-   Update to version 1.15.1
83 85
 *   Fri Aug 25 2017 Alexey Makhalov <amakhalov@vmware.com> 1.12.1-5
84 86
 -   Fix compilation issue for glibc-2.26
85 87
 *   Wed Jul 26 2017 Divya Thaluru <dthaluru@vmware.com> 1.12.1-4
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        An implementation of the OAuth request-signing logic
5 5
 Name:           python-oauthlib
6
-Version:        2.0.2
7
-Release:        3%{?dist}
6
+Version:        2.1.0
7
+Release:        1%{?dist}
8 8
 License:        BSD
9 9
 Url:            https://pypi.python.org/pypi/python-oauthlib/
10 10
 Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13
-Source0:        https://pypi.python.org/packages/fa/2e/25f25e6c69d97cf921f0a8f7d520e0ef336dd3deca0142c0b634b0236a90/oauthlib-2.0.2.tar.gz
14
-%define sha1    oauthlib=e9d2d2dba4526cad5db3d6a18bf2ca168087efcf
13
+Source0:        https://pypi.python.org/packages/fa/2e/25f25e6c69d97cf921f0a8f7d520e0ef336dd3deca0142c0b634b0236a90/oauthlib-%{version}.tar.gz
14
+%define sha1    oauthlib=3e7b426212fc0d9f91813a983238321ee9026d15
15 15
 
16 16
 BuildRequires:  python2-devel
17 17
 BuildRequires:  python-setuptools
... ...
@@ -75,6 +75,8 @@ popd
75 75
 %{python3_sitelib}/*
76 76
 
77 77
 %changelog
78
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.1.0-1
79
+-   Update to version 2.1.0
78 80
 *   Fri Jul 07 2017 Chang Lee <changlee@vmware.com> 2.0.2-3
79 81
 -   Add  libffi-devel in BuildRequires and install mock python module in %check
80 82
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 2.0.2-2
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Core utilities for Python packages
5 5
 Name:           python-packaging
6
-Version:        16.8
7
-Release:        4%{?dist}
6
+Version:        17.1
7
+Release:        1%{?dist}
8 8
 Url:            https://pypi.python.org/pypi/packaging
9 9
 License:        BSD or ASL 2.0
10 10
 Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        pypi.python.org/packages/source/p/packaging/packaging-%{version}.tar.gz
14
-%define sha1    packaging=68f9574b50683c0962ad90346879e7a2319cc6d8
14
+%define sha1    packaging=8dbd54a645fcc7951fcd6c06e9ac6494a0ada816
15 15
 BuildRequires:  python2
16 16
 BuildRequires:  python2-libs
17 17
 BuildRequires:  python2-devel
... ...
@@ -88,6 +88,8 @@ PYTHONPATH=./ py.test3
88 88
 %{python3_sitelib}/*
89 89
 
90 90
 %changelog
91
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 17.1-1
92
+-   Update to version 17.1
91 93
 *   Wed Jul 26 2017 Divya Thaluru <dthaluru@vmware.com> 16.8-4
92 94
 -   Fixed rpm check errors
93 95
 -   Fixed runtime dependencies
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Python Build Reasonableness
5 5
 Name:           python-pbr
6
-Version:        2.1.0
7
-Release:        5%{?dist}
6
+Version:        4.2.0
7
+Release:        1%{?dist}
8 8
 License:        ASL 2.0
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://docs.openstack.org/developer/pbr/
13 13
 Source0:        https://pypi.io/packages/source/p/pbr/pbr-%{version}.tar.gz
14
-%define sha1    pbr=cb5278676a96b429e491435ac04cfaf97b41d1c5
14
+%define sha1    pbr=10165d4998cbe252676ee95306d8f2c843ad2fe6
15 15
 Patch0:         disable-test-wsgi.patch
16 16
 BuildRequires:  python-docutils
17 17
 BuildRequires:  python-setuptools
... ...
@@ -103,6 +103,8 @@ popd
103 103
 %{python3_sitelib}/pbr
104 104
 
105 105
 %changelog
106
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 4.2.0-1
107
+-   Update to version 4.2.0
106 108
 *   Wed Jul 19 2017 Divya Thaluru <dthaluru@vmware.com> 2.1.0-5
107 109
 -   Fixed make check failure
108 110
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 2.1.0-4
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Pexpect is a Pure Python Expect-like module
5 5
 Name:           python-pexpect
6
-Version:        4.2.1
7
-Release:        2%{?dist}
6
+Version:        4.6.0
7
+Release:        1%{?dist}
8 8
 License:        ISC
9 9
 Url:            https://github.com/pexpect/pexpect
10 10
 Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13
-Source0:        https://github.com/pexpect/pexpect/archive/pexpect-4.2.1.tar.gz
14
-%define sha1    pexpect=9941c99b7f1501c0210dbb98f8b26940a4429565
13
+Source0:        https://github.com/pexpect/pexpect/archive/pexpect-%{version}.tar.gz
14
+%define sha1    pexpect=3d79bb7de5436cd0a8417a6249c765595a33abcf
15 15
 
16 16
 BuildRequires:  python2-devel
17 17
 BuildRequires:  python-setuptools
... ...
@@ -66,6 +66,8 @@ popd
66 66
 %{python3_sitelib}/*
67 67
 
68 68
 %changelog
69
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 4.6.0-1
70
+-   Update to version 4.6.0
69 71
 *   Tue Sep 19 2017 Kumar Kaushik <kaushikk@vmware.com> 4.2.1-2
70 72
 -   Adding requires on ptyprocess
71 73
 *   Mon Sep 11 2017 Kumar Kaushik <kaushikk@vmware.com> 4.2.1-1
... ...
@@ -1,7 +1,7 @@
1 1
 %{!?python2_sitelib: %define python2_sitelib %(python2 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
2 2
 Name:           python-pip
3
-Version:        9.0.1
4
-Release:        6%{?dist}
3
+Version:        18.0
4
+Release:        1%{?dist}
5 5
 Url:            https://pypi.python.org/pypi/pip
6 6
 Summary:        The PyPA recommended tool for installing Python packages.
7 7
 License:        MIT
... ...
@@ -9,12 +9,12 @@ Group:          Development/Languages/Python
9 9
 Vendor:         VMware, Inc.
10 10
 Distribution:   Photon
11 11
 Source0:        https://pypi.python.org/packages/11/b6/abcb525026a4be042b486df43905d6893fb04f05aac21c32c638e939e447/pip-%{version}.tar.gz
12
-%define sha1 pip-%{version}=57ff41e99cb01b6a1c2b0999161589b726f0ec8b
12
+%define sha1    pip=337f4694bfcd4d698d9b02b38a7520fabc42a1d9
13 13
 # To get tests:
14 14
 # git clone https://github.com/pypa/pip && cd pip
15 15
 # git checkout 9.0.1 && tar -czvf ../pip-tests-9.0.1.tar.gz tests/
16 16
 Source1:        pip-tests-%{version}.tar.gz
17
-%define sha1 pip-tests=cffb5530dba01bc542320a5c41b0a667f5ec6f5f
17
+%define sha1 pip-tests=f469fa967798bbae82039151e93d696bc2abfd87
18 18
 BuildRequires:  python2
19 19
 BuildRequires:  python2-libs
20 20
 BuildRequires:  python-setuptools
... ...
@@ -57,6 +57,8 @@ PYTHONPATH=%{buildroot}%{python2_sitelib} py.test -m 'not network' -k 'not svn a
57 57
 %{_bindir}/*
58 58
 
59 59
 %changelog
60
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 18.0-1
61
+-   Update to version 18.0
60 62
 *   Thu Jul 20 2017 Divya Thaluru <dthaluru@vmware.com> 9.0.1-6
61 63
 -   Fixed make check errors
62 64
 *   Thu Jun 15 2017 Dheeraj Shetty <dheerajs@vmware.com> 9.0.1-5
... ...
@@ -2,7 +2,7 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-ply
5
-Version:        3.10
5
+Version:        3.11
6 6
 Release:        1%{?dist}
7 7
 Summary:        Python Lex & Yacc
8 8
 License:        BSD-3-Clause
... ...
@@ -11,7 +11,7 @@ Url:            http://www.dabeaz.com/ply/
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        https://github.com/dabeaz/ply/archive/ply-%{version}.tar.gz 
14
-%define sha1    ply=13b8e62584f70b2cff5a791a4af7fea793ebd580
14
+%define sha1    ply=10a555a32095991fbc7f7ed10c677a14e21fad1d
15 15
 BuildRequires:  python2-devel
16 16
 Requires:       python2
17 17
 BuildArch:      noarch
... ...
@@ -67,5 +67,7 @@ rm -rf %{buildroot}
67 67
 %{python3_sitelib}/*
68 68
 
69 69
 %changelog
70
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 3.11-1
71
+-   Update to version 3.11
70 72
 *   Fri Jul 14 2017 Kumar Kaushik <kaushikk@vmware.com> 3.10-1
71 73
 -   Initial packaging.
... ...
@@ -2,14 +2,14 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-prometheus_client
5
-Version:        0.0.20
6
-Release:        2%{?dist}
5
+Version:        0.3.1
6
+Release:        1%{?dist}
7 7
 Summary:        Python client for the Prometheus monitoring system.
8 8
 License:        Apache-2.0
9 9
 Group:          Development/Languages/Python
10 10
 Url:            https://pypi.python.org/pypi/prometheus_client
11 11
 Source0:        prometheus_client-%{version}.tar.gz
12
-%define sha1    prometheus_client=9d39131f386af8965aef93e26ddc26ea508b3a48
12
+%define sha1    prometheus_client=43aed68fa484883fa53be38f1bf19790ea9a4438
13 13
 Vendor:         VMware, Inc.
14 14
 Distribution:   Photon
15 15
 
... ...
@@ -41,7 +41,7 @@ Requires:       python3-setuptools
41 41
 Python 3 version.
42 42
 
43 43
 %prep
44
-%setup -n client_python-%{version}
44
+%setup -n prometheus_client-%{version}
45 45
 rm -rf ../p3dir
46 46
 cp -a . ../p3dir
47 47
 
... ...
@@ -72,6 +72,8 @@ popd
72 72
 %{python3_sitelib}/*
73 73
 
74 74
 %changelog
75
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.3.1-1
76
+-   Update to version 0.3.1
75 77
 *   Tue Sep 19 2017 Bo Gan <ganb@vmware.com> 0.0.20-2
76 78
 -   fix make check issue by using upstream sources
77 79
 *   Fri Aug 25 2017 Vinay Kulkarni <kulkarniv@vmware.com> 0.0.20-1
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Library for building powerful interactive command lines in Python.
5 5
 Name:           python-prompt_toolkit
6
-Version:        1.0.14
7
-Release:        4%{?dist}
6
+Version:        2.0.4
7
+Release:        1%{?dist}
8 8
 License:        BSD
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/prompt_toolkit
13 13
 Source0:        https://files.pythonhosted.org/packages/source/p/prompt_toolkit/prompt_toolkit-%{version}.tar.gz
14
-%define         sha1 prompt_toolkit=fa723a6f33927917cc4d98a4f82b0d82970a80e7
14
+%define sha1    prompt_toolkit=5ac2c31dd9f443da4aa143dde56a8b5c44a254c5
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -91,6 +91,8 @@ popd
91 91
 %{python3_sitelib}/*
92 92
 
93 93
 %changelog
94
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.0.4-1
95
+-   Update to version 2.0.4
94 96
 *   Fri Jul 21 2017 Divya Thaluru <dthaluru@vmware.com> 1.0.14-4
95 97
 -   Added packages which are required during runtime
96 98
 *   Wed Jul 12 2017 Chang Lee <changlee@vmware.com> 1.0.14-3
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Python-PostgreSQL Database Adapter
5 5
 Name:           python-psycopg2
6
-Version:        2.7.1
7
-Release:        3%{?dist}
6
+Version:        2.7.5
7
+Release:        1%{?dist}
8 8
 Url:            https://pypi.python.org/pypi/psycopg2
9 9
 License:        LGPL with exceptions or ZPL
10 10
 Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        https://files.pythonhosted.org/packages/source/p/psycopg2/psycopg2-%{version}.tar.gz
14
-%define sha1    psycopg2=284ae137dc4ddf1855d47f7e92434fcd06a27ec6
14
+%define sha1    psycopg2=4f77e3efcf9a0970be5120352274315f7bd1c754
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -94,6 +94,8 @@ rm -r /home/postgres/data &>/dev/null ||:
94 94
 %{python3_sitelib}/*
95 95
 
96 96
 %changelog
97
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.7.5-1
98
+-   Update to version 2.7.5
97 99
 *   Wed Aug 09 2017 Xiaolin Li <xiaolinl@vmware.com> 2.7.1-3
98 100
 -   Fixed make check errors
99 101
 *   Thu Jul 6 2017 Divya Thaluru <dthaluru@vmware.com> 2.7.1-2
... ...
@@ -3,7 +3,7 @@
3 3
 
4 4
 Summary:        Run a subprocess in a pseudo terminal.
5 5
 Name:           python-ptyprocess
6
-Version:        0.5.2
6
+Version:        0.6.0
7 7
 Release:        1%{?dist}
8 8
 License:        ISC
9 9
 Url:            https://github.com/pexpect/ptyprocess
... ...
@@ -11,7 +11,7 @@ Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        https://files.pythonhosted.org/packages/source/p/ptyprocess/ptyprocess-%{version}.tar.gz
14
-%define sha1    ptyprocess=30b860d5509191d657397c312f2351f9559c5f4e
14
+%define sha1    ptyprocess=39622a2ff2cb456f17db542d60e5a0782e354128
15 15
 
16 16
 BuildRequires:  python2-devel
17 17
 BuildRequires:  python-setuptools
... ...
@@ -62,6 +62,8 @@ popd
62 62
 %{python3_sitelib}/*
63 63
 
64 64
 %changelog
65
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.6.0-1
66
+-   Update to version 0.6.0
65 67
 *   Tue Sep 19 2017 Kumar Kaushik <kaushikk@vmware.com> 0.5.2-1
66 68
 -   Initial packaging for Photon
67 69
 
... ...
@@ -2,16 +2,15 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 Summary:        Python wrapper module around the OpenSSL library
4 4
 Name:           python-pyOpenSSL
5
-Version:        17.2.0
6
-Release:        2%{?dist}
5
+Version:        18.0.0
6
+Release:        1%{?dist}
7 7
 Url:            https://github.com/pyca/pyopenssl
8 8
 License:        ASL 2.0
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Source0:        https://files.pythonhosted.org/packages/source/p/pyOpenSSL/pyOpenSSL-%{version}.tar.gz
13
-%define sha1    pyOpenSSL=ab5454f2d297c642c7c3dffeeca359f914a11dd3
14
-Patch0:         X509StoreContext_mem_leak.patch
13
+%define sha1    pyOpenSSL=a41b82512585dd05a5370fb737f4eb4119030a38
15 14
 BuildRequires:  python2
16 15
 BuildRequires:  python2-libs
17 16
 BuildRequires:  python2-devel
... ...
@@ -73,7 +72,6 @@ Python 3 version.
73 73
 
74 74
 %prep
75 75
 %setup -q -n pyOpenSSL-%{version}
76
-%patch0 -p1
77 76
 rm -rf ../p3dir
78 77
 cp -a . ../p3dir
79 78
 
... ...
@@ -115,6 +113,8 @@ popd
115 115
 %{python3_sitelib}/*
116 116
 
117 117
 %changelog
118
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 18.0.0-1
119
+-   Update to version 18.0.0
118 120
 *   Thu Jun 14 2018 Tapas Kundu <tkundu@vmware.com> 17.2.0-2
119 121
 -   Added memory fix for X509StoreContext Class.
120 122
 *   Mon Aug 14 2017 Xiaolin Li <xiaolinl@vmware.com> 17.2.0-1
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        A collection of ASN.1-based protocols modules.
5 5
 Name:           python-pyasn1-modules
6
-Version:        0.0.8
7
-Release:        2%{?dist}
6
+Version:        0.2.2
7
+Release:        1%{?dist}
8 8
 Url:            https://pypi.python.org/pypi/pyasn1-modules
9 9
 License:        BSD
10 10
 Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        pyasn1-modules-%{version}.tar.gz
14
-%define sha1    pyasn1-modules=0ee39382b5b97c8694a3373706edc1baea2e0e71
14
+%define sha1    pyasn1-modules=a01ed1546373fd113c1ddf3ad686bbdf07251a00
15 15
 
16 16
 BuildArch:      noarch
17 17
 
... ...
@@ -93,6 +93,8 @@ popd
93 93
 %{python3_sitelib}/*
94 94
 
95 95
 %changelog
96
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.2.2-1
97
+-   Update to version 0.2.2
96 98
 *   Mon Aug 14 2017 Xiaolin Li <xiaolinl@vmware.com> 0.0.8-2
97 99
 -   Fixed make check.
98 100
 *   Mon Mar 13 2017 Xiaolin Li <xiaolinl@vmware.com> 0.0.8-1
... ...
@@ -2,14 +2,14 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-pyasn1
5
-Version:        0.2.3
6
-Release:        3%{?dist}
5
+Version:        0.4.4
6
+Release:        1%{?dist}
7 7
 Summary:        Implementation of ASN.1 types and codecs in Python programming language
8 8
 License:        BSD
9 9
 Group:          Development/Languages/Python
10 10
 Url:            https://pypi.python.org/packages/source/p/pyasn1/pyasn1-%{version}.tar.gz
11 11
 Source0:        pyasn1-%{version}.tar.gz
12
-%define sha1    pyasn1=e30253a024d1388a96be8e84245a0d38f47467ff
12
+%define sha1    pyasn1=10f67e61e30c064301c826c6e5e461ff7bf5827d
13 13
 
14 14
 BuildRequires:  python2
15 15
 BuildRequires:  python2-libs
... ...
@@ -68,6 +68,8 @@ popd
68 68
 %{python3_sitelib}/*
69 69
 
70 70
 %changelog
71
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.4.4-1
72
+-   Update to version 0.4.4
71 73
 *   Thu Mar 23 2017 Xiaolin Li <xiaolinl@vmware.com> 0.2.3-1
72 74
 -   Updated to version 0.2.3.
73 75
 *   Mon Oct 04 2016 ChangLee <changlee@vmware.com> 0.1.9-3
... ...
@@ -2,15 +2,15 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 Summary:        Python C parser
4 4
 Name:           python-pycparser
5
-Version:        2.17
6
-Release:        3%{?dist}
5
+Version:        2.18
6
+Release:        1%{?dist}
7 7
 Url:            https://pypi.python.org/pypi/pycparser
8 8
 License:        BSD
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Source0:        https://pypi.python.org/packages/source/p/pycparser/pycparser-%{version}.tar.gz
13
-%define sha1    pycparser=afc1f70c6fce0e196dece88d6da3b8d5b2af6297
13
+%define sha1    pycparser=1c75af69ae6273b1f1f531744f87d060965ed85d
14 14
 
15 15
 BuildRequires:  python2
16 16
 BuildRequires:  python2-libs
... ...
@@ -60,6 +60,8 @@ python2 all_tests.py
60 60
 %{python3_sitelib}/*
61 61
 
62 62
 %changelog
63
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.18-1
64
+-   Update to version 2.18
63 65
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 2.17-3
64 66
 -   Use python2 instead of python
65 67
 *   Tue Apr 25 2017 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 2.17-2
... ...
@@ -5,15 +5,15 @@
5 5
 
6 6
 Summary:        World timezone definitions, modern and historical
7 7
 Name:           python-pytz
8
-Version:        2017.2
9
-Release:        3%{?dist}
8
+Version:        2018.5
9
+Release:        1%{?dist}
10 10
 Url:            https://pypi.python.org/pypi/pytz
11 11
 License:        MIT
12 12
 Group:          Development/Languages/Python
13 13
 Vendor:         VMware, Inc.
14 14
 Distribution:   Photon
15
-Source0:        https://files.pythonhosted.org/packages/source/p/pytz/pytz-%{version}.zip
16
-%define sha1    pytz=c2d0024d4a6bd649290813f0a57d849accf82fa9
15
+Source0:        https://files.pythonhosted.org/packages/source/p/pytz/pytz-%{version}.tar.gz
16
+%define sha1    pytz=014d842f110c031bc34f651c872f391756836758
17 17
 BuildArch:      noarch
18 18
 
19 19
 BuildRequires:  python2
... ...
@@ -87,6 +87,8 @@ popd
87 87
 %{python3_sitelib}/*
88 88
 
89 89
 %changelog
90
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2018.5-1
91
+-   Update to version 2018.5
90 92
 *   Fri Aug 18 2017 Rongrong Qiu <rqiu@vmware.com> 2017.2-3
91 93
 -   add BuildRequires for make check bug 1937039
92 94
 *   Wed Apr 26 2017 Dheeraj Shetty <dheerajs@vmware.com> 2017.2-2
... ...
@@ -3,20 +3,20 @@
3 3
 
4 4
 Summary:        Pure Python Vi Implementation.
5 5
 Name:           python-pyvim
6
-Version:        0.0.20
7
-Release:        4%{?dist}
6
+Version:        2.0.22
7
+Release:        1%{?dist}
8 8
 License:        UNKNOWN
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/service_identity
13 13
 Source0:        pyvim-%{version}.tar.gz
14
-%define         sha1 pyvim-%{version}=0bcda6d5f01be0b334f8bdf974b23c3f65e023ae
14
+%define sha1    pyvim=b44c9e78755b1f13ee45a2903758386425e9a2ba
15 15
 # To get tests:
16 16
 # git clone https://github.com/jonathanslenders/pyvim.git && cd pyvim
17 17
 # git checkout 6860c413 && tar -czvf ../pyvim-tests-0.0.20.tar.gz tests/
18 18
 Source1:        pyvim-tests-%{version}.tar.gz
19
-%define sha1 pyvim-tests=480cec56514ea5ff0387e72c53bbddb951d95954
19
+%define sha1 pyvim-tests=57c48d48d1e20ae997975a99504be26191b2a662
20 20
 
21 21
 BuildRequires:  python2
22 22
 BuildRequires:  python2-libs
... ...
@@ -81,6 +81,8 @@ PYTHONPATH=./ py.test3
81 81
 %{_bindir}/pyvim3
82 82
 
83 83
 %changelog
84
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.0.22-1
85
+-   Update to version 2.0.22
84 86
 *   Mon Jul 24 2017 Divya Thaluru <dthaluru@vmware.com> 0.0.20-4
85 87
 -   Fixed runtime dependencies and make check errors
86 88
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 0.0.20-3
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        pyVmomi is the Python SDK for the VMware vSphere API that allows you to manage ESX, ESXi, and vCenter.
5 5
 Name:           python-pyvmomi
6
-Version:        6.5
7
-Release:        2%{?dist}
6
+Version:        6.7.0.2018.9
7
+Release:        1%{?dist}
8 8
 License:        OSI Approved :: Apache Software License
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/pyvmomi
13 13
 Source0:        pyvmomi-%{version}.tar.gz
14
-%define         sha1 pyvmomi=3fd28a2f0f9d0c771bece4a7dab8fcb140942cbc
14
+%define sha1    pyvmomi=83932e0751c565db9438ee86002b72dd19282fca
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -62,6 +62,8 @@ python3 setup.py test
62 62
 %{python3_sitelib}/*
63 63
 
64 64
 %changelog
65
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 6.7.0.2018.9-1
66
+-   Update to version 6.7.0.2018.9
65 67
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 6.5-2
66 68
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
67 69
 *   Mon Mar 06 2017 Xiaolin Li <xiaolinl@vmware.com> 6.5-1
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Awesome Python HTTP Library That's Actually Usable
5 5
 Name:           python-requests
6
-Version:        2.13.0
7
-Release:        3%{?dist}
6
+Version:        2.19.1
7
+Release:        1%{?dist}
8 8
 License:        Apache2
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            http://python-requests.org
13 13
 Source0:        http://pypi.python.org/packages/source/r/requests/requests-%{version}.tar.gz
14
-%define sha1 requests=827f7c8abb5a57d980d9870908724613b8b120c1
14
+%define sha1    requests=b6e6ed992c86835aa1a7d7a81fec2aee0d385416
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -78,15 +78,17 @@ popd
78 78
 
79 79
 %files
80 80
 %defattr(-,root,root)
81
-%doc README.rst HISTORY.rst LICENSE NOTICE
81
+%doc README.rst HISTORY.rst LICENSE
82 82
 %{python2_sitelib}/*
83 83
 
84 84
 %files -n python3-requests
85 85
 %defattr(-,root,root)
86
-%doc README.rst HISTORY.rst LICENSE NOTICE
86
+%doc README.rst HISTORY.rst LICENSE
87 87
 %{python3_sitelib}/*
88 88
 
89 89
 %changelog
90
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 2.19.1-1
91
+-   Update to version 2.19.1
90 92
 *   Mon Aug 07 2017 Xiaolin Li <xiaolinl@vmware.com> 2.13.0-3
91 93
 -   Disabled check section as tests are not available
92 94
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 2.13.0-2
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Service identity verification for pyOpenSSL.
5 5
 Name:           python-service_identity
6
-Version:        16.0.0
7
-Release:        3%{?dist}
6
+Version:        17.0.0
7
+Release:        1%{?dist}
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/service_identity
13 13
 Source0:        service_identity-%{version}.tar.gz
14
-%define         sha1 service_identity=42617f5abbd917c663aea58c4628b82e80d245ce
14
+%define sha1    service_identity=63408ac8b2cfd70f3b31fdcfefc1414b5b965cbc
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -89,6 +89,8 @@ PYTHONPATH="%{buildroot}%{python3_sitelib}" py.test3
89 89
 %{python3_sitelib}/*
90 90
 
91 91
 %changelog
92
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 17.0.0-1
93
+-   Update to version 17.0.0
92 94
 *   Fri Jul 21 2017 Divya Thaluru <dthaluru@vmware.com> 16.0.0-3
93 95
 -   Fixed runtime dependencies
94 96
 -   Fixed make check errors
... ...
@@ -2,7 +2,7 @@
2 2
 
3 3
 Summary: Download, build, install, upgrade, and uninstall Python packages
4 4
 Name: python-setuptools
5
-Version: 36.0.1
5
+Version:        40.2.0
6 6
 Release: 1%{?dist}
7 7
 License: Python or ZPLv2.0
8 8
 Group: Development/Languages
... ...
@@ -11,7 +11,7 @@ Distribution: Photon
11 11
 URL: https://pypi.python.org/pypi/setuptools
12 12
 
13 13
 Source0: https://pypi.python.org/packages/a9/23/720c7558ba6ad3e0f5ad01e0d6ea2288b486da32f053c73e259f7c392042/setuptools-%{version}.zip
14
-%define sha1 setuptools=e1c5660030935541c08f7050939f9095cea96936
14
+%define sha1    setuptools=5e225ba87f03d9e89bad793e1871e3b5c12e0d74
15 15
 
16 16
 BuildArch: noarch
17 17
 
... ...
@@ -55,6 +55,8 @@ python2 setup.py test
55 55
 %{python2_sitelib}/*
56 56
 
57 57
 %changelog
58
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 40.2.0-1
59
+-   Update to version 40.2.0
58 60
 *       Tue Jun 20 2017 Dheeraj Shetty <dheerajs@vmware.com> 36.0.1-1
59 61
 -       Upgrade to 36.0.1 and remove the BuildRequires
60 62
 *       Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 34.3.3-2
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        the blessed package to manage your versions by scm tags.
5 5
 Name:           python-setuptools_scm
6
-Version:        1.15.0
7
-Release:        2%{?dist}
6
+Version:        3.1.0
7
+Release:        1%{?dist}
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/setuptools_scm
13 13
 Source0:        https://files.pythonhosted.org/packages/source/s/setuptools_scm/setuptools_scm-%{version}.tar.gz
14
-%define         sha1 setuptools_scm=273bb9fbc27d169cb9853b379db8f749ea7caede
14
+%define sha1    setuptools_scm=cffffd63429761edece3957321a50fbdb364f043
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -73,6 +73,8 @@ popd
73 73
 %{python3_sitelib}/*
74 74
 
75 75
 %changelog
76
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 3.1.0-1
77
+-   Update to version 3.1.0
76 78
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 1.15.0-2
77 79
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
78 80
 *   Mon Mar 20 2017 Xiaolin Li <xiaolinl@vmware.com> 1.15.0-1
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        Simple, fast, extensible JSON encoder/decoder for Python.
5 5
 Name:           python-simplejson
6
-Version:        3.10.0
7
-Release:        2%{?dist}
6
+Version:        3.16.1
7
+Release:        1%{?dist}
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/simplejson
13 13
 Source0:        simplejson-%{version}.tar.gz
14
-%define sha1    simplejson=dffc85c6851430578acf138c2a1193bc89a3eb0f
14
+%define sha1    simplejson=4c829f221e1941bfbc0732eb386b99c74f211296
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -59,6 +59,8 @@ python3 setup.py test
59 59
 %{python3_sitelib}/*
60 60
 
61 61
 %changelog
62
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 3.16.1-1
63
+-   Update to version 3.16.1
62 64
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 3.10.0-2
63 65
 -   Use python2 explicitly
64 66
 *   Wed Mar 01 2017 Xiaolin Li <xiaolinl@vmware.com> 3.10.0-1
... ...
@@ -2,14 +2,14 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-six
5
-Version:        1.10.0
6
-Release:        8%{?dist}
5
+Version:        1.11.0
6
+Release:        1%{?dist}
7 7
 Summary:        Python 2 and 3 compatibility utilities
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Url:            https://pypi.python.org/packages/source/s/six/six-%{version}.tar.gz
11 11
 Source0:        six-%{version}.tar.gz
12
-%define sha1    six=30d480d2e352e8e4c2aae042cf1bf33368ff0920
12
+%define sha1    six=3647372a0e104e7b53bd477762392024e1083ac0
13 13
 
14 14
 BuildRequires:  python2
15 15
 BuildRequires:  python2-libs
... ...
@@ -63,6 +63,8 @@ python3 test_six.py
63 63
 %{python3_sitelib}/*
64 64
 
65 65
 %changelog
66
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.11.0-1
67
+-   Update to version 1.11.0
66 68
 *   Tue Jun 23 2017 Dheeraj Shetty <dheerajs@vmware.com> 1.10.0-8
67 69
 -   Add python-setuptools to BuildRequires to avoid Update issues
68 70
 *   Wed Jun 21 2017 Xiaolin Li <xiaolinl@vmware.com> 1.10.0-7
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:       Python documentation generator
5 5
 Name:          python-sphinx
6
-Version:       1.5.3
7
-Release:       5%{?dist}
6
+Version:        1.7.9
7
+Release:       1%{?dist}
8 8
 Group:         Development/Tools
9 9
 License:       BSD-2-Clause
10 10
 URL:           http://www.vmware.com
11 11
 Vendor:        VMware, Inc.
12 12
 Distribution:  Photon
13 13
 Source0:       https://pypi.python.org/packages/a7/df/4487783152b14f2b7cd0b0c9afb119b262c584bf972b90ab544b61b74c62/Sphinx-%{version}.tar.gz
14
-%define sha1 Sphinx=e296be1f697ba5eda7941570d718544df8182648
14
+%define sha1    Sphinx=3182158c8e532bfc7d7a1c856c19b0648c06b0ff
15 15
 BuildRequires: python2
16 16
 BuildRequires: python2-libs
17 17
 BuildRequires: python2-devel
... ...
@@ -128,6 +128,8 @@ make -k check |& tee %{_specdir}/%{name}-check-log || %{nocheck}
128 128
 %{python3_sitelib}/*
129 129
 
130 130
 %changelog
131
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.7.9-1
132
+-   Update to version 1.7.9
131 133
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 1.5.3-5
132 134
 -   Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
133 135
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 1.5.3-4
... ...
@@ -2,15 +2,15 @@
2 2
 
3 3
 Summary:        The Python SQL Toolkit and Object Relational Mapper
4 4
 Name:           python-sqlalchemy
5
-Version:        1.1.7
6
-Release:        2%{?dist}
5
+Version:        1.2.11
6
+Release:        1%{?dist}
7 7
 Url:            http://www.sqlalchemy.org
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Source0:        https://pypi.python.org/packages/29/18/a78469bc449d9f92f6269cc62d0d6fbe6bf394d1031b447ad5e54463c3a0/SQLAlchemy-%{version}.tar.gz
13
-%define sha1 SQLAlchemy=9f7ba90b47f79ca556097f5eeea3b82c4a0ec6f2
13
+%define sha1    SQLAlchemy=cec4f8ed911e52930c06090458ccf19229a2381a
14 14
 BuildRequires:  python2
15 15
 BuildRequires:  python2-libs
16 16
 BuildRequires:  python-setuptools
... ...
@@ -42,6 +42,8 @@ python2 setup.py install --prefix=%{_prefix} --root=%{buildroot}
42 42
 %{python2_sitelib}/*
43 43
 
44 44
 %changelog
45
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.2.11-1
46
+-   Update to version 1.2.11
45 47
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 1.1.7-2
46 48
 -   Use python2 explicitly
47 49
 *   Thu Mar 30 2017 Siju Maliakkal <smaliakal@vmware.com> 1.1.7-1
... ...
@@ -1,14 +1,14 @@
1 1
 %define python2_ver %(python2 -c "import sys;print sys.version[0:3]")
2 2
 
3 3
 Name:           python-subprocess32
4
-Version:        3.2.7
5
-Release:        2%{?dist}
4
+Version:        3.5.2
5
+Release:        1%{?dist}
6 6
 Summary:        A backport of the subprocess module from Python 3.2/3.3 for use on 2.x
7 7
 License:        PSF
8 8
 Group:          Development/Languages/Python
9 9
 Url:            https://pypi.python.org/pypi/subprocess32
10 10
 Source0:        subprocess32-%{version}.tar.gz
11
-%define sha1    subprocess32=75a8664ba54663016315dae17510af97c5a96953
11
+%define sha1    subprocess32=d01a5a57c94a655992b6fc0172a6ab19f813bf70
12 12
 Vendor:         VMware, Inc.
13 13
 Distribution:   Photon
14 14
 
... ...
@@ -44,6 +44,8 @@ PYTHONPATH=build/lib.linux-%{_arch}-%{python2_ver}/ python2 test_subprocess32.py
44 44
 %{python_sitelib}/*
45 45
 
46 46
 %changelog
47
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 3.5.2-1
48
+-   Update to version 3.5.2
47 49
 *   Mon Sep 25 2017 Rui Gu <ruig@vmware.com> 3.2.7-2
48 50
 -   Fix make check failure.
49 51
 *   Fri Aug 25 2017 Vinay Kulkarni <kulkarniv@vmware.com> 3.2.7-1
... ...
@@ -2,8 +2,8 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-typing
5
-Version:        3.6.1
6
-Release:        3%{?dist}
5
+Version:        3.6.6
6
+Release:        1%{?dist}
7 7
 Summary:        Type Hints for Python
8 8
 License:        PSF
9 9
 Group:          Development/Tools
... ...
@@ -11,7 +11,7 @@ Url:            https://docs.python.org/3/library/typing.html
11 11
 Vendor:		VMware, Inc.
12 12
 Distribution:   Photon
13 13
 Source0:        https://pypi.python.org/packages/17/75/3698d7992a828ad6d7be99c0a888b75ed173a9280e53dbae67326029b60e/typing-%{version}.tar.gz
14
-%define sha1    typing=d6ce2f6379d2594c174adb1c94643297600c979c
14
+%define sha1    typing=8414f7e523f1f286f72392e9f8929d346df6f6a2
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-devel
... ...
@@ -32,6 +32,7 @@ BuildRequires:  python3
32 32
 BuildRequires:  python3-devel
33 33
 BuildRequires:  python3-libs
34 34
 BuildRequires:  python3-setuptools
35
+BuildRequires:  python3-xml
35 36
 Requires:       python3
36 37
 Requires:       python3-libs
37 38
 
... ...
@@ -74,6 +75,8 @@ PYTHONPATH=%{buildroot}%{python2_sitelib} \
74 74
 %{python3_sitelib}/*
75 75
 
76 76
 %changelog
77
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 3.6.6-1
78
+-   Update to version 3.6.6
77 79
 *   Fri Jul 14 2017 Kumar Kaushik <kaushikk@vmware.com> 3.6.1-3
78 80
 -   Adding python3 version.
79 81
 *   Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 3.6.1-2
... ...
@@ -3,7 +3,7 @@
3 3
 
4 4
 Summary:        tzinfo object for the local timezone.
5 5
 Name:           python-tzlocal
6
-Version:        1.4
6
+Version:        1.5.1
7 7
 Release:        1%{?dist}
8 8
 License:        MIT License
9 9
 Group:          Development/Languages/Python
... ...
@@ -11,7 +11,7 @@ Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/tzlocal/1.4
13 13
 Source0:        https://files.pythonhosted.org/packages/source/t/tzlocal/tzlocal-%{version}.tar.gz
14
-%define         sha1 tzlocal=98da003bd7e4aba02cfb6d1d62a8b5576c666310
14
+%define sha1    tzlocal=98dc51724f3201f66f4ec36f22b99bd03f3059bd
15 15
 BuildRequires:  python2
16 16
 BuildRequires:  python2-libs
17 17
 BuildRequires:  python2-devel
... ...
@@ -79,5 +79,7 @@ popd
79 79
 %{python3_sitelib}/*
80 80
 
81 81
 %changelog
82
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.5.1-1
83
+-   Update to version 1.5.1
82 84
 *   Mon Sep 11 2017 Xiaolin Li <xiaolinl@vmware.com> 1.4-1
83 85
 -   Initial packaging for Photon
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        A powerful, sanity-friendly HTTP client for Python.
5 5
 Name:           python-urllib3
6
-Version:        1.20
7
-Release:        5%{?dist}
6
+Version:        1.23
7
+Release:        1%{?dist}
8 8
 Url:            https://pypi.python.org/pypi/urllib3
9 9
 License:        MIT
10 10
 Group:          Development/Languages/Python
11 11
 Vendor:         VMware, Inc.
12 12
 Distribution:   Photon
13
-Source0:        https://github.com/shazow/urllib3/archive/urllib3-1.20.tar.gz
14
-%define sha1    urllib3=2608f2069d3bb1be36da9483c24aa2a0ada38501
13
+Source0:        https://github.com/shazow/urllib3/archive/urllib3-%{version}.tar.gz
14
+%define sha1    urllib3=0c54209c397958a7cebe13cb453ec8ef5833998d
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -87,6 +87,8 @@ ulimit -n $nofiles
87 87
 %{python3_sitelib}/*
88 88
 
89 89
 %changelog
90
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.23-1
91
+-   Update to version 1.23
90 92
 *   Tue Aug 15 2017 Xiaolin Li <xiaolinl@vmware.com> 1.20-5
91 93
 -   Increased number of open files per process to 5000 before run make check.
92 94
 *   Wed Jul 26 2017 Divya Thaluru <dthaluru@vmware.com> 1.20-4
... ...
@@ -2,14 +2,14 @@
2 2
 %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")}
3 3
 
4 4
 Name:           python-virtualenv
5
-Version:        15.1.0
5
+Version:        16.0.0
6 6
 Release:        1%{?dist}
7 7
 Summary:        Virtual Python Environment builder
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Url:            https://pypi.python.org/pypi/virtualenv
11 11
 Source0:        virtualenv-%{version}.tar.gz
12
-%define sha1    virtualenv=995ce0fa007210ac2f10258999d06813ecdd6eeb
12
+%define sha1    virtualenv=33831525c360459671d25f9e5abac931c414d2f7
13 13
 Vendor:         VMware, Inc.
14 14
 Distribution:   Photon
15 15
 
... ...
@@ -74,5 +74,7 @@ popd
74 74
 %{python3_sitelib}/*
75 75
 
76 76
 %changelog
77
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 16.0.0-1
78
+-   Update to version 16.0.0
77 79
 *   Fri Aug 25 2017 Vinay Kulkarni <kulkarniv@vmware.com> 15.1.0-1
78 80
 -   Initial version of python-virtualenv package for Photon.
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        WebOb provides objects for HTTP requests and responses..
5 5
 Name:           python-webob
6
-Version:        1.7.2
7
-Release:        3%{?dist}
6
+Version:        1.8.2
7
+Release:        1%{?dist}
8 8
 License:        MIT
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/WebOb
13 13
 Source0:        https://pypi.python.org/packages/1a/2b/322d6e01ba19c1e28349efe46dab1bd480c81a55af0658d63dc48ed62ee6/WebOb-%{version}.tar.gz
14
-%define sha1    WebOb=d8619c778a968f089cb0ce8c0b9153b0973cac21
14
+%define sha1    WebOb=6f23a2eec1510ceee66efd51d3a2b7025c4cdc2b
15 15
 
16 16
 BuildArch:      noarch
17 17
 
... ...
@@ -79,6 +79,8 @@ popd
79 79
 %{python3_sitelib}/*
80 80
 
81 81
 %changelog
82
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.8.2-1
83
+-   Update to version 1.8.2
82 84
 *   Mon Aug 07 2017 Xiaolin Li <xiaolinl@vmware.com> 1.7.2-3
83 85
 -   Fixed make check errors
84 86
 *   Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 1.7.2-2
... ...
@@ -3,15 +3,15 @@
3 3
 
4 4
 Summary:        The Swiss Army knife of Python web development
5 5
 Name:           python-werkzeug
6
-Version:        0.12.1
7
-Release:        2%{?dist}
6
+Version:        0.14.1
7
+Release:        1%{?dist}
8 8
 License:        BSD
9 9
 Group:          Development/Languages/Python
10 10
 Vendor:         VMware, Inc.
11 11
 Distribution:   Photon
12 12
 Url:            https://pypi.python.org/pypi/Werkzeug
13 13
 Source0:        https://pypi.python.org/packages/ab/65/d3f1edd1109cb1beb6b82f4139addad482df5b5ea113bdc98242383bf402/Werkzeug-%{version}.tar.gz
14
-%define         sha1 Werkzeug=c602720e37920533cfe533d4d16a5bc4fb7b2289
14
+%define sha1    Werkzeug=4b979fb960c5b5507ccb8a705931fa217013483d
15 15
 
16 16
 BuildRequires:  python2
17 17
 BuildRequires:  python2-libs
... ...
@@ -72,6 +72,8 @@ LANG=en_US.UTF-8 PYTHONPATH=./ py.test3
72 72
 %{python3_sitelib}/*
73 73
 
74 74
 %changelog
75
+*   Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 0.14.1-1
76
+-   Update to version 0.14.1
75 77
 *   Tue Jul 25 2017 Divya Thaluru <dthaluru@vmware.com> 0.12.1-2
76 78
 -   Fixed rpm check errors
77 79
 *   Thu Mar 30 2017 Siju Maliakkal <smaliakkal@vmware.com> 0.12.1-1