Hello community,

here is the log from the commit of package python-seacucumber for 
openSUSE:Factory checked in at 2013-03-08 13:30:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-seacucumber (Old)
 and      /work/SRC/openSUSE:Factory/.python-seacucumber.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-seacucumber", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-seacucumber/python-seacucumber.changes    
2012-04-12 09:51:08.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-seacucumber.new/python-seacucumber.changes   
    2013-03-08 13:30:22.000000000 +0100
@@ -1,0 +2,6 @@
+Mon Jan 21 16:03:34 UTC 2013 - [email protected]
+
+- Update to version 1.5:
+  * No changelog available
+
+-------------------------------------------------------------------

Old:
----
  seacucumber-1.4.tar.gz

New:
----
  seacucumber-1.5.tar.gz

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

Other differences:
------------------
++++++ python-seacucumber.spec ++++++
--- /var/tmp/diff_new_pack.tj5Lqt/_old  2013-03-08 13:30:26.000000000 +0100
+++ /var/tmp/diff_new_pack.tj5Lqt/_new  2013-03-08 13:30:26.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-seacucumber
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -16,7 +16,7 @@
 #
 
 Name:           python-seacucumber
-Version:        1.4
+Version:        1.5
 Release:        0
 Url:            https://github.com/duointeractive/sea-cucumber/
 Summary:        A Django email backend for Amazon Simple Email Service, backed 
by celery

++++++ seacucumber-1.4.tar.gz -> seacucumber-1.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seacucumber-1.4/PKG-INFO new/seacucumber-1.5/PKG-INFO
--- old/seacucumber-1.4/PKG-INFO        2012-02-08 22:12:14.000000000 +0100
+++ new/seacucumber-1.5/PKG-INFO        2012-07-16 17:04:09.000000000 +0200
@@ -1,13 +1,13 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: seacucumber
-Version: 1.4
+Version: 1.5
 Summary: A Django email backend for Amazon Simple Email Service, backed by 
celery.
 Home-page: https://github.com/duointeractive/sea-cucumber/
 Author: Gregory Taylor
 Author-email: [email protected]
 License: MIT
 Description: ================
-        Sea Cucumber 1.2
+        Sea Cucumber 1.5
         ================
         :Info: A Django email backend for Amazon Simple Email Service, backed 
by django-celery_
         :Author: DUO Interactive, LLC
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seacucumber-1.4/README.rst 
new/seacucumber-1.5/README.rst
--- old/seacucumber-1.4/README.rst      2011-04-18 21:13:41.000000000 +0200
+++ new/seacucumber-1.5/README.rst      2012-07-16 17:00:49.000000000 +0200
@@ -1,5 +1,5 @@
 ================
-Sea Cucumber 1.2
+Sea Cucumber 1.5
 ================
 :Info: A Django email backend for Amazon Simple Email Service, backed by 
django-celery_
 :Author: DUO Interactive, LLC
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seacucumber-1.4/seacucumber/__init__.py 
new/seacucumber-1.5/seacucumber/__init__.py
--- old/seacucumber-1.4/seacucumber/__init__.py 2012-02-08 21:59:18.000000000 
+0100
+++ new/seacucumber-1.5/seacucumber/__init__.py 2012-07-16 17:00:36.000000000 
+0200
@@ -4,4 +4,4 @@
 rest of the contents of this module are largely optional. 
 """
 # In the form of Major, Minor.
-VERSION = (1, 4)
+VERSION = (1, 5)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seacucumber-1.4/seacucumber/backend.py 
new/seacucumber-1.5/seacucumber/backend.py
--- old/seacucumber-1.4/seacucumber/backend.py  2011-04-14 22:18:16.000000000 
+0200
+++ new/seacucumber-1.5/seacucumber/backend.py  2012-07-16 16:58:04.000000000 
+0200
@@ -7,6 +7,7 @@
 from django.core.mail.backends.base import BaseEmailBackend
 from seacucumber.tasks import SendEmailTask
 
+
 class SESBackend(BaseEmailBackend):
     """
     A Django Email backend that uses Amazon's Simple Email Service.
@@ -15,7 +16,7 @@
         """
         Sends one or more EmailMessage objects and returns the number of
         email messages sent.
-        
+
         :param EmailMessage email_messages: A list of Django's EmailMessage
             object instances.
         :rtype: int
@@ -29,8 +30,7 @@
             SendEmailTask.delay(
                 message.from_email,
                 message.recipients(),
-                message.message().as_string(),
+                message.message().as_string().decode('utf8'),
             )
             num_sent += 1
         return num_sent
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seacucumber-1.4/seacucumber.egg-info/PKG-INFO 
new/seacucumber-1.5/seacucumber.egg-info/PKG-INFO
--- old/seacucumber-1.4/seacucumber.egg-info/PKG-INFO   2012-02-08 
22:12:14.000000000 +0100
+++ new/seacucumber-1.5/seacucumber.egg-info/PKG-INFO   2012-07-16 
17:04:09.000000000 +0200
@@ -1,13 +1,13 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: seacucumber
-Version: 1.4
+Version: 1.5
 Summary: A Django email backend for Amazon Simple Email Service, backed by 
celery.
 Home-page: https://github.com/duointeractive/sea-cucumber/
 Author: Gregory Taylor
 Author-email: [email protected]
 License: MIT
 Description: ================
-        Sea Cucumber 1.2
+        Sea Cucumber 1.5
         ================
         :Info: A Django email backend for Amazon Simple Email Service, backed 
by django-celery_
         :Author: DUO Interactive, LLC
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seacucumber-1.4/seacucumber.egg-info/requires.txt 
new/seacucumber-1.5/seacucumber.egg-info/requires.txt
--- old/seacucumber-1.4/seacucumber.egg-info/requires.txt       2012-02-08 
22:12:14.000000000 +0100
+++ new/seacucumber-1.5/seacucumber.egg-info/requires.txt       2012-07-16 
17:04:09.000000000 +0200
@@ -1 +1 @@
-boto>=2.2.1
\ No newline at end of file
+boto>=2.3.0
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seacucumber-1.4/setup.py new/seacucumber-1.5/setup.py
--- old/seacucumber-1.4/setup.py        2012-02-08 21:57:41.000000000 +0100
+++ new/seacucumber-1.5/setup.py        2012-07-16 17:01:28.000000000 +0200
@@ -1,12 +1,9 @@
 from setuptools import setup
-import seacucumber
 
 DESCRIPTION = "A Django email backend for Amazon Simple Email Service, backed 
by celery."
 
 LONG_DESCRIPTION = open('README.rst').read()
 
-version_str = '%d.%d' % (seacucumber.VERSION[0], seacucumber.VERSION[1])
-
 CLASSIFIERS = [
     'Development Status :: 5 - Production/Stable',
     'Intended Audience :: Developers',
@@ -19,7 +16,7 @@
 
 setup(
     name='seacucumber',
-    version=version_str,
+    version='1.5',
     packages=[
         'seacucumber',
         'seacucumber.management',
@@ -33,5 +30,5 @@
     long_description=LONG_DESCRIPTION,
     platforms=['any'],
     classifiers=CLASSIFIERS,
-    install_requires=['boto>=2.2.1'],
+    install_requires=['boto>=2.3.0'],
 )

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to