[Python-modules-commits] r11140 - in packages/python-webob/trunk/debian (7 files)

piotr at users.alioth.debian.org piotr at users.alioth.debian.org
Wed Jan 13 22:09:11 UTC 2010


    Date: Wednesday, January 13, 2010 @ 22:09:09
  Author: piotr
Revision: 11140

* Add add_docs_conf.patch (missing in upstream tarball)
* Bump Standards-Version to 3.8.3 (no changes needed)

Added:
  packages/python-webob/trunk/debian/README.source
  packages/python-webob/trunk/debian/patches/
  packages/python-webob/trunk/debian/patches/add_docs_conf.patch
  packages/python-webob/trunk/debian/patches/series
Modified:
  packages/python-webob/trunk/debian/changelog
  packages/python-webob/trunk/debian/control
  packages/python-webob/trunk/debian/rules

Added: packages/python-webob/trunk/debian/README.source
===================================================================
--- packages/python-webob/trunk/debian/README.source	                        (rev 0)
+++ packages/python-webob/trunk/debian/README.source	2010-01-13 22:09:09 UTC (rev 11140)
@@ -0,0 +1,2 @@
+This package uses the patch management system quilt as documented in
+/usr/share/doc/quilt/README.source.

Modified: packages/python-webob/trunk/debian/changelog
===================================================================
--- packages/python-webob/trunk/debian/changelog	2010-01-13 20:34:27 UTC (rev 11139)
+++ packages/python-webob/trunk/debian/changelog	2010-01-13 22:09:09 UTC (rev 11140)
@@ -1,9 +1,11 @@
-python-webob (0.9.7-1) UNRELEASED; urgency=low
+python-webob (0.9.7.1-1) unstable; urgency=low
 
   * New upstream release
   * 01-autoclass-autodata patch removed, no longer needed
+  * Add add_docs_conf.patch (missing in upstream tarball)
+  * Bump Standards-Version to 3.8.3 (no changes needed)
 
- -- Piotr Ożarowski <piotr at debian.org>  Thu, 17 Dec 2009 22:00:26 +0100
+ -- Piotr Ożarowski <piotr at debian.org>  Wed, 13 Jan 2010 22:07:40 +0100
 
 python-webob (0.9.6.1-1.1) unstable; urgency=low
 

Modified: packages/python-webob/trunk/debian/control
===================================================================
--- packages/python-webob/trunk/debian/control	2010-01-13 20:34:27 UTC (rev 11139)
+++ packages/python-webob/trunk/debian/control	2010-01-13 22:09:09 UTC (rev 11140)
@@ -3,10 +3,10 @@
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Uploaders: Christoph Haas <haas at debian.org>, Piotr Ożarowski <piotr at debian.org>
-Build-Depends: debhelper (>= 5)
-Build-Depends-Indep: python (>= 2.3.3), python-all-dev, python-support (>= 0.6.4),
+Build-Depends: debhelper (>= 5), quilt
+Build-Depends-Indep: python (>= 2.3.3), python-all, python-support (>= 0.6.4),
  python-setuptools (>= 0.6b3-1~), python-sphinx (>= 0.6)
-Standards-Version: 3.8.2
+Standards-Version: 3.8.3
 XS-Python-Version: all
 Homepage: http://pythonpaste.org/webob/
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-webob/trunk/

Added: packages/python-webob/trunk/debian/patches/add_docs_conf.patch
===================================================================
--- packages/python-webob/trunk/debian/patches/add_docs_conf.patch	                        (rev 0)
+++ packages/python-webob/trunk/debian/patches/add_docs_conf.patch	2010-01-13 22:09:09 UTC (rev 11140)
@@ -0,0 +1,138 @@
+# add missing file from upstream repository
+Index: python-webob-0.9.7.1/docs/conf.py
+===================================================================
+--- /dev/null
++++ python-webob-0.9.7.1/docs/conf.py
+@@ -0,0 +1,132 @@
++# -*- coding: utf-8 -*-
++#
++# Paste documentation build configuration file, created by
++# sphinx-quickstart on Tue Apr 22 22:08:49 2008.
++#
++# This file is execfile()d with the current directory set to its containing dir.
++#
++# The contents of this file are pickled, so don't put values in the namespace
++# that aren't pickleable (module imports are okay, they're removed automatically).
++#
++# All configuration values have a default value; values that are commented out
++# serve to show the default value.
++
++import sys
++
++# If your extensions are in another directory, add it here.
++#sys.path.append('some/directory')
++
++# General configuration
++# ---------------------
++
++# Add any Sphinx extension module names here, as strings. They can be extensions
++# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
++extensions = ['sphinx.ext.autodoc']
++
++# Add any paths that contain templates here, relative to this directory.
++templates_path = ['_templates']
++
++# The suffix of source filenames.
++source_suffix = '.txt'
++
++# The master toctree document.
++master_doc = 'index'
++
++# General substitutions.
++project = 'WebOb'
++copyright = '2008, Ian Bicking'
++
++# The default replacements for |version| and |release|, also used in various
++# other places throughout the built documents.
++#
++# The short X.Y version.
++version = '0.9'
++# The full version, including alpha/beta/rc tags.
++release = '0.9.7.1'
++
++# There are two options for replacing |today|: either, you set today to some
++# non-false value, then it is used:
++#today = ''
++# Else, today_fmt is used as the format for a strftime call.
++today_fmt = '%B %d, %Y'
++
++# List of documents that shouldn't be included in the build.
++unused_docs = ['jsonrpc-example-code/test_jsonrpc']
++
++# If true, '()' will be appended to :func: etc. cross-reference text.
++#add_function_parentheses = True
++
++# If true, the current module name will be prepended to all description
++# unit titles (such as .. function::).
++#add_module_names = True
++
++# If true, sectionauthor and moduleauthor directives will be shown in the
++# output. They are ignored by default.
++#show_authors = False
++
++# The name of the Pygments (syntax highlighting) style to use.
++pygments_style = 'sphinx'
++
++
++# Options for HTML output
++# -----------------------
++
++# The style sheet to use for HTML and HTML Help pages. A file of that name
++# must exist either in Sphinx' static/ path, or in one of the custom paths
++# given in html_static_path.
++html_style = 'default.css'
++
++# Add any paths that contain custom static files (such as style sheets) here,
++# relative to this directory. They are copied after the builtin static files,
++# so a file named "default.css" will overwrite the builtin "default.css".
++html_static_path = ['_static']
++
++# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
++# using the given strftime format.
++html_last_updated_fmt = '%b %d, %Y'
++
++# If true, SmartyPants will be used to convert quotes and dashes to
++# typographically correct entities.
++#html_use_smartypants = True
++
++# Content template for the index page.
++#html_index = ''
++
++# Custom sidebar templates, maps document names to template names.
++#html_sidebars = {}
++
++# Additional templates that should be rendered to pages, maps page names to
++# template names.
++#html_additional_pages = {}
++
++# If false, no module index is generated.
++#html_use_modindex = True
++
++# If true, the reST sources are included in the HTML build as _sources/<name>.
++#html_copy_source = True
++
++# Output file base name for HTML help builder.
++htmlhelp_basename = 'WebObdoc'
++
++
++# Options for LaTeX output
++# ------------------------
++
++# The paper size ('letter' or 'a4').
++#latex_paper_size = 'letter'
++
++# The font size ('10pt', '11pt' or '12pt').
++#latex_font_size = '10pt'
++
++# Grouping the document tree into LaTeX files. List of tuples
++# (source start file, target name, title, author, document class [howto/manual]).
++#latex_documents = []
++
++# Additional stuff for the LaTeX preamble.
++#latex_preamble = ''
++
++# Documents to append as an appendix to all manuals.
++#latex_appendices = []
++
++# If false, no module index is generated.
++#latex_use_modindex = True

Added: packages/python-webob/trunk/debian/patches/series
===================================================================
--- packages/python-webob/trunk/debian/patches/series	                        (rev 0)
+++ packages/python-webob/trunk/debian/patches/series	2010-01-13 22:09:09 UTC (rev 11140)
@@ -0,0 +1 @@
+add_docs_conf.patch

Modified: packages/python-webob/trunk/debian/rules
===================================================================
--- packages/python-webob/trunk/debian/rules	2010-01-13 20:34:27 UTC (rev 11139)
+++ packages/python-webob/trunk/debian/rules	2010-01-13 22:09:09 UTC (rev 11140)
@@ -3,9 +3,11 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
+include /usr/share/quilt/quilt.make
+
 package=python-webob
 
-clean:
+clean: unpatch
 	rm -f build-*
 	dh_testdir
 	dh_testroot
@@ -15,7 +17,7 @@
 
 build: build-docs
 
-build-docs:
+build-docs: $(QUILT_STAMPFN)
 	dh_testdir
 	dh_installdirs
 	mkdir docs/_static # Sphinx needs it




More information about the Python-modules-commits mailing list