15
0

Accepting request 333890 from home:TheBlackCat:branches:devel:languages:python

Update to version 2015.9.6.2

OBS-URL: https://build.opensuse.org/request/show/333890
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-certifi?expand=0&rev=3
This commit is contained in:
Todd R
2015-09-26 10:57:24 +00:00
committed by Git OBS Bridge
parent 17beff2dbc
commit feb3a637b4
5 changed files with 36 additions and 19 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1e1bcbacd6357c151ae37cf0290dcc809721d32ce21fd6b7339568f3ddef1b69
size 168608

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dc3a2b2d9d1033dbf27586366ae61b9d7c44d8c3a6f29694ffcbb0618ea7aea6
size 368588

View File

@@ -1,11 +1,11 @@
--- a/certifi/core.py.orig 2014-05-16 16:50:08.000000000 +0200
+++ b/certifi/core.py 2014-12-22 12:28:19.529632069 +0100
@@ -13,7 +13,7 @@
--- a/certifi/core.py.orig
+++ b/certifi/core.py
@@ -21,7 +21,7 @@
def where():
f = os.path.split(__file__)[0]
- return os.path.join(f, 'cacert.pem')
+ return "/etc/ssl/ca-bundle.pem"
if __name__ == '__main__':
print(where())
def old_where():

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Sat Sep 26 10:27:12 UTC 2015 - toddrme2178@gmail.com
- Update to version 2015.9.6.2:
* Actually ship weak cert bundle.
* Provide old cert bundle.
* Use secure roots by default.
* Update scripts to use mkcert.org
* Concatenate the two roots
* Add the needed 1024-bit roots
* Move mkcert output to non-core file
- Fix dependencies on SLES 11
- Certifi is released under MPL-2.0; fix the license tag
- Rebase python-certifi-shipped-requests-cabundle.patch
-------------------------------------------------------------------
Wed Apr 22 13:31:54 UTC 2015 - mcihar@suse.cz

View File

@@ -16,24 +16,26 @@
Name: python-certifi
Version: 14.05.14
Version: 2015.9.6.2
Release: 0
License: ISC
License: MPL-2.0
Summary: Python package for providing Mozilla's CA Bundle
Url: http://python-requests.org
Url: https://pypi.python.org/pypi/certifi
Group: Development/Languages/Python
Source: https://pypi.python.org/packages/source/c/certifi/certifi-%{version}.tar.gz
# PATCH-FIX-SUSE -- prefer SUSE certificates
Patch0: python-certifi-shipped-requests-cabundle.patch
Patch0: python-certifi-shipped-requests-cabundle.patch
BuildRequires: python-devel
BuildRequires: python-setuptools
%if 0%{?suse_version}
Requires: ca-certificates
%endif
BuildRequires: python-setuptools
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%if 0%{?suse_version}
%if 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildRequires: ca-certificates
Requires: ca-certificates
%endif
%else
BuildArch: noarch
%endif
@@ -46,7 +48,7 @@ derived from Mozilla Firefox's canonical set.
%prep
%setup -q -n certifi-%{version}
%if 0%{?suse_version}
%if 0%{?suse_version} && 0%{?suse_version} > 1110
%patch0 -p1
%endif
@@ -55,7 +57,7 @@ python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%if 0%{?suse_version}
%if 0%{?suse_version} && 0%{?suse_version} > 1110
rm %{buildroot}/%{python_sitelib}/certifi/cacert.pem
%endif