[Python-modules-commits] r16573 - in packages/python-tidylib/trunk (13 files)
janos-guest at users.alioth.debian.org
janos-guest at users.alioth.debian.org
Sat Apr 16 16:38:18 UTC 2011
Date: Saturday, April 16, 2011 @ 16:38:10
Author: janos-guest
Revision: 16573
[svn-inject] Applying Debian modifications (0.2.1-1) to trunk
Added:
packages/python-tidylib/trunk/debian/
packages/python-tidylib/trunk/debian/changelog
packages/python-tidylib/trunk/debian/compat
packages/python-tidylib/trunk/debian/control
packages/python-tidylib/trunk/debian/copyright
packages/python-tidylib/trunk/debian/doc-base
packages/python-tidylib/trunk/debian/docs
packages/python-tidylib/trunk/debian/links
packages/python-tidylib/trunk/debian/pyversions
packages/python-tidylib/trunk/debian/rules
packages/python-tidylib/trunk/debian/source/
packages/python-tidylib/trunk/debian/source/format
packages/python-tidylib/trunk/debian/watch
Property changes on: packages/python-tidylib/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/python-tidylib/trunk/debian/changelog
===================================================================
--- packages/python-tidylib/trunk/debian/changelog (rev 0)
+++ packages/python-tidylib/trunk/debian/changelog 2011-04-16 16:38:10 UTC (rev 16573)
@@ -0,0 +1,5 @@
+python-tidylib (0.2.1-1) unstable; urgency=low
+
+ * Initial release. (Closes: #623016)
+
+ -- Janos Guljas <janos at resenje.org> Sat, 16 Apr 2011 17:44:16 +0200
Added: packages/python-tidylib/trunk/debian/compat
===================================================================
--- packages/python-tidylib/trunk/debian/compat (rev 0)
+++ packages/python-tidylib/trunk/debian/compat 2011-04-16 16:38:10 UTC (rev 16573)
@@ -0,0 +1 @@
+7
Added: packages/python-tidylib/trunk/debian/control
===================================================================
--- packages/python-tidylib/trunk/debian/control (rev 0)
+++ packages/python-tidylib/trunk/debian/control 2011-04-16 16:38:10 UTC (rev 16573)
@@ -0,0 +1,27 @@
+Source: python-tidylib
+Section: python
+Priority: optional
+Maintainer: Janos Guljas <janos at resenje.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.5), python-setuptools
+Standards-Version: 3.9.2
+Homepage: http://countergram.com/open-source/pytidylib/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-tidylib/trunk
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-tidylib/trunk/
+
+Package: python-tidylib
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, libtidy-0.99-0
+Provides: ${python:Provides}
+Description: Python wrapper for HTML Tidy (tidylib)
+ PyTidyLib is a Python package that wraps the HTML Tidy library. This allows
+ you, from Python code, to âfixâ invalid (X)HTML markup. Some of the libraryâs
+ many capabilities include:
+ .
+ * Clean up unclosed tags and unescaped characters such as ampersands
+ * Output HTML 4 or XHTML, strict or transitional, and add missing doctypes
+ * Convert named entities to numeric entities, which can then be used in XML
+ documents without an HTML doctype.
+ * Clean up HTML from programs such as Word (to an extent)
+ * Indent the output, including proper (i.e. no) indenting for pre elements,
+ which some (X)HTML indenting code overlooks.
Added: packages/python-tidylib/trunk/debian/copyright
===================================================================
--- packages/python-tidylib/trunk/debian/copyright (rev 0)
+++ packages/python-tidylib/trunk/debian/copyright 2011-04-16 16:38:10 UTC (rev 16573)
@@ -0,0 +1,49 @@
+Format: http://dep.debian.net/deps/dep5/
+Upstream-Name: PyTidyLib
+Upstream-Contact: Jason Stitt <js at jasonstitt.com>
+Source: http://github.com/countergram/pytidylib/
+
+Files: *
+Copyright: 2009 Jason Stitt
+License: MIT/X11 (BSD like)
+ 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: 2011 Janos Guljas <janos at resenje.org>
+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 (at your option) any later
+ version.
+ .
+ This program 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 General Public License for more
+ details.
+ .
+ You should have received a copy of the GNU General Public
+ License along with this package; 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 General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.
Added: packages/python-tidylib/trunk/debian/doc-base
===================================================================
--- packages/python-tidylib/trunk/debian/doc-base (rev 0)
+++ packages/python-tidylib/trunk/debian/doc-base 2011-04-16 16:38:10 UTC (rev 16573)
@@ -0,0 +1,11 @@
+Document: python-tidylib
+Title: PyTidyLib Documentation
+Author: Jason Stitt
+Abstract: PyTidyLib is a Python package that wraps the HTML Tidy library.
+ This allows you, from Python code, to âfixâ invalid (X)HTML markup. Some of
+ the libraryâs many capabilities.
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-tidylib/html/index.html
+Files: /usr/share/doc/python-tidylib/html/*.html
Added: packages/python-tidylib/trunk/debian/docs
===================================================================
--- packages/python-tidylib/trunk/debian/docs (rev 0)
+++ packages/python-tidylib/trunk/debian/docs 2011-04-16 16:38:10 UTC (rev 16573)
@@ -0,0 +1,2 @@
+README
+debian/html
Added: packages/python-tidylib/trunk/debian/links
===================================================================
--- packages/python-tidylib/trunk/debian/links (rev 0)
+++ packages/python-tidylib/trunk/debian/links 2011-04-16 16:38:10 UTC (rev 16573)
@@ -0,0 +1 @@
+/usr/share/javascript/jquery/jquery.js usr/share/doc/python-tidylib/html/_static/jquery.js
Added: packages/python-tidylib/trunk/debian/pyversions
===================================================================
--- packages/python-tidylib/trunk/debian/pyversions (rev 0)
+++ packages/python-tidylib/trunk/debian/pyversions 2011-04-16 16:38:10 UTC (rev 16573)
@@ -0,0 +1 @@
+2.5-
Added: packages/python-tidylib/trunk/debian/rules
===================================================================
--- packages/python-tidylib/trunk/debian/rules (rev 0)
+++ packages/python-tidylib/trunk/debian/rules 2011-04-16 16:38:10 UTC (rev 16573)
@@ -0,0 +1,17 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --with python2
+
+override_dh_auto_build:
+ dh_auto_build
+ cp -a docs/html debian
+ rm -rf debian/html/_sources/
+ rm -f debian/python-pymongo-doc/usr/share/doc/python-tidylib/html/_static/jquery.js
+ rm -rf debian/python-pymongo-doc/usr/share/doc/python-tidylib/html/.doctrees
+
+override_dh_auto_clean:
+ rm -rf debian/html
+ find docs -name "*.pyc" -exec rm -rf {} +
+ dh_auto_clean
+
Property changes on: packages/python-tidylib/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/python-tidylib/trunk/debian/source/format
===================================================================
--- packages/python-tidylib/trunk/debian/source/format (rev 0)
+++ packages/python-tidylib/trunk/debian/source/format 2011-04-16 16:38:10 UTC (rev 16573)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/python-tidylib/trunk/debian/watch
===================================================================
--- packages/python-tidylib/trunk/debian/watch (rev 0)
+++ packages/python-tidylib/trunk/debian/watch 2011-04-16 16:38:10 UTC (rev 16573)
@@ -0,0 +1,2 @@
+version=3
+http://githubredir.debian.net/github/countergram/pytidylib /github/countergram/pytidylib/(.+).tar.gz
More information about the Python-modules-commits
mailing list