# HG changeset patch # User Paul Boddie # Date 1315345192 -7200 # Node ID 9d1bd54b13486aada78288c7460f51529cbaade5 # Parent c98ba3ffdeed3622a1602aa8c611e8ef743e5d7b Removed the version numbers patch now that 0.9 is the packaged release. diff -r c98ba3ffdeed -r 9d1bd54b1348 debian/patches/fix-versions.patch --- a/debian/patches/fix-versions.patch Tue Sep 06 23:32:40 2011 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,43 +0,0 @@ -Index: shedskin-0.9rc1/setup.py -=================================================================== ---- shedskin-0.9rc1.orig/setup.py 2011-09-06 23:05:44.000000000 +0200 -+++ shedskin-0.9rc1/setup.py 2011-09-06 23:05:59.000000000 +0200 -@@ -19,7 +19,7 @@ - os.chdir(self.cwd) - - setup(name='shedskin', -- version='0.9', -+ version='0.8', - description='Shed Skin is an experimental compiler, that can translate pure, but implicitly statically typed Python programs into optimized C++. It can generate stand-alone programs or extension modules that can be imported and used in larger Python programs.', - url='http://code.google.com/p/shedskin/', - scripts=['scripts/shedskin'], -Index: shedskin-0.9rc1/shedskin/__init__.py -=================================================================== ---- shedskin-0.9rc1.orig/shedskin/__init__.py 2011-09-03 13:48:49.000000000 +0200 -+++ shedskin-0.9rc1/shedskin/__init__.py 2011-09-06 23:05:59.000000000 +0200 -@@ -63,7 +63,7 @@ - - - if not getgx().silent: -- print '*** SHED SKIN Python-to-C++ Compiler 0.9 ***' -+ print '*** SHED SKIN Python-to-C++ Compiler 0.8 ***' - print 'Copyright 2005-2011 Mark Dufour; License GNU GPL version 3 (See LICENSE)' - print - -Index: shedskin-0.9rc1/shedskin/lib/sys.cpp -=================================================================== ---- shedskin-0.9rc1.orig/shedskin/lib/sys.cpp 2011-09-03 13:48:49.000000000 +0200 -+++ shedskin-0.9rc1/shedskin/lib/sys.cpp 2011-09-06 23:05:59.000000000 +0200 -@@ -18,10 +18,10 @@ - argv = new list(); - - #if defined( _MSC_VER ) -- version = new str("Shed Skin Python-to-C++ Compiler 0.9\n[MSVC "); -+ version = new str("Shed Skin Python-to-C++ Compiler 0.8\n[MSVC "); - version = version->__add__(__str(_MSC_VER))->__add__(new str("]")); - #else -- version = new str("Shed Skin Python-to-C++ Compiler 0.9\n[GCC "); -+ version = new str("Shed Skin Python-to-C++ Compiler 0.8\n[GCC "); - version = version->__add__(new str(__VERSION__))->__add__(new str("]")); - #endif - version_info = new tuple2<__ss_int, __ss_int>(5, (__ss_int)2, (__ss_int)6, (__ss_int)6, (__ss_int)0, (__ss_int)0); diff -r c98ba3ffdeed -r 9d1bd54b1348 debian/patches/series --- a/debian/patches/series Tue Sep 06 23:32:40 2011 +0200 +++ b/debian/patches/series Tue Sep 06 23:39:52 2011 +0200 @@ -1,3 +1,2 @@ setup.py.patch shared.py.patch -fix-versions.patch