[Python-modules-commits] r5068 - in packages/sphinx/trunk (15 files)

dottedmag-guest at users.alioth.debian.org dottedmag-guest at users.alioth.debian.org
Sun Apr 20 16:54:52 UTC 2008


    Date: Sunday, April 20, 2008 @ 16:54:50
  Author: dottedmag-guest
Revision: 5068

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/sphinx/trunk/debian/
  packages/sphinx/trunk/debian/changelog
  packages/sphinx/trunk/debian/compat
  packages/sphinx/trunk/debian/control
  packages/sphinx/trunk/debian/copyright
  packages/sphinx/trunk/debian/docs
  packages/sphinx/trunk/debian/examples
  packages/sphinx/trunk/debian/manpages
  packages/sphinx/trunk/debian/patches/
  packages/sphinx/trunk/debian/patches/disable-sphinx-web.patch
  packages/sphinx/trunk/debian/patches/series
  packages/sphinx/trunk/debian/rules
  packages/sphinx/trunk/debian/sphinx-build.1
  packages/sphinx/trunk/debian/sphinx-quickstart.1
  packages/sphinx/trunk/debian/watch


Property changes on: packages/sphinx/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: packages/sphinx/trunk/debian/changelog
===================================================================
--- packages/sphinx/trunk/debian/changelog	                        (rev 0)
+++ packages/sphinx/trunk/debian/changelog	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1,9 @@
+sphinx (0.1.61950-1) unstable; urgency=low
+
+  * Initial release (Closes: #474782)
+  
+  * Added patch disable-sphinx-web.patch, disabling installation of
+    sphinx-web, which is not yet ready.
+  * Added manpages for sphinx-build(1) and sphinx-quickstart(1).
+
+ -- Mikhail Gusarov <dottedmag at dottedmag.net>  Mon,  1 Jan 2007 16:03:10 +0600

Added: packages/sphinx/trunk/debian/compat
===================================================================
--- packages/sphinx/trunk/debian/compat	                        (rev 0)
+++ packages/sphinx/trunk/debian/compat	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1 @@
+5

Added: packages/sphinx/trunk/debian/control
===================================================================
--- packages/sphinx/trunk/debian/control	                        (rev 0)
+++ packages/sphinx/trunk/debian/control	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1,27 @@
+Source: sphinx
+Section: python
+Priority: optional
+Maintainer: Mikhail Gusarov <dottedmag at dottedmag.net>
+Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Homepage: http://sphinx.pocoo.org/
+Build-Depends: debhelper (>= 5.0.38), python-all-dev (>= 2.3.5-11), python-setuptools (>= 0.6c5), quilt
+Build-Depends-Indep: python-central (>= 0.5.6), python-docutils
+Standards-Version: 3.7.3
+XS-Python-Version: all
+
+Package: sphinx
+Architecture: all
+Depends: ${python:Depends}, python-pygments (>= 0.8)
+XB-Python-Version: ${python:Versions}
+Description: Tool for producing documentation for Python projects
+ sphinx is a tool for producing documentation for Python projects, using
+ reStructuredText as markup language.
+ .
+ sphinx features:
+  * HTML, CHM, LaTeX output,
+  * Cross-referencing source code,
+  * Automatic indices,
+  * Code highlighting, using Pygments,
+  * Extensibility. Existing extensions:
+    - automatic testing of code snippets,
+    - including doctrings from Pyhton modules.

Added: packages/sphinx/trunk/debian/copyright
===================================================================
--- packages/sphinx/trunk/debian/copyright	                        (rev 0)
+++ packages/sphinx/trunk/debian/copyright	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1,74 @@
+This package was first debianized by Mikhail Gusarov <dottedmag at dottedmag.net> on
+Mon,  08 Apr 2008 01:52:52 +0600
+
+It was downloaded from http://sphinx.pocoo.org/
+
+Copyright Holders: Georg Brandl <georg at python.org>, Armin Ronacher
+<armin.ronacher at active-4.com>, Josip Dzolonga, Gerold Penz, Vivake Gupta
+<v at nano.com>
+
+License:
+
+Copyright (c) 2007-2008 by the respective authors (see AUTHORS file).
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+    * Redistributions of source code must retain the above copyright
+      notice, this list of conditions and the following disclaimer.
+
+    * Redistributions in binary form must reproduce the above
+      copyright notice, this list of conditions and the following
+      disclaimer in the documentation and/or other materials provided
+      with the distribution.
+
+    * The names of the contributors may not be used to endorse or
+      promote products derived from this software without specific
+      prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT
+OWNER 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.
+
+AUTHORS file:
+
+The doctools are written and maintained by Georg Brandl <georg at python.org>.
+Substantial parts of the templates and the web application were written by
+Armin Ronacher <armin.ronacher at active-4.com>.
+
+Other contributors are noted in the :copyright: fields within the docstrings
+of the respective files.
+
+Many thanks for all contributions!
+
+Copyright strings:
+
+sphinx/jinja/*, spinx/search.py, sphinx/web/{feed.py,antispam.py,userdb.py,wsgiutil.py,markup.py,}
+
+:copyright: 2007-2008 by Armin Ronacher.
+
+sphinx/ext/coverage.py
+
+:copyright: 2007 by Josip Dzolonga, Georg Brandl.
+
+sphinx/web/mail.py
+
+:copyright: 2004-2007 by Gerold Penz.
+
+sphinx/util/stemmer.py
+
+:copyright: 2001 by Vivake Gupta <v at nano.com>
+
+All the other files:
+
+:copyright: 2007-2008 by Georg Brandl <georg at python.org>

Added: packages/sphinx/trunk/debian/docs
===================================================================
--- packages/sphinx/trunk/debian/docs	                        (rev 0)
+++ packages/sphinx/trunk/debian/docs	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1,4 @@
+README
+TODO
+doc
+_build/html

Added: packages/sphinx/trunk/debian/examples
===================================================================
--- packages/sphinx/trunk/debian/examples	                        (rev 0)
+++ packages/sphinx/trunk/debian/examples	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1 @@
+

Added: packages/sphinx/trunk/debian/manpages
===================================================================
--- packages/sphinx/trunk/debian/manpages	                        (rev 0)
+++ packages/sphinx/trunk/debian/manpages	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1,2 @@
+debian/sphinx-build.1
+debian/sphinx-quickstart.1

Added: packages/sphinx/trunk/debian/patches/disable-sphinx-web.patch
===================================================================
--- packages/sphinx/trunk/debian/patches/disable-sphinx-web.patch	                        (rev 0)
+++ packages/sphinx/trunk/debian/patches/disable-sphinx-web.patch	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1,12 @@
+Index: python-sphinx-0.1.61950/setup.py
+===================================================================
+--- python-sphinx-0.1.61950.orig/setup.py	2008-04-08 02:21:02.000000000 +0700
++++ python-sphinx-0.1.61950/setup.py	2008-04-08 02:21:12.000000000 +0700
+@@ -83,7 +83,6 @@
+     entry_points={
+         'console_scripts': [
+             'sphinx-build = sphinx:main',
+-            'sphinx-web = sphinx.web:main',
+             'sphinx-quickstart = sphinx.quickstart:main'
+         ]
+     },

Added: packages/sphinx/trunk/debian/patches/series
===================================================================
--- packages/sphinx/trunk/debian/patches/series	                        (rev 0)
+++ packages/sphinx/trunk/debian/patches/series	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1 @@
+disable-sphinx-web.patch

Added: packages/sphinx/trunk/debian/rules
===================================================================
--- packages/sphinx/trunk/debian/rules	                        (rev 0)
+++ packages/sphinx/trunk/debian/rules	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1,55 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+include /usr/share/quilt/quilt.make
+
+PACKAGE_NAME=sphinx
+
+build: build-stamp
+
+build-stamp: patch
+	dh_testdir
+
+	mkdir -p _build/html
+	python sphinx-build.py doc _build/html
+	touch build-stamp
+
+clean: unpatch
+	dh_testdir
+	dh_testroot
+	-rm -f build-stamp
+
+	python setup.py clean
+	rm -rf build
+	rm -f build-stamp
+	find . -name '*.py[co]' -delete
+	rm -rf _build
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	python setup.py install --no-compile --root $(CURDIR)/debian/$(PACKAGE_NAME)
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs CHANGES
+	dh_installdocs
+	dh_installexamples
+	dh_installman
+	dh_pycentral
+	dh_compress -X.py -X.js -X.rst -X.json -X.doctree -X.txt
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-arch: build install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install


Property changes on: packages/sphinx/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/sphinx/trunk/debian/sphinx-build.1
===================================================================
--- packages/sphinx/trunk/debian/sphinx-build.1	                        (rev 0)
+++ packages/sphinx/trunk/debian/sphinx-build.1	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1,79 @@
+.TH sphinx-build 1 "Apr 2008" "Sphinx 0.1.61950" "User Commands"
+.SH NAME
+sphinx-build \- Sphinx documentation generator tool
+.SH SYNOPSIS
+.B sphinx-build
+[\fIoptions\fR] <\fIsourcedir\fR> <\fIoutdir\fR> [\fIfilenames\fR...]
+.SH DESCRIPTION
+sphinx-build generates documentation from the files in <sourcedir> and places it
+to the <outdir>.
+
+sphinx-build looks for <sourcedir>/conf.py for the configuration settings.
+.B sphinx-quickstart(1)
+may be used to generate template files, including conf.py.
+
+sphinx-build can create documentation in different formats. Format is selected
+by specifying builder in command line and defaults to HTML. Builders can
+also perform other tasks related to the documentation processing.
+
+List of available builders:
+.TP
+\fBhtml\fR
+HTML files generation. This is default builder.
+.TP
+\fBweb\fR
+Generating files for sphinx-web (currently undergo the full rewrite, and not working).
+.TP
+\fBhtmlhelp\fR
+Generates files for CHM generation.
+.TP
+\fBlatex\fR
+Generates LaTeX version of documentation. This builder uses PAPER environment variable (e.g. PAPER=a4 or PAPER=letter) if available.
+.TP
+\fBchanges\fR
+Shows changed/added/deprecated items since last documentation generation.
+.TP
+\fBlinkcheck\fR
+Checks the integrity of all external links in documentation
+.SH OPTIONS
+.TP
+\fB-b\fR <builder>
+Builder to use; defaults to html. See the full list of builders above.
+.TP
+\fB<filename>\fR
+Force to generate documentation for the file
+.TP
+\fB-a\fR
+Generate all files; without this option only documentation for new and changed files is generated
+.TP
+\fB-E\fR
+Ignore cached files, forces to re-read all files from disk.
+.TP
+\fB-d\fR <path>
+Path to cached environment; defaults to <outdir>/.doctrees
+.TP
+\fB-D\fR <setting>=<value>
+Overrides setting from <sourcedir>/conf.py
+.TP
+\fB-N\fR
+Do not do colored output
+.TP
+\fB-q\fR
+Quiet operation, just prints warnings and errors on stderr
+.TP
+\fB-P\fR
+Run Pdb on exception
+.SH "SEE ALSO"
+.BR sphinx-quickstart(1)
+.br
+The full documentation for
+.B Sphinx
+is installed to
+.B /usr/share/doc/sphinx
+.
+.SH AUTHOR
+Georg Brandl <georg at python.org>, Armin Ronacher <armin.ronacher at active-4.com> et
+al.
+.PP
+This manual page was written by Mikhail Gusarov <dottedmag at dottedmag.net>, for
+the Debian project (but may be used by others).

Added: packages/sphinx/trunk/debian/sphinx-quickstart.1
===================================================================
--- packages/sphinx/trunk/debian/sphinx-quickstart.1	                        (rev 0)
+++ packages/sphinx/trunk/debian/sphinx-quickstart.1	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1,23 @@
+.TH sphinx-quickstart 1 "Apr 2008" "Sphinx 0.1.61950" "User Commands"
+.SH NAME
+sphinx-quickstart \- Sphinx documentation template generator
+.SH SYNOPSIS
+.B sphinx-quickstart
+.SH DESCRIPTION
+sphinx-quickstart is the interactive tool which asks some questions about your
+Python project and then generates template documentation directory and sample
+Makefile to be used with \fBsphinx-build(1)\fR.
+.SH "SEE ALSO"
+.BR sphinx-build(1)
+.br
+The full documentation for
+.B Sphinx
+is installed to
+.B /usr/share/doc/sphinx
+.
+.SH AUTHOR
+Georg Brandl <georg at python.org>, Armin Ronacher <armin.ronacher at active-4.com> et
+al.
+.PP
+This manual page was written by Mikhail Gusarov <dottedmag at dottedmag.net> for
+the Debian project (but may be used by others).

Added: packages/sphinx/trunk/debian/watch
===================================================================
--- packages/sphinx/trunk/debian/watch	                        (rev 0)
+++ packages/sphinx/trunk/debian/watch	2008-04-20 16:54:50 UTC (rev 5068)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/S/Sphinx/Sphinx-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list