--- python-syck-0.61.2.orig/test_r/usr/lib/python2.5/site-packages/PySyck-0.61.2.egg-info
+++ python-syck-0.61.2/test_r/usr/lib/python2.5/site-packages/PySyck-0.61.2.egg-info
@@ -0,0 +1,20 @@
+Metadata-Version: 1.0
+Name: PySyck
+Version: 0.61.2
+Summary: Python bindings for the Syck YAML parser and emitter
+Home-page: http://pyyaml.org/wiki/PySyck
+Author: Kirill Simonov
+Author-email: xi@resolvent.net
+License: BSD
+Download-URL: http://pyyaml.org/download/pysyck/PySyck-0.61.2.tar.gz
+Description: YAML is a data serialization format designed for human readability
+        and interaction with scripting languages. Syck is an extension for
+        reading and writing YAML in scripting languages. PySyck is aimed to
+        update the current Python bindings for Syck.
+Platform: Any
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: BSD License
+Classifier: Programming Language :: Python
+Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Classifier: Topic :: Text Processing :: Markup
--- python-syck-0.61.2.orig/debian/dirs
+++ python-syck-0.61.2/debian/dirs
@@ -0,0 +1,2 @@
+usr/bin
+usr/sbin
--- python-syck-0.61.2.orig/debian/docs
+++ python-syck-0.61.2/debian/docs
@@ -0,0 +1,3 @@
+README.html
+README.txt
+README.txt
--- python-syck-0.61.2.orig/debian/control
+++ python-syck-0.61.2/debian/control
@@ -0,0 +1,30 @@
+Source: python-syck
+Section: python
+Priority: extra
+Maintainer: Thomas Jollans <thomas@jollans.com>
+Build-Depends: debhelper (>= 5), libsyck0-dev (>= 0.55-3.3), python-all-dev (>= 2.3), python-support (>= 0.3)
+Standards-Version: 3.7.2
+XS-Python-Version: >=2.3
+
+Package: python-syck
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, python (>=2.3)
+Replaces: python2.3-syck, python2.4-syck
+Conflicts: python2.3-syck, python2.4-syck
+Provides: python2.4-syck, python2.5-syck
+Description: PySyck python bindings to the Syck YAML parser kit
+ Syck is a simple YAML parser kit.
+ .
+ YAML(tm) (rhymes with 'camel') is a straightforward machine parsable
+ data serialization format designed for human readability and
+ interaction with scripting languages such as Perl and Python. YAML is
+ optimized for data serialization, formatted dumping, configuration
+ files, log files, Internet messaging and filtering. This specification
+ describes the YAML information model and serialization format. Together
+ with the Unicode standard for characters, it provides all the
+ information necessary to understand YAML Version 1.0 and construct
+ computer programs to process it.
+ .
+  Homepage: http://pyyaml.org/wiki/PySyck
+XB-Python-Version: ${python:Versions}
+
--- python-syck-0.61.2.orig/debian/rules
+++ python-syck-0.61.2/debian/rules
@@ -0,0 +1,90 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+PYTHONS := $(shell pyversions --requested debian/control)
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+
+	touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+
+	for py in $(PYTHONS); do \
+		$$py setup.py build; \
+		mv build build-$$py; \
+	done
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	python setup.py clean
+	for py in $(PYTHONS); do rm -rf build-$$py; done
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	for py in $(PYTHONS); do \
+		ln -s build-$$py build; \
+		$$py setup.py install --root=$(CURDIR)/debian/python-syck \
+			--install-purelib=/usr/share/python-support/python-syck \
+			--install-platlib=/usr/lib/python-support/python-syck/$$py; \
+		rm build; \
+	done
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs 
+	dh_installdocs
+	dh_installexamples
+	dh_pysupport
+	dh_strip
+	dh_link
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
--- python-syck-0.61.2.orig/debian/changelog
+++ python-syck-0.61.2/debian/changelog
@@ -0,0 +1,15 @@
+python-syck (0.61.2-1~bpo40+1) etch-backports; urgency=low
+
+  * Backported to etch, lower build-dep on libsyck0-dev to that in etch
+
+ -- Joerg Jaspert <joerg@debian.org>  Sun, 02 Mar 2008 22:33:55 +0100
+
+python-syck (0.61.2-1) unstable; urgency=low
+
+  * Initial release (effectively an upgrade from syck-0.55's python bindings
+    to PySyck-0.61.2)
+    Closes: #415756, #347417, #373388, #261928, #286173, #293251, #293252
+    Closes: #299536
+
+ -- Thomas Jollans <thomas@jollans.com>  Mon, 25 Jun 2007 23:10:16 +0200
+
--- python-syck-0.61.2.orig/debian/compat
+++ python-syck-0.61.2/debian/compat
@@ -0,0 +1 @@
+5
--- python-syck-0.61.2.orig/debian/pycompat
+++ python-syck-0.61.2/debian/pycompat
@@ -0,0 +1 @@
+2
--- python-syck-0.61.2.orig/debian/copyright
+++ python-syck-0.61.2/debian/copyright
@@ -0,0 +1,35 @@
+This package was debianized by Thomas Jollans <thomas@jollans.com> on
+Mon, 25 Jun 2007 23:10:16 +0200.
+
+It was downloaded from <url://example.com>
+
+Upstream Author:  Kirill Simonov <xi@resolvent.net>
+
+Copyright: 
+    Copyright (C) 2006 Kirill Simonov
+
+License:
+
+    Redistribution and use in source and binary forms, with or without
+    modification, are permitted under the terms of the BSD License.
+
+    THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+    ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+    SUCH DAMAGE.
+
+On Debian systems, the complete text of the BSD License can be 
+found in `/usr/share/common-licenses/BSD'.
+
+
+The Debian packaging is (C) 2007, Thomas Jollans <thomas@jollans.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+
