spe (0.8.4.h-2) debian-dir only changes

Summary

 debian/changelog |  180 ++++++++++++++++++++++
 debian/compat    |    1 
 debian/control   |   37 ++++
 debian/copyright |   31 +++
 debian/install   |    2 
 debian/links     |    6 
 debian/menu      |    6 
 debian/rules     |   59 +++++++
 debian/spe.xpm   |  438 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/watch     |    4 
 10 files changed, 764 insertions(+)

    
download this patch

Patch contents

--- spe-0.8.4.h.orig/debian/install
+++ spe-0.8.4.h/debian/install
@@ -0,0 +1,2 @@
+spe.desktop	usr/share/applications
+debian/spe.xpm		usr/share/pixmaps
--- spe-0.8.4.h.orig/debian/compat
+++ spe-0.8.4.h/debian/compat
@@ -0,0 +1 @@
+5
--- spe-0.8.4.h.orig/debian/rules
+++ spe-0.8.4.h/debian/rules
@@ -0,0 +1,59 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+MANPAGES = spe.1
+
+%.1: %.sgml
+	docbook-to-man $< > $@
+
+build: $(MANPAGES)
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -rf build
+	find . -name '*.py[co]' | xargs rm -f
+	dh_clean spe.1
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	python setup.py install --root=debian/spe \
+				--install-lib=usr/share/spe/ \
+				--install-scripts=/usr/bin \
+				--no-compile
+
+	rm debian/spe/usr/share/spe/_spe/SPE_DEBUG.py
+
+	chmod +x debian/spe/usr/share/spe/_spe/SPE.py
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs NEWS
+	dh_installmenu
+	dh_installdocs
+	dh_installman spe.1
+	dh_install
+	dh_link
+	dh_icons
+	dh_compress -X.pdf -X.rtf -X.py
+	dh_fixperms
+	dh_pycentral
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+# Build architecture-dependent files here.
+binary-arch:
+# We have nothing to do by default.
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
--- spe-0.8.4.h.orig/debian/changelog
+++ spe-0.8.4.h/debian/changelog
@@ -0,0 +1,180 @@
+spe (0.8.4.h-2) unstable; urgency=low
+
+  * debian/control:
+    - Update my email address.
+    - Bump Standards-Version to 3.8.4, no changes needed.
+    - Wrap build-depends and depends.
+    - Let spe depend on ${misc:Depends}.
+    - Point to viewsvn in Vcs-Browser.
+  * debian/rules:
+    - Stop calling dh_desktop, it's a no-op now.
+    - Pass --install-scripts=/usr/bin to setup.py to fix FTBFS with
+      python2.6. Thanks Piotr Ożarowski. Closes: #533836.
+
+ -- Emilio Pozuelo Monfort <pochu@debian.org>  Fri, 05 Mar 2010 20:46:04 +0100
+
+spe (0.8.4.h-1) unstable; urgency=low
+
+  * New upstream release, from the upstream spe-0.8.4.h-wx2.6.1.0.tar.gz
+    tarball
+  * Added python-wxtools to Suggests because XRCed is now optional
+  * Corrected python-wxgtk dependencies so that 2.8 is preferred
+  * Dropped python-profiler in Suggests as spe no longer supports profiling
+
+ -- Stani M <spe.stani.be@gmail.com>  Tue, 08 Apr 2008 13:05:12 +0200
+
+spe (0.8.4.f-1) unstable; urgency=low
+
+  [ Stani M ]
+  * New upstream release, from the upstream SPE-0.8.4.f-wx2.6.1.0.tar.gz
+    tarball (Closes LP: #200439, #202481, #207024)
+
+  [ Emilio Pozuelo Monfort ]
+  * Add Stani to Uploaders.
+
+ -- Stani M <spe.stani.be@gmail.com>  Sat, 05 Apr 2008 19:20:57 +0200
+
+spe (0.8.4.e-1) unstable; urgency=medium
+
+  [ Stefano Canepa ]
+  * New upstream release, from the upstream SPE-0.8.4.e-wx2.6.1.0.tar.gz
+    tarball (includes Stefano's setup.py and spe.sgml - Piotr).
+  * debian/control:
+    - Added docbook-to-man to Build-Depends-Indep.
+    - Added myself to Uploaders.
+  * debian/rules:
+    - Added creation of manpage.
+
+  [ Stani ]
+  * Closes LP: #74572, #75893, #86159, #105036, #106666, #204751
+
+  [ Emilio Pozuelo Monfort ]
+  * debian/control:
+    - New Maintainer, Python Applications Packaging Team.
+      Closes: #379374.
+    - Added myself to Uploaders.
+    - Section -> devel.
+    - Require debhelper >= 5.0.51 for dh_icons.
+    - Require python-central >= 0.5.6 as required by policy.
+    - Depend on winpdb, as we have removed it from the package.
+    - Depend on pychecker >= 0.8.17-5 to get pychecker2 too.
+    - Move python-doc from Recommends to Suggests, as it's in contrib.
+      Closes: #452476.
+    - Added Homepage, VCS-Browser and VCS-Svn fields.
+    - Conform with Debian Policy 3.7.3
+  * debian/compat:
+    - Update to 5.
+  * debian/menu:
+    - Change section according to the new menu layout.
+    - Improved title and added longtitle.
+    - Use spe.xpm instead of spe.png
+  * debian/install:
+    - Created, install spe.xpm and spe.desktop from here.
+  * debian/links:
+    - Created. Move symlinks from rules to here.
+    - Symlink docs from /usr/share/doc/spe/.
+    - Symlink /usr/bin/spe to /usr/share/spe/_spe/SPE.py
+  * debian/spe.xpm
+    - Added.
+  * debian/spe.desktop:
+    - Updated to fit the policy.
+  * debian/copyright:
+    - Updated Homepage and Website.
+    - Updated copyright holder.
+  * debian/rules:
+    - Call dh_icons as we install a png file in /usr/share/pixmaps.
+    - Install the package in /usr/share/spe/_spe. Closes: #401982, #384293.
+    - Make SPE.py executable.
+    - Move installation of files to spe.install and spe.links.
+    - Don't call dh_python and dh_installexamples, we don't need them.
+    - Install spe.desktop from spe.install and not here.
+    - Call dh_install, dh_link and dh_desktop.
+    - The changelog has been moved, so the path is different now.
+    - Remove SPE_DEBUG.py. That's a windows launcher.
+    - Do nothing on binary-arch target.
+    - Fix dh_installchangelog call with a non-repacked tarball.
+  * debian/pycompat:
+    - Removed, not needed as we don't call dh_python.
+  * debian/README.Debian:
+    - Removed, issues are fixed now.
+  * debian/watch:
+    - Updated as spe is now hosted on berlios.
+
+  [ Piotr Ożarowski ]
+  * Update debian/rules to match changes in upstream tarball
+  * debian/copyright: upstream sources are released under GPL3 now
+  * Urgency set to medium as this upload closes: #472033 (pycentral dir is not
+    used anymore)
+
+ -- Emilio Pozuelo Monfort <pochu@ubuntu.com>  Tue, 25 Mar 2008 22:08:55 +0100
+
+spe (0.8.2a+repack-1) unstable; urgency=medium
+
+  * QA upload.
+  * Switch to new Python policy.  Closes: #380958, #383511.
+  * debian/README.Debian: Fix typo.
+  * debian/copyright: Update FSF address.
+  * debian/watch: Add.
+  * Remove dh-make templates.
+  * Conforms to Standards version 3.7.2.
+
+ -- Matej Vela <vela@debian.org>  Fri, 18 Aug 2006 20:26:55 +0200
+
+spe (0.8.2a+repack-0.1) unstable; urgency=low
+
+  * Non-maintainer upload, with doko's blessing.
+  * Just base off the Ubuntu packaging.
+  * Remove spurious rm -rf build from debian/rules.
+  * Orphan package.
+
+ -- Steve Kowalik <stevenk@debian.org>  Fri, 28 Apr 2006 23:33:30 +1000
+
+spe (0.8.2a-0ubuntu1) dapper; urgency=low
+
+  * New upstream version.
+
+ -- Matthias Klose <doko@ubuntu.com>  Sun, 19 Feb 2006 19:57:18 +0100
+
+spe (0.8.1d-0ubuntu1) dapper; urgency=low
+
+  * New upstream version.
+  * Fix menu icon.
+
+ -- Matthias Klose <doko@debian.org>  Thu, 19 Jan 2006 11:14:35 +0000
+
+spe (0.7.5c-1ubuntu1) breezy; urgency=low
+
+  * Remove links to other distributions
+  * Use local docs when they're installed and Recommend them
+
+ -- Sebastian Dröge <slomo@ubuntu.com>  Tue, 20 Sep 2005 14:09:56 +0200
+
+spe (0.7.5c-1) unstable; urgency=low
+
+  * New upstream version (upstream wx-2.6 support).
+
+ -- Matthias Klose <doko@debian.org>  Fri, 16 Sep 2005 16:19:52 +0200
+
+spe (0.7.3a-1) unstable; urgency=low
+
+  * Upload to unstable.
+
+ -- Matthias Klose <doko@debian.org>  Wed, 24 Aug 2005 12:14:24 +0200
+
+spe (0.7.3a-0ubuntu3) breezy; urgency=low
+
+  * Fix python-wxgtk dependency.
+
+ -- Matthias Klose <doko@ubuntu.com>  Wed, 24 Aug 2005 09:56:27 +0000
+
+spe (0.7.3a-0ubuntu2) breezy; urgency=low
+
+  * Build depend on python-dev.
+
+ -- Matthias Klose <doko@ubuntu.com>  Thu, 11 Aug 2005 19:22:00 +0200
+
+spe (0.7.3a-0ubuntu1) breezy; urgency=low
+
+  * Initial release (closes: #268101).
+
+ -- Matthias Klose <doko@ubuntu.com>  Wed, 10 Aug 2005 13:49:25 +0200
--- spe-0.8.4.h.orig/debian/control
+++ spe-0.8.4.h/debian/control
@@ -0,0 +1,37 @@
+Source: spe
+Section: devel
+Priority: optional
+Maintainer: Python Applications Packaging Team <python-apps-team@lists.alioth.debian.org>
+Uploaders: Stefano Canepa <sc@linux.it>, Emilio Pozuelo Monfort <pochu@debian.org>, Stani M <spe.stani.be@gmail.com>
+Standards-Version: 3.8.4
+Build-Depends: debhelper (>= 5.0.51),
+               python
+Build-Depends-Indep: python-central (>= 0.5.6),
+                     docbook-to-man
+XS-Python-Version: all
+Homepage: http://pythonide.stani.be/
+VCS-Svn: svn://svn.debian.org/python-apps/packages/spe/trunk/
+VCS-Browser: http://svn.debian.org/viewsvn/python-apps/packages/spe/
+
+Package: spe
+Architecture: all
+Depends: ${python:Depends},
+         ${misc:Depends},
+         python-wxgtk2.8,
+         python-wxglade,
+         kiki,
+         winpdb,
+         pychecker (>= 0.8.17-5)
+Recommends: wx2.8-doc
+Suggests: blender (>= 2.35), python-doc, python-wxtools
+XB-Python-Version: ${python:Versions}
+Description: Stani's Python Editor
+ Spe is a Python IDE with auto-indentation, auto completion, call
+ tips, syntax coloring, syntax highlighting, UML viewer, class
+ explorer, source index, auto todo list, sticky notes, integrated
+ pycrust shell, Python file browser, recent file browser, drag&drop,
+ context help, ... Special is its Blender support with a Blender 3d
+ object browser and its ability to run interactively inside
+ blender. Spe ships with wxGlade & XRCed (gui designers), PyChecker
+ (source code doctor) and Kiki (regular expression console). Spe is
+ extensible with wxGlade.
--- spe-0.8.4.h.orig/debian/copyright
+++ spe-0.8.4.h/debian/copyright
@@ -0,0 +1,31 @@
+This package was debianized by Matthias Klose <doko@ubuntu.com>
+on Sun,  3 Jul 2005 00:26:36 +0200.
+
+It was downloaded from https://developer.berlios.de/projects/python/
+
+      - Homepage:     http://pythonide.stani.be/
+      - Website:      http://developer.berlios.de/projects/python/
+
+Copyright (C) 2003-2008 Stani Michiels <www.stani.be>
+
+License:
+
+This library is released under the GPL.
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 3 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+MA 02110-1301 USA.
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
--- spe-0.8.4.h.orig/debian/menu
+++ spe-0.8.4.h/debian/menu
@@ -0,0 +1,6 @@
+?package(spe):needs="X11"\
+  section="Applications/Programming"\
+  title="SPE"\
+  longtitle="SPE (Stani's Python Editor)"\
+  icon="/usr/share/pixmaps/spe.xpm"\
+  command="/usr/bin/spe"
--- spe-0.8.4.h.orig/debian/spe.xpm
+++ spe-0.8.4.h/debian/spe.xpm
@@ -0,0 +1,438 @@
+/* XPM */
+static char * spe_xpm[] = {
+"32 32 403 2",
+"  	c None",
+". 	c #40731C",
+"+ 	c #579927",
+"@ 	c #6AAC3A",
+"# 	c #74B147",
+"$ 	c #75AD4C",
+"% 	c #537E34",
+"& 	c #4B8D1D",
+"* 	c #51A118",
+"= 	c #51A712",
+"- 	c #50AA10",
+"; 	c #54B010",
+"> 	c #5EB41E",
+", 	c #6FB63B",
+"' 	c #67A03F",
+") 	c #527A34",
+"! 	c #4A8C1C",
+"~ 	c #50951F",
+"{ 	c #57922E",
+"] 	c #4A7C29",
+"^ 	c #427D1B",
+"/ 	c #419D00",
+"( 	c #4BAE03",
+"_ 	c #4FAE09",
+": 	c #60B323",
+"< 	c #76BC43",
+"[ 	c #63A235",
+"} 	c #4E8625",
+"| 	c #4A8620",
+"1 	c #60943A",
+"2 	c #3E6325",
+"3 	c #244B0A",
+"4 	c #2E6F02",
+"5 	c #398109",
+"6 	c #429E00",
+"7 	c #398403",
+"8 	c #4E931C",
+"9 	c #6DB239",
+"0 	c #5FB320",
+"a 	c #6FBB35",
+"b 	c #83C652",
+"c 	c #74B643",
+"d 	c #4E7B2C",
+"e 	c #4F7636",
+"f 	c #223915",
+"g 	c #1C1F1A",
+"h 	c #2B3921",
+"i 	c #428712",
+"j 	c #438A13",
+"k 	c #51A513",
+"l 	c #439F00",
+"m 	c #368001",
+"n 	c #28520B",
+"o 	c #6EA843",
+"p 	c #7DC04C",
+"q 	c #74BC3F",
+"r 	c #7BBB4A",
+"s 	c #485A3B",
+"t 	c #3A671A",
+"u 	c #1C3A08",
+"v 	c #37422F",
+"w 	c #4C8820",
+"x 	c #2D6306",
+"y 	c #61953C",
+"z 	c #509C19",
+"A 	c #419502",
+"B 	c #2E6F00",
+"C 	c #337603",
+"D 	c #609B34",
+"E 	c #6EB33B",
+"F 	c #60B123",
+"G 	c #71B240",
+"H 	c #426E26",
+"I 	c #386315",
+"J 	c #23380F",
+"K 	c #405D2B",
+"L 	c #386E11",
+"M 	c #1F3D0A",
+"N 	c #548034",
+"O 	c #5E9C31",
+"P 	c #48990C",
+"Q 	c #439F01",
+"R 	c #3D8A06",
+"S 	c #61A92B",
+"T 	c #499E0A",
+"U 	c #53AB11",
+"V 	c #59932E",
+"W 	c #457228",
+"X 	c #48731C",
+"Y 	c #2C3D12",
+"Z 	c #383626",
+"` 	c #526626",
+" .	c #3B6B16",
+"..	c #122E01",
+"+.	c #39611E",
+"@.	c #62983C",
+"#.	c #589F24",
+"$.	c #4BA409",
+"%.	c #5AA622",
+"&.	c #609E34",
+"*.	c #63AB2F",
+"=.	c #6C9F47",
+"-.	c #2F3629",
+";.	c #426E25",
+">.	c #447117",
+",.	c #6D7833",
+"'.	c #554322",
+").	c #626D32",
+"!.	c #4B732B",
+"~.	c #122B01",
+"{.	c #163004",
+"].	c #37601A",
+"^.	c #578535",
+"/.	c #619D35",
+"(.	c #66A13B",
+"_.	c #6B8F4F",
+":.	c #3C4B31",
+"<.	c #2D6403",
+"[.	c #7B9036",
+"}.	c #59622A",
+"|.	c #2A251D",
+"1.	c #534323",
+"2.	c #6B6932",
+"3.	c #4E7A2A",
+"4.	c #1E3D01",
+"5.	c #3E1F07",
+"6.	c #273519",
+"7.	c #4A4731",
+"8.	c #34311E",
+"9.	c #3E3F3C",
+"0.	c #1E4701",
+"a.	c #3C680E",
+"b.	c #716C36",
+"c.	c #514A1C",
+"d.	c #644D20",
+"e.	c #8D6321",
+"f.	c #AD7927",
+"g.	c #BF8529",
+"h.	c #A37832",
+"i.	c #636340",
+"j.	c #587F39",
+"k.	c #435B18",
+"l.	c #5F280E",
+"m.	c #99661F",
+"n.	c #9E660D",
+"o.	c #543A11",
+"p.	c #262F08",
+"q.	c #7C6D19",
+"r.	c #B27E26",
+"s.	c #DA972F",
+"t.	c #F3A935",
+"u.	c #F7AC36",
+"v.	c #F2A834",
+"w.	c #E9A130",
+"x.	c #DD972B",
+"y.	c #AF7C2D",
+"z.	c #625638",
+"A.	c #4C583A",
+"B.	c #4D2112",
+"C.	c #7F5126",
+"D.	c #BA760D",
+"E.	c #B2710A",
+"F.	c #684205",
+"G.	c #261C0C",
+"H.	c #48371B",
+"I.	c #AD7E2C",
+"J.	c #F9AD36",
+"K.	c #F9AD35",
+"L.	c #E8A23C",
+"M.	c #E49A25",
+"N.	c #D88E1A",
+"O.	c #CD830F",
+"P.	c #C67C09",
+"Q.	c #C47B08",
+"R.	c #BE7D19",
+"S.	c #B4853C",
+"T.	c #8F6A44",
+"U.	c #4C291D",
+"V.	c #59421E",
+"W.	c #906D36",
+"X.	c #986D2A",
+"Y.	c #954A19",
+"Z.	c #633D31",
+"`.	c #78551E",
+" +	c #D39533",
+".+	c #E49F31",
+"++	c #EDA533",
+"@+	c #E09A27",
+"#+	c #CA841A",
+"$+	c #CB8009",
+"%+	c #CA7F08",
+"&+	c #C87E08",
+"*+	c #C77E0C",
+"=+	c #C57D0C",
+"-+	c #C27908",
+";+	c #A06910",
+">+	c #5D4E22",
+",+	c #493F2D",
+"'+	c #7B451B",
+")+	c #AA5A2A",
+"!+	c #4C463F",
+"~+	c #986944",
+"{+	c #5B4017",
+"]+	c #322613",
+"^+	c #885F1E",
+"/+	c #CA8C2B",
+"(+	c #E19928",
+"_+	c #D0830A",
+":+	c #CD8313",
+"<+	c #CC800A",
+"[+	c #C87D09",
+"}+	c #C0790B",
+"|+	c #8B6B2B",
+"1+	c #406968",
+"2+	c #195B66",
+"3+	c #13464D",
+"4+	c #5D5630",
+"5+	c #DE9B31",
+"6+	c #B48438",
+"7+	c #9D733F",
+"8+	c #7A5822",
+"9+	c #513A14",
+"0+	c #B37E23",
+"a+	c #AD6E09",
+"b+	c #A26910",
+"c+	c #B77A19",
+"d+	c #D88E1C",
+"e+	c #CD810A",
+"f+	c #C77C08",
+"g+	c #906C25",
+"h+	c #497E81",
+"i+	c #1B6776",
+"j+	c #125E6C",
+"k+	c #115D6B",
+"l+	c #1A535A",
+"m+	c #B38836",
+"n+	c #CE8818",
+"o+	c #B3710A",
+"p+	c #8F5B09",
+"q+	c #73501A",
+"r+	c #90641F",
+"s+	c #96671F",
+"t+	c #BF8429",
+"u+	c #DC9527",
+"v+	c #D4870F",
+"w+	c #CC8009",
+"x+	c #B1710C",
+"y+	c #5C7E72",
+"z+	c #297B8A",
+"A+	c #125E6D",
+"B+	c #1D5F6B",
+"C+	c #AA9354",
+"D+	c #D69523",
+"E+	c #B47008",
+"F+	c #8A580B",
+"G+	c #76521B",
+"H+	c #C28629",
+"I+	c #C88B2B",
+"J+	c #D1912D",
+"K+	c #E09929",
+"L+	c #D88A10",
+"M+	c #CF8209",
+"N+	c #CD8009",
+"O+	c #896927",
+"P+	c #4A919B",
+"Q+	c #1B6B7B",
+"R+	c #125F6D",
+"S+	c #255F65",
+"T+	c #C29D48",
+"U+	c #CC8817",
+"V+	c #B47107",
+"W+	c #6B4406",
+"X+	c #704E1A",
+"Y+	c #C58C31",
+"Z+	c #C98D32",
+"`+	c #CF902E",
+" @	c #E19A2B",
+".@	c #DD8E12",
+"+@	c #D38509",
+"@@	c #D08309",
+"#@	c #CE8109",
+"$@	c #66582D",
+"%@	c #428A97",
+"&@	c #196978",
+"*@	c #125A67",
+"=@	c #5B6647",
+"-@	c #E7A52E",
+";@	c #BD7709",
+">@	c #AB6C08",
+",@	c #493008",
+"'@	c #68491A",
+")@	c #D3932D",
+"!@	c #D99933",
+"~@	c #D99731",
+"{@	c #E29C2D",
+"]@	c #E39316",
+"^@	c #D7870A",
+"/@	c #D4860B",
+"(@	c #D2840A",
+"_@	c #61400B",
+":@	c #34463E",
+"<@	c #215E67",
+"[@	c #135B68",
+"}@	c #175861",
+"|@	c #516149",
+"1@	c #CF9733",
+"2@	c #CF8714",
+"3@	c #BB7508",
+"4@	c #8B5806",
+"5@	c #5B4117",
+"6@	c #D7952E",
+"7@	c #E7A032",
+"8@	c #E69F31",
+"9@	c #E8A12F",
+"0@	c #E9991B",
+"a@	c #DB8A0A",
+"b@	c #D1840A",
+"c@	c #DA9119",
+"d@	c #D5870C",
+"e@	c #AD6D08",
+"f@	c #7B5210",
+"g@	c #785B22",
+"h@	c #675C32",
+"i@	c #927332",
+"j@	c #D5952C",
+"k@	c #D28A16",
+"l@	c #BE7708",
+"m@	c #533506",
+"n@	c #3C2D16",
+"o@	c #BE8429",
+"p@	c #E49E32",
+"q@	c #EAA332",
+"r@	c #EDA632",
+"s@	c #EE9F20",
+"t@	c #E08D0B",
+"u@	c #D28409",
+"v@	c #9B6613",
+"w@	c #E49E2C",
+"x@	c #D88B10",
+"y@	c #C27A08",
+"z@	c #BD780C",
+"A@	c #C68012",
+"B@	c #CC8311",
+"C@	c #C57C0A",
+"D@	c #BF7708",
+"E@	c #BD7608",
+"F@	c #774B05",
+"G@	c #614518",
+"H@	c #CE8F2D",
+"I@	c #DD9A30",
+"J@	c #E8A232",
+"K@	c #F1A627",
+"L@	c #E4910D",
+"M@	c #D4850A",
+"N@	c #4D3004",
+"O@	c #6C4B17",
+"P@	c #D5942C",
+"Q@	c #DF9219",
+"R@	c #C97E09",
+"S@	c #C67D09",
+"T@	c #C47B09",
+"U@	c #C07908",
+"V@	c #BC7608",
+"W@	c #875506",
+"X@	c #2F2311",
+"Y@	c #875D1E",
+"Z@	c #C4882A",
+"`@	c #E5A634",
+" #	c #E79816",
+".#	c #653F05",
+"+#	c #080500",
+"@#	c #070501",
+"##	c #36260B",
+"$#	c #9E6B1B",
+"%#	c #CC820D",
+"&#	c #C37B09",
+"*#	c #C17909",
+"=#	c #B16F07",
+"-#	c #6F4605",
+";#	c #261803",
+">#	c #171006",
+",#	c #4E3610",
+"'#	c #BB8021",
+")#	c #C9800D",
+"!#	c #734905",
+"~#	c #0C0701",
+"{#	c #000000",
+"]#	c #0F0A03",
+"^#	c #5D3D0B",
+"/#	c #A3670A",
+"(#	c #B06F09",
+"_#	c #9E6307",
+":#	c #754A06",
+"<#	c #342103",
+"[#	c #0A0601",
+"}#	c #010000",
+"|#	c #291C07",
+"1#	c #3A2504",
+"2#	c #0E0902",
+"3#	c #231603",
+"4#	c #251802",
+"5#	c #130C01",
+"6#	c #030200",
+"                                                                ",
+"                        . + @ # $ %                             ",
+"                      & * = - ; > , ' )                         ",
+"                    ! ~ { ] ^ / ( _ : < [ }                     ",
+"                  | 1 2 3 4 5 6 7 8 9 0 a b c                   ",
+"                d e f g h i j k l m n o p q r s                 ",
+"                t u     v w x y z A B C D E F G                 ",
+"              H I J       K L M N O P Q R S T U V               ",
+"              W X Y       Z `  ...+.@.#.$.%.&.*.=.-.            ",
+"              ;.>.,.        '.).!.~.{.].^./.(._.:.              ",
+"                <.[.}.      |.1.2.3.4.5.6.7.8.9.                ",
+"                0.a.b.c.d.e.f.g.h.i.j.k.l.m.n.o.                ",
+"                p.q.r.s.t.u.v.w.x.y.z.A.B.C.D.E.F.G.            ",
+"              H.I.v.J.K.L.M.N.O.P.Q.R.S.T.U.V.W.X.Y.Z.          ",
+"              `. +.+++@+#+$+%+&+*+=+-+;+>+,+'+)+!+~+{+          ",
+"              ]+^+/+(+_+:+$+<+$+[+}+|+1+2+3+4+5+6+7+8+          ",
+"                  9+0+a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p+          ",
+"                  q+r+s+t+u+v+w+x+y+z+A+j+k+B+C+D+E+F+          ",
+"                G+H+I+J+K+L+M+N+O+P+Q+R+j+k+S+T+U+V+W+          ",
+"              X+Y+Z+`+ @.@+@@@#@$@%@&@R+j+*@=@-@;@>@,@          ",
+"            '@)@!@~@{@]@^@/@(@M+_@:@<@[@}@|@1@2@3@4@            ",
+"          5@6@7@8@9@0@a@b@c@d@M+e@f@g@h@i@j@k@l@V+m@            ",
+"        n@o@p@q@r@s@t@u@v@w@x@M+w+y@z@A@B@C@D@E@F@              ",
+"        G@H@I@J@K@L@M@N@O@P@Q@M+w+R@S@T@y@U@V@W@                ",
+"        X@Y@Z@`@ #^@.#+#@###$#%#$+R@P.&#*#=#-#;#                ",
+"          >#,#'#)#!#~#{#{#{#]#^#/#(#e@_#:#<#[#}#                ",
+"            }#|#1#~#{#{#{#{#{#{#2#3#4#5#6#{#{#{#                ",
+"          {#{#{#{#{#{#{#{#{#{#{#{#{#{#{#{#                      ",
+"        {#{#{#{#{#{#{#{#{#{#{#{#{#                              ",
+"        {#{#{#{#{#{#{#{#                                        ",
+"          {#{#{#{#                                              ",
+"                                                                "};
--- spe-0.8.4.h.orig/debian/links
+++ spe-0.8.4.h/debian/links
@@ -0,0 +1,6 @@
+usr/share/spe/_spe/SPE.py	usr/bin/spe
+
+usr/share/spe/_spe/doc/donate.html	usr/share/doc/spe/donate.html
+usr/share/spe/_spe/doc/about.htm	usr/share/doc/spe/about.htm
+usr/share/spe/_spe/examples		usr/share/doc/spe/examples
+usr/share/spe/_spe/images/spe.png	usr/share/pixmaps/spe.png
--- spe-0.8.4.h.orig/debian/watch
+++ spe-0.8.4.h/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=downloadurlmangle=s/prdownload/download/ \
+http://developer.berlios.de/project/showfiles.php?group_id=4161&release_id=14185 \
+	http://prdownload.berlios.de/python/spe-(.*)-wx.*\.tar\.gz