[Python-modules-commits] r27243 - in packages/sphinx-paramlinks/trunk (10 files)

piotr at users.alioth.debian.org piotr at users.alioth.debian.org
Wed Jan 15 22:35:36 UTC 2014


    Date: Wednesday, January 15, 2014 @ 22:35:35
  Author: piotr
Revision: 27243

[svn-inject] Applying Debian modifications (0.2.0-1) to trunk

Added:
  packages/sphinx-paramlinks/trunk/debian/
  packages/sphinx-paramlinks/trunk/debian/changelog
  packages/sphinx-paramlinks/trunk/debian/compat
  packages/sphinx-paramlinks/trunk/debian/control
  packages/sphinx-paramlinks/trunk/debian/copyright
  packages/sphinx-paramlinks/trunk/debian/rules
  packages/sphinx-paramlinks/trunk/debian/source/
  packages/sphinx-paramlinks/trunk/debian/source/format
  packages/sphinx-paramlinks/trunk/debian/source/options
  packages/sphinx-paramlinks/trunk/debian/watch


Property changes on: packages/sphinx-paramlinks/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/sphinx-paramlinks/trunk/debian/changelog
===================================================================
--- packages/sphinx-paramlinks/trunk/debian/changelog	                        (rev 0)
+++ packages/sphinx-paramlinks/trunk/debian/changelog	2014-01-15 22:35:35 UTC (rev 27243)
@@ -0,0 +1,5 @@
+sphinx-paramlinks (0.2.0-1) unstable; urgency=low
+
+  * Initial release (closes: #735508)
+
+ -- Piotr Ożarowski <piotr at debian.org>  Wed, 15 Jan 2014 23:26:36 +0100

Added: packages/sphinx-paramlinks/trunk/debian/compat
===================================================================
--- packages/sphinx-paramlinks/trunk/debian/compat	                        (rev 0)
+++ packages/sphinx-paramlinks/trunk/debian/compat	2014-01-15 22:35:35 UTC (rev 27243)
@@ -0,0 +1 @@
+9

Added: packages/sphinx-paramlinks/trunk/debian/control
===================================================================
--- packages/sphinx-paramlinks/trunk/debian/control	                        (rev 0)
+++ packages/sphinx-paramlinks/trunk/debian/control	2014-01-15 22:35:35 UTC (rev 27243)
@@ -0,0 +1,42 @@
+Source: sphinx-paramlinks
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Dmitry Shachnev <mitya57 at gmail.com>, Piotr Ożarowski <piotr at debian.org>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9), dh-python,
+ python-all,
+ python-setuptools,
+ python3-all,
+ python3-setuptools
+Standards-Version: 3.9.5
+Homepage: https://bitbucket.org/zzzeek/sphinx-paramlinks
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/sphinx-paramlinks/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/sphinx-paramlinks/trunk/
+
+Package: python-sphinx-paramlinks
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Enhances: python-sphinx
+Description: allows param links in Sphinx function/method descriptions to be linkable
+ Sphinx extension which allows :param: directives within Python documentation
+ to be linkable.
+ .
+ Features:
+ .
+  * :param: directives within Sphinx function/method descriptions will be given a
+  paragraph link so that they can be linked to externally.
+  * a new text role :paramref: is added, which works like :meth:, :func:, etc.
+
+Package: python3-sphinx-paramlinks
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Enhances: python3-sphinx
+Description: allows param links in Sphinx function/method descriptions to be linkable
+ Sphinx extension which allows :param: directives within Python documentation
+ to be linkable.
+ .
+ Features:
+ .
+  * :param: directives within Sphinx function/method descriptions will be given a
+  paragraph link so that they can be linked to externally.
+  * a new text role :paramref: is added, which works like :meth:, :func:, etc.

Added: packages/sphinx-paramlinks/trunk/debian/copyright
===================================================================
--- packages/sphinx-paramlinks/trunk/debian/copyright	                        (rev 0)
+++ packages/sphinx-paramlinks/trunk/debian/copyright	2014-01-15 22:35:35 UTC (rev 27243)
@@ -0,0 +1,41 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+
+Files: *
+Copyright: 2012-2014 Michael Bayer
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this
+ software and associated documentation files (the "Software"), to deal in the Software
+ without restriction, including without limitation the rights to use, copy, modify, merge,
+ publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
+ to whom the Software is furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all copies or
+ substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
+ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ DEALINGS IN THE SOFTWARE.
+
+Files: debian/*
+Copyright: 2014 Piotr Ożarowski <piotr at debian.org>
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.

Added: packages/sphinx-paramlinks/trunk/debian/rules
===================================================================
--- packages/sphinx-paramlinks/trunk/debian/rules	                        (rev 0)
+++ packages/sphinx-paramlinks/trunk/debian/rules	2014-01-15 22:35:35 UTC (rev 27243)
@@ -0,0 +1,5 @@
+#! /usr/bin/make -f
+
+export PYBUILD_NAME=sphinx-paramlinks
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild


Property changes on: packages/sphinx-paramlinks/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/sphinx-paramlinks/trunk/debian/source/format
===================================================================
--- packages/sphinx-paramlinks/trunk/debian/source/format	                        (rev 0)
+++ packages/sphinx-paramlinks/trunk/debian/source/format	2014-01-15 22:35:35 UTC (rev 27243)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/sphinx-paramlinks/trunk/debian/source/options
===================================================================
--- packages/sphinx-paramlinks/trunk/debian/source/options	                        (rev 0)
+++ packages/sphinx-paramlinks/trunk/debian/source/options	2014-01-15 22:35:35 UTC (rev 27243)
@@ -0,0 +1 @@
+extend-diff-ignore="\.egg-info"
\ No newline at end of file

Added: packages/sphinx-paramlinks/trunk/debian/watch
===================================================================
--- packages/sphinx-paramlinks/trunk/debian/watch	                        (rev 0)
+++ packages/sphinx-paramlinks/trunk/debian/watch	2014-01-15 22:35:35 UTC (rev 27243)
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(beta|rc|a|b|c)/~$1/ \
+http://pypi.python.org/packages/source/c/changelog/changelog-(.+)\.tar\.gz




More information about the Python-modules-commits mailing list