rpms/python-TurboMail/devel .cvsignore, 1.4, 1.5 LICENSE.txt, 1.1, 1.2 python-TurboMail.spec, 1.11, 1.12 sources, 1.4, 1.5 python-TurboMail-tgreq.patch, 1.1, NONE

Felix Schwarz fschwarz at fedoraproject.org
Mon Sep 28 18:41:13 UTC 2009


Author: fschwarz

Update of /cvs/pkgs/rpms/python-TurboMail/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16738

Modified Files:
	.cvsignore LICENSE.txt python-TurboMail.spec sources 
Removed Files:
	python-TurboMail-tgreq.patch 
Log Message:
update to TurboMail 3.0



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/python-TurboMail/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- .cvsignore	26 Nov 2007 23:53:45 -0000	1.4
+++ .cvsignore	28 Sep 2009 18:41:10 -0000	1.5
@@ -1 +1 @@
-TurboMail-2.1.tar.gz
+TurboMail-3.0.tar.gz


Index: LICENSE.txt
===================================================================
RCS file: /cvs/pkgs/rpms/python-TurboMail/devel/LICENSE.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- LICENSE.txt	16 Dec 2006 02:56:11 -0000	1.1
+++ LICENSE.txt	28 Sep 2009 18:41:10 -0000	1.2
@@ -1,10 +1,10 @@
 This is the MIT license:
 http://www.opensource.org/licenses/mit-license.php
 
-Copyright (c) 2005, 2006 Kevin Dangoor and contributors. TurboGears is a trademark of Kevin Dangoor.
+Copyright (c) 2007-2009 Alice Bevan-McGregor and contributors
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 
 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Index: python-TurboMail.spec
===================================================================
RCS file: /cvs/pkgs/rpms/python-TurboMail/devel/python-TurboMail.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -p -r1.11 -r1.12
--- python-TurboMail.spec	26 Jul 2009 20:06:04 -0000	1.11
+++ python-TurboMail.spec	28 Sep 2009 18:41:10 -0000	1.12
@@ -2,37 +2,33 @@
 %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")}
 
 Name:           python-TurboMail
-Version:        2.1
-Release:        7%{?dist}
+Version:        3.0
+Release:        1%{?dist}
 Summary:        Multi-threaded mail queue manager for TurboGears applications
 
 Group:          Development/Libraries
 License:        MIT
-URL:            http://trac.orianagroup.com/turbomail
-Source0:        http://cheeseshop.python.org/packages/source/T/TurboMail/TurboMail-%{version}.tar.gz
+URL:            http://www.python-turbomail.org
+Source0:        http://pypi.python.org/packages/source/T/TurboMail/TurboMail-%{version}.tar.gz
 Source1:        LICENSE.txt
-Patch0:         %{name}-tgreq.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:      noarch
 
-BuildRequires:  TurboGears python-devel
-Requires:       TurboGears
+BuildRequires:  python-setuptools-devel
+Requires:       python-setuptools
 
 
 %description
-TurboMail is a TurboGears extension, meaning that it starts up and shuts down
-alongside any TurboGears applications you write, in the same way that visit
-tracking and identity do. TurboMail uses built-in Python modules for SMTP
+TurboMail is a multi-threaded mail delivery subsystem and MIME message
+generation framework for Python. TurboMail uses built-in Python modules for SMTP
 communication and MIME e-mail creation, but greatly simplifies these tasks by
-performing the grunt-work for you. Additionally, TurboMail is multi-threaded,
-allowing for single or batch enqueueing and background delivery of mail.
+performing the grunt-work for you.
 
 %prep
 %setup -q -n TurboMail-%{version}
-%patch0
-cp %{SOURCE1} .
+find . -type f -name '.*' | xargs rm -rf
 rm -fr tests
-
+cp %{SOURCE1} .
 
 %build
 %{__python} setup.py build
@@ -50,10 +46,14 @@ rm -rf %{buildroot}
 %defattr(-,root,root,-)
 %doc README.txt LICENSE.txt
 %{python_sitelib}/TurboMail-%{version}-py%{pyver}.egg-info
-%dir %{python_sitelib}/turbomail
-%{python_sitelib}/turbomail/*.py*
+%{python_sitelib}/turbomail/
+
 
 %changelog
+* Mon Sep 28 2009 Felix Schwarz <felix.schwarz at oss.schwarz.eu> - 3.0-1
+- Update to new major version 3.0
+- fixed copyright attribution in LICENSE.txt
+
 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 2.1-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/python-TurboMail/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- sources	26 Nov 2007 23:53:45 -0000	1.4
+++ sources	28 Sep 2009 18:41:10 -0000	1.5
@@ -1 +1 @@
-36087c074e7943e8a352ef6cdd3dc04f  TurboMail-2.1.tar.gz
+d70fa65c5e64d863b001898209e92607  TurboMail-3.0.tar.gz


--- python-TurboMail-tgreq.patch DELETED ---




More information about the fedora-extras-commits mailing list