Hello community,

here is the log from the commit of package python-suds.1846 for 
openSUSE:12.2:Update checked in at 2013-07-17 10:57:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.2:Update/python-suds.1846 (Old)
 and      /work/SRC/openSUSE:12.2:Update/.python-suds.1846.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-suds.1846"

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

--- /dev/null   2013-07-15 01:04:09.588030756 +0200
+++ /work/SRC/openSUSE:12.2:Update/.python-suds.1846.new/python-suds.changes    
2013-07-17 10:57:02.000000000 +0200
@@ -0,0 +1,50 @@
+-------------------------------------------------------------------
+Tue Jul  9 11:35:18 UTC 2013 - [email protected]
+
+- reverted noarch change as the update stack cannot migrate the
+  architecture during patch update.
+
+-------------------------------------------------------------------
+Thu Jul  4 14:10:03 UTC 2013 - [email protected]
+
+- Add suds-insecure-cache-tempdir.patch: Create random cache tempdir
+  to avoid other local user access (bnc#827568)
+
+-------------------------------------------------------------------
+Wed Dec 19 15:38:17 UTC 2012 - [email protected]
+
+- It's a noarch package
+
+-------------------------------------------------------------------
+Tue Nov 29 13:33:58 UTC 2011 - [email protected]
+
+- Use python-distribute instead of python-setuptools
+- Fix license to LGPL-3.0+ (SPDX style, see LICENSE)
+- Run testsuite
+
+-------------------------------------------------------------------
+Tue Nov 29 12:11:03 UTC 2011 - [email protected]
+
+- Cleanup spec file 
+
+-------------------------------------------------------------------
+Thu Nov 24 14:11:19 UTC 2011 - [email protected]
+
+- Format spec file 
+
+-------------------------------------------------------------------
+Tue Jan 11 10:11:44 CET 2011 - [email protected]
+
+- use distutils recorded file list
+
+-------------------------------------------------------------------
+Tue Jan 11 09:46:11 CET 2011 - [email protected]
+
+- update to 0.4
+
+-------------------------------------------------------------------
+Wed Oct 21 12:52:12 UTC 2009 - [email protected]
+
+- Update to suds-0.3.7
+- Add python-xml as a BuildDependency 
+

New:
----
  python-suds-0.4.tar.gz
  python-suds.changes
  python-suds.spec
  suds-insecure-cache-tempdir.patch

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

Other differences:
------------------
++++++ python-suds.spec ++++++
#
# spec file for package python-suds
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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


Name:           python-suds
Version:        0.4
Release:        0
Summary:        A lightweight SOAP python client that provides a service proxy 
for Web Services
License:        LGPL-3.0+
Group:          Development/Languages/Python
Url:            https://fedorahosted.org/suds
Source:         %{name}-%{version}.tar.gz
# PATCH-FIX-UPSTREAM [email protected]
Patch0:         suds-insecure-cache-tempdir.patch
BuildRequires:  fdupes
BuildRequires:  python-devel
BuildRequires:  python-distribute
BuildRequires:  python-nose
BuildRequires:  python-xml
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}

%description
Features
* No class generation
* Provides an object API.
* Reads wsdl at runtime for encoding/decoding
* Supports the following SOAP binding styles:
* Document/Literal
* RPC/Literal
* RPC/Encoded
* Provides objectification of WSDL defined:
* Types (objects)
* Enumerations
* Service and type objects provide inspection via print
* Supports unicode

%prep
%setup -q
%patch0 -p1

%build
python setup.py build

%install
python setup.py install --optimize=1 --prefix=%{_prefix} --root=%{buildroot}
# create symlinks for man pages
%fdupes -s %{buildroot}/%{_mandir}
# create hardlinks for the rest
%fdupes %{buildroot}

%check
nosetests

%files
%defattr(-,root,root,-)
%doc README LICENSE
%{python_sitelib}/*

%changelog
++++++ suds-insecure-cache-tempdir.patch ++++++
diff -ruN a/suds/cache.py b/suds/cache.py
--- a/suds/cache.py     2010-04-14 21:04:17.000000000 +0200
+++ b/suds/cache.py     2013-07-04 16:08:25.879241623 +0200
@@ -20,7 +20,7 @@
 
 import os
 import suds
-from tempfile import gettempdir as tmp
+import tempfile
 from suds.transport import *
 from suds.sax.parser import Parser
 from suds.sax.element import Element
@@ -138,7 +138,7 @@
         @type duration: {unit:value}
         """
         if location is None:
-            location = os.path.join(tmp(), 'suds')
+            location = tempfile.mkdtemp()
         self.location = location
         self.duration = (None, 0)
         self.setduration(**duration)
Binary files a/suds/.cache.py.swp and b/suds/.cache.py.swp differ
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to