[Python-modules-commits] r31133 - in packages/pythondialog/trunk (16 files)

mithrandi at users.alioth.debian.org mithrandi at users.alioth.debian.org
Sun Oct 19 10:11:27 UTC 2014


    Date: Sunday, October 19, 2014 @ 10:11:26
  Author: mithrandi
Revision: 31133

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

Added:
  packages/pythondialog/trunk/debian/
  packages/pythondialog/trunk/debian/changelog
  packages/pythondialog/trunk/debian/compat
  packages/pythondialog/trunk/debian/control
  packages/pythondialog/trunk/debian/copyright
  packages/pythondialog/trunk/debian/patches/
  packages/pythondialog/trunk/debian/patches/add-glossary-label
  packages/pythondialog/trunk/debian/patches/series
  packages/pythondialog/trunk/debian/patches/use-local-python3-doc-for-cross-references
  packages/pythondialog/trunk/debian/python3-dialog.doc-base
  packages/pythondialog/trunk/debian/python3-dialog.docs
  packages/pythondialog/trunk/debian/python3-dialog.examples
  packages/pythondialog/trunk/debian/rules
  packages/pythondialog/trunk/debian/source/
  packages/pythondialog/trunk/debian/source/format
  packages/pythondialog/trunk/debian/watch


Property changes on: packages/pythondialog/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/pythondialog/trunk/debian/changelog
===================================================================
--- packages/pythondialog/trunk/debian/changelog	                        (rev 0)
+++ packages/pythondialog/trunk/debian/changelog	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1,43 @@
+pythondialog (3.2.0-1) unstable; urgency=medium
+
+  [ Florent Rougon ]
+  * New upstream release.
+
+  * Add Build-Depends on python3-docutils,
+    python3-sphinx (>= 1.0.7+dfsg-1~) and python3-pygments because this
+    release brings a new Sphinx-based documentation.
+
+  * add-glossary-label: new patch to add a "glossary" label right before
+    the Glossary (maybe upstream bug, but upstream-installed Sphinx didn't
+    complain about the missing label!).
+
+  * Build-Depend on python3-doc so that intersphinx can use
+    /usr/share/doc/python3/html/objects.inv (since downloading is
+    prohibited during package build).
+  * use-local-python3-doc-for-cross-references: new patch that:
+      - uses /usr/share/doc/python3/html/objects.inv as the inventory file
+        for Python cross-references;
+      - resolves these references locally (with a
+        file:///usr/share/doc/python3/html prefix)
+  * Add a Suggests: python3-doc for these references to the local Python
+    documentation.
+
+  * Add python3-dialog.doc-base.
+
+  [ Tristan Seligmann ]
+  * Adopt package on behalf of DPMT, and inject into DPMT SVN.
+
+ -- Florent Rougon <f.rougon at free.fr>  Fri, 17 Oct 2014 11:52:15 +0200
+
+pythondialog (3.1.0-1) unstable; urgency=medium
+
+  * New upstream release.
+    - Replace packaging entirely.
+
+ -- Florent Rougon <f.rougon at free.fr>  Sat, 11 Oct 2014 17:27:13 +0200
+
+pythondialog (2.7-1) unstable; urgency=low
+
+  * Initial release (Closes: #402453).
+
+ -- Adam Cécile (Le_Vert) <gandalf at le-vert.net>  Sun, 10 Dec 2006 16:30:10 +0100

Added: packages/pythondialog/trunk/debian/compat
===================================================================
--- packages/pythondialog/trunk/debian/compat	                        (rev 0)
+++ packages/pythondialog/trunk/debian/compat	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1 @@
+9

Added: packages/pythondialog/trunk/debian/control
===================================================================
--- packages/pythondialog/trunk/debian/control	                        (rev 0)
+++ packages/pythondialog/trunk/debian/control	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1,46 @@
+Source: pythondialog
+Maintainer: Florent Rougon <f.rougon at free.fr>
+Homepage: http://pythondialog.sourceforge.net/
+Section: python
+X-Python3-Version: >= 3.0
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python3-all,
+               python3-doc,
+               python3-docutils,
+               python3-sphinx (>= 1.0.7+dfsg-1~),
+               python3-pygments
+Standards-Version: 3.9.6
+
+Package: python3-dialog
+Architecture: all
+Depends: dialog, ${misc:Depends}, ${python3:Depends}, ${sphinxdoc:Depends}
+Suggests: python3-doc
+Description: Python module for making simple terminal-based user interfaces
+ pythondialog is a Python wrapper for the dialog utility originally
+ written by Savio Lam, and later rewritten by Thomas E. Dickey. Its
+ purpose is to provide an easy to use, pythonic and comprehensive Python
+ interface to dialog. This allows one to make simple text-mode user
+ interfaces on Unix-like systems.
+ .
+ pythondialog provides dialog boxes (widgets) of many different types.
+ Among these, one can find infobox, msgbox, yesno, menu, checklist,
+ radiolist, fselect (for selecting a file), rangebox, buildlist,
+ treeview, calendar. These widgets, and those not listed here, allow one
+ to build nice interfaces quickly and easily. However, it is not possible
+ to create new widgets without modifying dialog itself.
+ .
+ For most widgets, the following settings can be chosen:
+  * width, height and other parameters where applicable;
+  * two user-defined buttons, referred to as "Help" and "Extra", may be
+    added and their labels freely chosen.
+ Additionally, a color theme may be defined for all widgets via a
+ configuration file.
+ .
+ pythondialog has good Unicode support. Precisely, this support should be
+ as good as allowed by the combination of the Python interpreter, dialog,
+ the terminal and the locale settings in use.
+ .
+ This package is written for Python 3. There exists a Python 2 backport,
+ but the Python 3 package is preferred and more likely to be up-to-date.

Added: packages/pythondialog/trunk/debian/copyright
===================================================================
--- packages/pythondialog/trunk/debian/copyright	                        (rev 0)
+++ packages/pythondialog/trunk/debian/copyright	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1,82 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pythondialog
+Upstream-Contact: Florent Rougon <f.rougon at free.fr>
+Source: http://pythondialog.sourceforge.net/
+License: LGPL-2.1+
+
+Files: *
+Copyright: 2002-2014  Florent Rougon
+License: LGPL-2.1+
+
+Files: dialog.py
+Copyright: 2002, 2003, 2004, 2009, 2010, 2013, 2014  Florent Rougon
+           2004  Peter Ã…strand
+           2000  Robb Shecter, Sultanbek Tezadov
+License: LGPL-2.1+
+
+Files: examples/*
+Copyright: 2002-2010, 2013, 2014  Florent Rougon
+           2000  Robb Shecter, Sultanbek Tezadov
+License: says-public-domain
+ This program is in the public domain.
+
+Files: doc/*
+Copyright: 2002-2014  Florent Rougon
+License: LGPL-2.1+
+
+Files: doc/widgets.rst
+Copyright: 2002-2014  Florent Rougon, Thomas Dickey
+License: LGPL-2.1+
+
+Files: doc/Makefile
+Copyright: 2007-2014 by the Sphinx team
+License: BSD-2-clause
+ 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.
+ .
+ .
+ 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.
+
+Files: debian/*
+Copyright: 2014  Florent Rougon
+License: LGPL-2.1+
+
+License: LGPL-2.1+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+ .
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ Lesser General Public License for more details.
+ .
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ MA  02110-1301 USA.
+ .
+ On Debian systems, the full text of the GNU Lesser General Public
+ License version 2.1 can be found in the file
+ `/usr/share/common-licenses/LGPL-2.1'.

Added: packages/pythondialog/trunk/debian/patches/add-glossary-label
===================================================================
--- packages/pythondialog/trunk/debian/patches/add-glossary-label	                        (rev 0)
+++ packages/pythondialog/trunk/debian/patches/add-glossary-label	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1,12 @@
+Description: Fix a possible upstream bug ("missing label")
+Author: Florent Rougon <f.rougon at free.fr>
+Last-Update: 2014-10-17
+
+--- python3-dialog-3.2.0.orig/doc/glossary.rst
++++ python3-dialog-3.2.0/doc/glossary.rst
+@@ -1,3 +1,5 @@
++.. _glossary:
++
+ Glossary
+ ========
+ 

Added: packages/pythondialog/trunk/debian/patches/series
===================================================================
--- packages/pythondialog/trunk/debian/patches/series	                        (rev 0)
+++ packages/pythondialog/trunk/debian/patches/series	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1,2 @@
+add-glossary-label
+use-local-python3-doc-for-cross-references

Added: packages/pythondialog/trunk/debian/patches/use-local-python3-doc-for-cross-references
===================================================================
--- packages/pythondialog/trunk/debian/patches/use-local-python3-doc-for-cross-references	                        (rev 0)
+++ packages/pythondialog/trunk/debian/patches/use-local-python3-doc-for-cross-references	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1,17 @@
+Description: Use local doc from python3-doc for cross references
+Author: Florent Rougon <f.rougon at free.fr>
+Forwarded: not-needed
+Last-Update: 2014-10-17
+
+--- a/doc/conf.py
++++ b/doc/conf.py
+@@ -35,7 +35,8 @@
+     'sphinx.ext.viewcode',
+ ]
+ 
+-intersphinx_mapping = {'python': ('http://docs.python.org/3', None)}
++intersphinx_mapping = {'python': ('file:///usr/share/doc/python3/html',
++                                  '/usr/share/doc/python3/html/objects.inv')}
+ 
+ # Add any paths that contain templates here, relative to this directory.
+ templates_path = ['_templates']

Added: packages/pythondialog/trunk/debian/python3-dialog.doc-base
===================================================================
--- packages/pythondialog/trunk/debian/python3-dialog.doc-base	                        (rev 0)
+++ packages/pythondialog/trunk/debian/python3-dialog.doc-base	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1,16 @@
+Document: pythondialog-manual
+Title: pythondialog Manual
+Author: Florent Rougon, Thomas Dickey
+Abstract: This manual documents pythondialog, a Python wrapper for the dialog
+ utility originally written by Savio Lam, and later rewritten by Thomas E.
+ Dickey. Its purpose is to provide an easy to use, pythonic and comprehensive
+ Python interface to dialog. This allows one to make simple text-mode user
+ interfaces on Unix-like systems.
+Section: Programming/Python
+
+Format: Text
+Files: /usr/share/doc/python3-dialog/README.rst.gz
+
+Format: HTML
+Index: /usr/share/doc/python3-dialog/html/index.html
+Files: /usr/share/doc/python3-dialog/html/*

Added: packages/pythondialog/trunk/debian/python3-dialog.docs
===================================================================
--- packages/pythondialog/trunk/debian/python3-dialog.docs	                        (rev 0)
+++ packages/pythondialog/trunk/debian/python3-dialog.docs	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1,4 @@
+AUTHORS
+README.rst
+TODO
+debian/doc-build/html

Added: packages/pythondialog/trunk/debian/python3-dialog.examples
===================================================================
--- packages/pythondialog/trunk/debian/python3-dialog.examples	                        (rev 0)
+++ packages/pythondialog/trunk/debian/python3-dialog.examples	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1 @@
+examples/*

Added: packages/pythondialog/trunk/debian/rules
===================================================================
--- packages/pythondialog/trunk/debian/rules	                        (rev 0)
+++ packages/pythondialog/trunk/debian/rules	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1,28 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=dialog
+
+PKG := python3-$(PYBUILD_NAME)
+PKGDIR := debian/$(PKG)
+PKGDOCDIR := $(PKGDIR)/usr/share/doc/$(PKG)
+
+%:
+	dh $@ --with python3,sphinxdoc --buildsystem=pybuild
+
+override_dh_clean:
+	dh_clean
+	rm -rf debian/doc-build
+
+override_dh_auto_build:
+	dh_auto_build
+        # Build the Sphinx-based documentation
+	PYTHONPATH=. http_proxy='127.0.0.1:9' \
+          sphinx-build -N -b html doc debian/doc-build/html
+
+override_dh_compress:
+	dh_compress -X.py
+
+override_dh_installexamples:
+	dh_installexamples
+	find $(PKGDOCDIR)/examples -type f -name '*.py' -exec sed -i -e \
+          '1s,^#! */usr/bin/env \(python3\)$$,#! /usr/bin/\1,' '{}' +


Property changes on: packages/pythondialog/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/pythondialog/trunk/debian/source/format
===================================================================
--- packages/pythondialog/trunk/debian/source/format	                        (rev 0)
+++ packages/pythondialog/trunk/debian/source/format	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/pythondialog/trunk/debian/watch
===================================================================
--- packages/pythondialog/trunk/debian/watch	                        (rev 0)
+++ packages/pythondialog/trunk/debian/watch	2014-10-19 10:11:26 UTC (rev 31133)
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|\.dev|a|b|c)/~$1/ \
+  http://pypi.python.org/packages/source/p/pythondialog/pythondialog-(.*).tar.bz2




More information about the Python-modules-commits mailing list