debian/0000755000000000000000000000000011670120535007166 5ustar debian/control0000644000000000000000000000217711670120505010575 0ustar Source: sourcecodegen Section: python Priority: optional Maintainer: Debian/Ubuntu Zope Team Uploaders: Brian Sutherland , Fabio Tranchitella Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.6.6-3~), python-setuptools, python-van.pydeb (>= 1.3.0-4) Standards-Version: 3.9.2 X-Python-Version: >= 2.4 Vcs-Svn: svn://svn.debian.org/pkg-zope/sourcecodegen/trunk Vcs-Browser: http://svn.debian.org/viewsvn/pkg-zope/sourcecodegen/trunk Homepage: http://pypi.python.org/pypi/sourcecodegen/ Package: python-sourcecodegen Architecture: all Depends: ${pydeb:Depends}, ${python:Depends}, ${misc:Depends} Recommends: ${pydeb:Recommends} Provides: ${pydeb:Provides}, ${python:Provides} Suggests: ${pydeb:Suggests} Description: Python source-code generator based on the compiler.ast abstract syntax tree This package provides a module-level source-code generator which operates on the AST from the built-in compiler.ast module. . Note that this AST is not compatible with the new ast module in Python 2.6. debian/source/0000755000000000000000000000000011670120535010466 5ustar debian/source/format0000644000000000000000000000001411670114471011676 0ustar 3.0 (quilt) debian/source/options0000644000000000000000000000004211670114471012102 0ustar extend-diff-ignore = "\.egg-info" debian/docs0000644000000000000000000000001311670120413010026 0ustar README.txt debian/watch0000644000000000000000000000013511650200323010206 0ustar version=3 http://pypi.python.org/packages/source/s/sourcecodegen/sourcecodegen-(.*)\.tar\.gz debian/tests/0000755000000000000000000000000011670120535010330 5ustar debian/tests/control0000644000000000000000000000010511650200323011717 0ustar Tests: all Features: no-build-needed Depends: @, python-zope.testing debian/tests/all0000644000000000000000000000007111650200323011011 0ustar #!/bin/bash . /usr/share/python-zope.testing/test_helper debian/compat0000644000000000000000000000000211650200323010354 0ustar 7 debian/copyright0000644000000000000000000000421111670115143011116 0ustar Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5/copyright-format.xml?view=co&revision=220&view=markup Upstream-Name: sourcecodegen Upstream-Contact: Malthe Borch Source: http://pypi.python.org/pypi/sourcecodegen Files: * Copyright: 2008-2010 Malthe Borch, All Rights Reserved Comment: http://repoze.org/license.html License: BSD-3-clause~repoze A copyright notice accompanies this license document that identifies the copyright holders. . Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions in source code must retain the accompanying copyright notice, this list of conditions, and the following disclaimer. . 2. Redistributions in binary form must reproduce the accompanying copyright notice, this list of conditions, and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. Names of the copyright holders must not be used to endorse or promote products derived from this software without prior written permission from the copyright holders. . 4. If any files are modified, you must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. . Disclaimer . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED 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 COPYRIGHT HOLDERS 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. debian/changelog0000644000000000000000000000276611670120434011051 0ustar sourcecodegen (0.6.14-1) unstable; urgency=low * Team upload. * New upstream release. * debian/control: + Add Homepage field. + Add Vcs-Browser and rename XS-Vcs-Svn field (dpkg supports them now). + Bump Standards-Version to 3.9.2. No changes needed. + Replace python-all-dev by python-all in Build-Depends. + Bump debhelper version in Build-Depends to 7.0.50~ (because of override_dh_* being used). * Add README.txt to debian/docs. * Switch from now deprecated dh_pycentral to dh_python2. Closes: #617067. + debian/rules: use dh_python2 instead of dh_pycentral. + debian/control: - Remove python-central from Build-Depends. - Bump python-all Build-Depends to 2.6.6-3~. - Remove XB-Python-Version field. * Switch to 3.0 (quilt) source format. + debian/source/options: - Ignore changes in *.egg-info directory otherwise building twice fails. * Switch debian/copyright to DEP5. -- Arnaud Fontaine Thu, 08 Dec 2011 19:51:08 +0900 sourcecodegen (0.6.12-2) unstable; urgency=low * Move our tests into the examples directory as they don't allways compile on all available python versions. This caused installation failures when some python versions are installed. (Closes: #567427) -- Brian Sutherland Mon, 01 Feb 2010 11:53:46 +0100 sourcecodegen (0.6.12-1) unstable; urgency=low * Initial Packaging. -- Brian Sutherland Thu, 14 Jan 2010 12:25:32 +0100 debian/rules0000755000000000000000000000117611670113733010255 0ustar #!/usr/bin/make -f -include /usr/share/python/python.mk PYVERS=$(shell pyversions -vr debian/control) %: dh --with pydeb --with python2 $@ override_dh_install: $(MAKE) -f debian/rules $(PYVERS:%=fix-install-python%) fix-install-python%: # Our tests don't allways compile on all available python versions # so we move them into the examples directory. # see http://bugs.debian.org/567427 install -d debian/python-sourcecodegen/usr/share/doc/python-sourcecodegen/examples mv debian/python-sourcecodegen$(call py_libdir,$*)/sourcecodegen/tests \ debian/python-sourcecodegen/usr/share/doc/python-sourcecodegen/examples/tests$*