Hello community,

here is the log from the commit of package python-Cheetah for openSUSE:Factory 
checked in at 2014-12-16 14:50:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-Cheetah (Old)
 and      /work/SRC/openSUSE:Factory/.python-Cheetah.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-Cheetah"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-Cheetah/python-Cheetah.changes    
2012-02-17 12:08:37.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python-Cheetah.new/python-Cheetah.changes       
2014-12-16 14:51:05.000000000 +0100
@@ -1,0 +2,6 @@
+Sat Mar 16 08:02:50 UTC 2013 - r...@opensuse.org
+
+- Use a patch file instead of the sed command to remove the
+  shebang line from tests; add  shebang.patch 
+
+-------------------------------------------------------------------

New:
----
  shebang.patch

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

Other differences:
------------------
++++++ python-Cheetah.spec ++++++
--- /var/tmp/diff_new_pack.j2fO5z/_old  2014-12-16 14:51:08.000000000 +0100
+++ /var/tmp/diff_new_pack.j2fO5z/_new  2014-12-16 14:51:08.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Cheetah
 #
-# 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
@@ -24,6 +24,7 @@
 License:        MIT
 Group:          Development/Languages/Python
 Source:         
http://pypi.python.org/packages/source/C/Cheetah/Cheetah-%{version}.tar.gz
+Patch0:         shebang.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
 BuildRequires:  python-devel
@@ -43,7 +44,7 @@
 %prep
 %setup -q -n Cheetah-%{version}
 # Remove she-bang lines for non-executable scripts:
-sed -i "1d" 
cheetah/{Tests/{Unicode,Filters,Parser,Template,Regressions,Cheps,Analyzer,Test,Misc,CheetahWrapper,SyntaxAndOutput,NameMapper,Performance},ImportHooks,Utils/Misc,Servlet,NameMapper,Parser,DirectiveAnalyzer}.py
+%patch0 -p1
 
 %build
 CFLAGS="%{optflags}" python setup.py build

++++++ shebang.patch ++++++
diff -ur Cheetah-2.4.4.org/cheetah/DirectiveAnalyzer.py 
Cheetah-2.4.4/cheetah/DirectiveAnalyzer.py
--- Cheetah-2.4.4.org/cheetah/DirectiveAnalyzer.py      2010-07-02 
05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/DirectiveAnalyzer.py  2013-03-16 09:00:36.072839268 
+0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import os
 import pprint
diff -ur Cheetah-2.4.4.org/cheetah/ImportHooks.py 
Cheetah-2.4.4/cheetah/ImportHooks.py
--- Cheetah-2.4.4.org/cheetah/ImportHooks.py    2010-07-02 05:17:47.000000000 
+0200
+++ Cheetah-2.4.4/cheetah/ImportHooks.py        2013-03-16 09:00:36.064839457 
+0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 """
 Provides some import hooks to allow Cheetah's .tmpl files to be imported
diff -ur Cheetah-2.4.4.org/cheetah/NameMapper.py 
Cheetah-2.4.4/cheetah/NameMapper.py
--- Cheetah-2.4.4.org/cheetah/NameMapper.py     2010-07-02 05:17:48.000000000 
+0200
+++ Cheetah-2.4.4/cheetah/NameMapper.py 2013-03-16 09:00:36.064839457 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 """This module supports Cheetah's optional NameMapper syntax.
 
 Overview
diff -ur Cheetah-2.4.4.org/cheetah/Parser.py Cheetah-2.4.4/cheetah/Parser.py
--- Cheetah-2.4.4.org/cheetah/Parser.py 2010-07-02 05:17:48.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Parser.py     2013-03-16 09:00:36.072839268 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 """
 Parser classes for Cheetah's Compiler
 
diff -ur Cheetah-2.4.4.org/cheetah/Servlet.py Cheetah-2.4.4/cheetah/Servlet.py
--- Cheetah-2.4.4.org/cheetah/Servlet.py        2010-07-02 05:17:47.000000000 
+0200
+++ Cheetah-2.4.4/cheetah/Servlet.py    2013-03-16 09:00:36.064839457 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 '''
 Provides an abstract Servlet baseclass for Cheetah's Template class
 '''
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Analyzer.py 
Cheetah-2.4.4/cheetah/Tests/Analyzer.py
--- Cheetah-2.4.4.org/cheetah/Tests/Analyzer.py 2010-07-02 05:17:47.000000000 
+0200
+++ Cheetah-2.4.4/cheetah/Tests/Analyzer.py     2013-03-16 09:00:36.052839741 
+0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import unittest
 
diff -ur Cheetah-2.4.4.org/cheetah/Tests/CheetahWrapper.py 
Cheetah-2.4.4/cheetah/Tests/CheetahWrapper.py
--- Cheetah-2.4.4.org/cheetah/Tests/CheetahWrapper.py   2010-09-16 
20:21:36.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/CheetahWrapper.py       2013-03-16 
09:00:36.056839646 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 '''
 Tests for the 'cheetah' command.
 
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Cheps.py 
Cheetah-2.4.4/cheetah/Tests/Cheps.py
--- Cheetah-2.4.4.org/cheetah/Tests/Cheps.py    2010-07-02 05:17:47.000000000 
+0200
+++ Cheetah-2.4.4/cheetah/Tests/Cheps.py        2013-03-16 09:00:36.052839741 
+0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import unittest
 
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Filters.py 
Cheetah-2.4.4/cheetah/Tests/Filters.py
--- Cheetah-2.4.4.org/cheetah/Tests/Filters.py  2010-07-02 05:17:47.000000000 
+0200
+++ Cheetah-2.4.4/cheetah/Tests/Filters.py      2013-03-16 09:00:36.052839740 
+0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import sys
 import unittest
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Misc.py 
Cheetah-2.4.4/cheetah/Tests/Misc.py
--- Cheetah-2.4.4.org/cheetah/Tests/Misc.py     2010-07-02 05:17:47.000000000 
+0200
+++ Cheetah-2.4.4/cheetah/Tests/Misc.py 2013-03-16 09:00:36.056839646 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import unittest
 
diff -ur Cheetah-2.4.4.org/cheetah/Tests/NameMapper.py 
Cheetah-2.4.4/cheetah/Tests/NameMapper.py
--- Cheetah-2.4.4.org/cheetah/Tests/NameMapper.py       2010-09-16 
20:21:36.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/NameMapper.py   2013-03-16 09:00:36.064839457 
+0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import sys
 import types
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Parser.py 
Cheetah-2.4.4/cheetah/Tests/Parser.py
--- Cheetah-2.4.4.org/cheetah/Tests/Parser.py   2010-07-02 05:17:47.000000000 
+0200
+++ Cheetah-2.4.4/cheetah/Tests/Parser.py       2013-03-16 09:00:36.052839741 
+0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import unittest
 
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Performance.py 
Cheetah-2.4.4/cheetah/Tests/Performance.py
--- Cheetah-2.4.4.org/cheetah/Tests/Performance.py      2010-07-02 
05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/Performance.py  2013-03-16 09:00:36.064839457 
+0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import hotshot
 import hotshot.stats
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Regressions.py 
Cheetah-2.4.4/cheetah/Tests/Regressions.py
--- Cheetah-2.4.4.org/cheetah/Tests/Regressions.py      2010-07-02 
05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/Regressions.py  2013-03-16 09:00:36.052839741 
+0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import Cheetah.NameMapper 
 import Cheetah.Template
diff -ur Cheetah-2.4.4.org/cheetah/Tests/SyntaxAndOutput.py 
Cheetah-2.4.4/cheetah/Tests/SyntaxAndOutput.py
--- Cheetah-2.4.4.org/cheetah/Tests/SyntaxAndOutput.py  2010-12-13 
04:44:59.000000000 +0100
+++ Cheetah-2.4.4/cheetah/Tests/SyntaxAndOutput.py      2013-03-16 
09:00:36.064839457 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 # -*- coding: latin-1 -*-
 
 '''
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Template.py 
Cheetah-2.4.4/cheetah/Tests/Template.py
--- Cheetah-2.4.4.org/cheetah/Tests/Template.py 2010-07-02 05:17:47.000000000 
+0200
+++ Cheetah-2.4.4/cheetah/Tests/Template.py     2013-03-16 09:00:36.052839741 
+0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import pdb
 import sys
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Test.py 
Cheetah-2.4.4/cheetah/Tests/Test.py
--- Cheetah-2.4.4.org/cheetah/Tests/Test.py     2010-07-02 05:17:47.000000000 
+0200
+++ Cheetah-2.4.4/cheetah/Tests/Test.py 2013-03-16 09:00:36.056839646 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 '''
 Core module of Cheetah's Unit-testing framework
 
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Unicode.py 
Cheetah-2.4.4/cheetah/Tests/Unicode.py
--- Cheetah-2.4.4.org/cheetah/Tests/Unicode.py  2010-07-02 05:17:47.000000000 
+0200
+++ Cheetah-2.4.4/cheetah/Tests/Unicode.py      2013-03-16 09:00:35.968841705 
+0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 # -*- encoding: utf8 -*-
 
 from Cheetah.Template import Template
diff -ur Cheetah-2.4.4.org/cheetah/Utils/Misc.py 
Cheetah-2.4.4/cheetah/Utils/Misc.py
--- Cheetah-2.4.4.org/cheetah/Utils/Misc.py     2010-07-02 05:17:47.000000000 
+0200
+++ Cheetah-2.4.4/cheetah/Utils/Misc.py 2013-03-16 09:00:36.064839457 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 """
     Miscellaneous functions/objects used by Cheetah but also useful standalone.
 """ 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to