[Python-apps-commits] r9228 - in packages/tox/trunk/debian (4 files)

warsaw-guest at users.alioth.debian.org warsaw-guest at users.alioth.debian.org
Sun Nov 11 01:10:33 UTC 2012


    Date: Sunday, November 11, 2012 @ 01:10:32
  Author: warsaw-guest
Revision: 9228

d/control, d/copyright: Add back a few changes I missed when doing the initial
svn import from my bzr working branch.

d/rules: Call sphinx-build directly to obviate the need for the
sphinx-quickstart generated Makefile.  Also, clean up debian/manpage/_build.

d/manpage/tox-man.rst: Flesh this out from Sphinx's own example.

Modified:
  packages/tox/trunk/debian/control
  packages/tox/trunk/debian/copyright
  packages/tox/trunk/debian/manpage/tox-man.rst
  packages/tox/trunk/debian/rules

Modified: packages/tox/trunk/debian/control
===================================================================
--- packages/tox/trunk/debian/control	2012-11-10 16:48:04 UTC (rev 9227)
+++ packages/tox/trunk/debian/control	2012-11-11 01:10:32 UTC (rev 9228)
@@ -1,8 +1,9 @@
 Source: tox
-Section: misc
-Priority: extra
+Section: python
+Priority: optional
 Maintainer: Barry Warsaw <barry at python.org>
 Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Homepage: http://codespeak.net/tox
 Build-Depends: debhelper (>= 8),
                python-all,
                python-argparse,
@@ -10,12 +11,13 @@
                python-setuptools,
                python-sphinx (>= 1.0.7+dfsg),
                python-virtualenv
-Standards-Version: 3.9.3
+Standards-Version: 3.9.4
+Vcs-Svn: svn://svn.debian.org/python-apps/packages/tox/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/tox/trunk/
 
 Package: python-tox
 Architecture: all
 Section: python
-Priority: extra
 Depends: ${misc:Depends}, ${python:Depends}, ${sphinxdoc:Depends}
 Description: virtualenv-based automation of test activities
  Tox as is a generic virtualenv management and test command line tool

Modified: packages/tox/trunk/debian/copyright
===================================================================
--- packages/tox/trunk/debian/copyright	2012-11-10 16:48:04 UTC (rev 9227)
+++ packages/tox/trunk/debian/copyright	2012-11-11 01:10:32 UTC (rev 9228)
@@ -7,11 +7,22 @@
 Copyright: 2011 Holger Kregel <holger at merlinux.eu>
 License: GPL-2+
 
+Files: toxbootstrap.py
+License: Expat
+
+Files: tox/_verlib.py
+Copyright: Tarek Ziade and others
+License: Python
+
 Files: debian/*
 Copyright: 2012 Bradley Froehle <brad.froehle at gmail.com>
 License: GPL-2+
 
+Files: debian/watch files/manpage/*
+Copyright: 2012 Barry Warsaw <barry at python.org>
 License: GPL-2+
+
+License: GPL-2+
  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or

Modified: packages/tox/trunk/debian/manpage/tox-man.rst
===================================================================
--- packages/tox/trunk/debian/manpage/tox-man.rst	2012-11-10 16:48:04 UTC (rev 9227)
+++ packages/tox/trunk/debian/manpage/tox-man.rst	2012-11-11 01:10:32 UTC (rev 9228)
@@ -1,27 +1,53 @@
-.. tox documentation master file, created by
-   sphinx-quickstart on Fri Nov  9 19:00:14 2012.
-   You can adapt this file completely to your liking, but it should at least
-   contain the root `toctree` directive.
+:orphan:
 
-Welcome to tox's documentation!
-===============================
+tox manual page
+===============
 
-.. note::
+Synopsis
+--------
 
-    This manpage pretty much sucks.  Contributions are welcome.  In the
-    meantime, ``tox --help`` is what you want.
+**tox** [*options*]  [*args*]
 
-Contents:
 
-.. toctree::
-   :maxdepth: 2
+Description
+-----------
 
+:program:`tox` is a generic `virtualenv`_ management and test command line
+tool you can use for:
 
+ * checking that your package installs correctly with different Python
+   versions and interpreters
+ * running your tests in each of the environments, configuring your test tool
+   of choice
+ * acting as a front-end to Continuous Integration servers, greatly reducing
+   boilerplate and merging CI and shell-based testing
 
-Indices and tables
-==================
 
-* :ref:`genindex`
-* :ref:`modindex`
-* :ref:`search`
+Options
+-------
 
+-h, --help      Show the help message and exit.
+--version       Report version information to stdout.
+-v              Increase the verbosity of reporting output.
+--showconfig    Show configuration information.
+-c <path>       Use the specified path as the configuration file.
+-e <envlist>    Work against specified environments.  ``ALL`` selects all
+                available environments.
+--notest        Skip invoking test commands.
+--sdistonly     Only perform the sdist packaging activity.
+-i <url>        Set indexserver url (if ``url`` is of form ``name=url`` set
+                the url for the ``name`` indexserver, specifically)
+-r, --recreate  Force recreation of virtual environments.
+
+
+Author
+------
+
+Holger Krekel <holger at merlinux.eu>
+
+
+This manual page was written by Barry Warsaw <barry at python.org> for the Debian
+project.
+
+
+.. _`virtualenv`: http://pypi.python.org/pypi/virtualenv

Modified: packages/tox/trunk/debian/rules
===================================================================
--- packages/tox/trunk/debian/rules	2012-11-10 16:48:04 UTC (rev 9227)
+++ packages/tox/trunk/debian/rules	2012-11-11 01:10:32 UTC (rev 9228)
@@ -8,7 +8,8 @@
 	dh_installdocs build/sphinx/html
 
 override_dh_installman:
-	(cd debian/manpage; make man)
+	(cd debian/manpage; \
+	 sphinx-build -b man -d _build/doctrees .)
 	dh_installman debian/manpage/_build/man/tox.1
 
 override_dh_installchangelogs:
@@ -18,3 +19,4 @@
 	dh_auto_clean
 	rm -rf build
 	rm -rf *.egg-info
+	rm -rf debian/manpage/_build




More information about the Python-apps-commits mailing list