Hi, Attached is the diff for my nevow 0.7.0-1.1 NMU.
-- ·O· Pierre Habouzit ··O [EMAIL PROTECTED] OOO http://www.madism.org
diff -u nevow-0.7.0/debian/changelog nevow-0.7.0/debian/changelog --- nevow-0.7.0/debian/changelog +++ nevow-0.7.0/debian/changelog @@ -1,3 +1,10 @@ +nevow (0.7.0-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Update nevow to the last python policy (Closes: #373467). + + -- Pierre Habouzit <[EMAIL PROTECTED]> Thu, 29 Jun 2006 15:10:56 +0200 + nevow (0.7.0-1) unstable; urgency=low * New upstream version. diff -u nevow-0.7.0/debian/control nevow-0.7.0/debian/control --- nevow-0.7.0/debian/control +++ nevow-0.7.0/debian/control @@ -2,44 +2,17 @@ Section: devel Priority: extra Maintainer: Tommi Virtanen <[EMAIL PROTECTED]> -Standards-Version: 3.6.2 -Build-Depends: python-dev, python2.3-dev, python2.3-twisted-core (>= 2.2), python2.3-twisted-web (>= 0.5), python2.4-dev, python2.4-twisted-core (>= 2.2), python2.4-twisted-web (>= 0.5), cdbs, debhelper (>= 4.1.68) +Standards-Version: 3.7.2 +Build-Depends: debhelper (>= 5.0.37.2), cdbs (>= 0.4.43), python-all-dev (>= 2.3.5-11), python-support (>= 0.3) +Build-Depends-Indep: python-twisted-core (>= 2.2), python-twisted-web (>= 0.5) Package: python-nevow Architecture: all -Depends: python (>= 2.3), python (<< 2.4), python2.3-nevow (>= 0.7.0) -Description: Web application templating system for Python and Twisted - This is a dummy package that only depends on python2.3-nevow. - -Package: python2.3-nevow -Architecture: all -Depends: python2.3, python2.3-twisted-core (>= 2.2), python2.3-twisted-web (>= 0.5) -Description: Web application templating system for Python and Twisted - Nevow's main focus is on separating the HTML template from both the - business logic and the display logic, while allowing the programmer - to write pure Python code as much as possible. It separates your code - into 'data' and 'render' functions, a simplified implementation of - traditional MVC. It has various parts which can be used individually - or as a whole, integrated web solution: - . - - XHTML templates: contain no programming logic, only nodes tagged - with nevow attributes - - data/render methods: simplified MVC - - stan: An s-expression-like syntax for expressing xml in pure python - - formless: For describing the types of objects which may be passed - to methods of your classes, validating and coercing string input from - either web or command-line sources, and calling your methods - automatically once validation passes - - freeform: For rendering web forms based on formless type - descriptions, accepting form posts and passing them to formless - validators, and rendering error forms in the event validation fails - - livepage: Cross-browser JavaScript glue for sending client side - events to the server and server side events to the client after the - page has loaded, without causing the entire page to refresh - -Package: python2.4-nevow -Architecture: all -Depends: python2.4, python2.4-twisted-core (>= 2.2), python2.4-twisted-web (>= 0.5) +Depends: ${python:Depends}, python-twisted-core (>= 2.2), python-twisted-web (>= 0.5) +Provides: ${python:Provides} +Replaces: python2.3-nevow (<< 0.7.0-1.1), python2.4-nevow (<< 0.7.0-1.1) +Conflicts: python2.3-nevow (<< 0.7.0-1.1), python2.4-nevow (<< 0.7.0-1.1) +XB-Python-Version: ${python:Versions} Description: Web application templating system for Python and Twisted Nevow's main focus is on separating the HTML template from both the business logic and the display logic, while allowing the programmer diff -u nevow-0.7.0/debian/rules nevow-0.7.0/debian/rules --- nevow-0.7.0/debian/rules +++ nevow-0.7.0/debian/rules @@ -2,13 +2,13 @@ # -*- mode: makefile; coding: utf-8 -*- # Copyright © 2002,2003 Colin Walters <[EMAIL PROTECTED]> +DEB_PYTHON_SYSTEM = pysupport + include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/python-distutils.mk -DEB_INSTALL_DOCS_python2.3-nevow := doc/* -DEB_INSTALL_EXAMPLES_python2.3-nevow := examples/* -DEB_INSTALL_DOCS_python2.4-nevow := doc/* -DEB_INSTALL_EXAMPLES_python2.4-nevow := examples/* +DEB_INSTALL_DOCS_python-nevow := doc/* +DEB_INSTALL_EXAMPLES_python-nevow := examples/* DEB_DH_ALWAYS_EXCLUDE := .svn docdir = debian/$(1)/usr/share/doc/$(1) @@ -22,28 +22,6 @@ '$(call docdir,$*)/copyright.tmp' \ '$(call docdir,$*)/copyright' -# see http://bugs.debian.org/295906 -cdbs_python_ver = $(filter-out -%,$(subst -, -,$(patsubst python%,%,$(cdbs_curpkg)))) - -$(patsubst %,binary-post-install/%,$(DEB_PYTHON_REAL_LIB_PACKAGES)):: binary-post-install/%: - set -e; for file in debian/$(cdbs_curpkg)/usr/bin/*; do \ - sed '1s|.*|#!/usr/bin/python$(cdbs_python_ver)|' $$file >\ - "$${file}$(cdbs_python_ver)";\ - rm -- "$$file";\ - chmod 755 "$${file}$(cdbs_python_ver)";\ - mv "debian/$(cdbs_curpkg)/usr/share/man/man1/$$(basename "$$file").1" \ - "debian/$(cdbs_curpkg)/usr/share/man/man1/$$(basename "$$file")$(cdbs_python_ver).1";\ - done - -binary-post-install/python2.3-nevow:: - set -e; for file in debian/$(cdbs_curpkg)/usr/bin/*;\ - do target="$$(echo "$$file" | sed 's/$(cdbs_python_ver)$$//')";\ - ln -s "$$(basename "$$file")" "$$target";\ - manname="$$(basename "$$target").1.gz";\ - ln -s "$$(basename "$$file").1.gz" \ - "debian/$(cdbs_curpkg)/usr/share/man/man1/$$manname";\ - done - clean:: rm -f setupcommon.pyc only in patch2: unchanged: --- nevow-0.7.0.orig/debian/compat +++ nevow-0.7.0/debian/compat @@ -1 +1 @@ -4 +5 only in patch2: unchanged: --- nevow-0.7.0.orig/debian/python-nevow.manpages +++ nevow-0.7.0/debian/python-nevow.manpages @@ -0,0 +1 @@ +doc/man/nevow-xmlgettext.1 only in patch2: unchanged: --- nevow-0.7.0.orig/debian/pycompat +++ nevow-0.7.0/debian/pycompat @@ -0,0 +1 @@ +2
signature.asc
Description: Digital signature