debian/0000755000000000000000000000000012142452235007166 5ustar debian/compat0000644000000000000000000000000211571274166010376 0ustar 7 debian/control0000644000000000000000000000260412136577224010604 0ustar Source: sphinxcontrib-spelling Maintainer: Debian Python Modules Team Uploaders: Daniele Tricoli Section: python Priority: optional Build-Depends: debhelper (>= 8.1), myspell-en-us, python-all, python-docutils, python-enchant, python-nose, python-setuptools (>= 0.6b3), python-sphinx (>= 1.0.7+dfsg), python-support Standards-Version: 3.9.4 Homepage: http://bitbucket.org/dhellmann/sphinxcontrib-spelling Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/sphinxcontrib-spelling/trunk/ Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/sphinxcontrib-spelling/trunk/ XS-Testsuite: autopkgtest Package: python-sphinxcontrib.spelling Architecture: all Depends: ${misc:Depends}, ${python:Depends}, python-docutils, python-enchant, python-sphinx Description: Sphinx "spelling" extension This package contains the spelling extension for the Sphinx documentation system. The extension enables a spelling checker which uses PyEnchant to produce a report showing misspelled words. . The extension also: - Supports multiple source languages using the standard enchant dictionaries. - Supports project-specific dictionaries for localized jargon and other terminology that may not appear in the global dictionaries. - Suggests alternatives to words not found in the dictionary, when possible. debian/copyright0000644000000000000000000000321712141770004011120 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: sphinxcontrib-spelling Upstream-Contact: Doug Hellmann Source: http://pypi.python.org/pypi/sphinxcontrib-spelling Files: * Copyright: 2010, Doug Hellmann License: BSD-2-clause Files: debian/* Copyright: 2011-2013, Daniele Tricoli License: BSD-2-clause License: BSD-2-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. 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. debian/watch0000644000000000000000000000015711634407523010227 0ustar version=3 http://pypi.python.org/packages/source/s/sphinxcontrib-spelling/sphinxcontrib-spelling-(.*)\.tar\.gz debian/docs0000644000000000000000000000001111571301341010025 0ustar README debian/changelog0000644000000000000000000000210512142452205011033 0ustar sphinxcontrib-spelling (1.4-1) unstable; urgency=low * New upstream release * Added autopkgtests * debian/control - Fixed lintian vcs-field-not-canonical - Updated Homepage field - Bumped Standards-Version to 3.9.4 - Bumped debhelper dependency to 8.1 for build-{arch,indep} support * debian/copyright - Updated copyright years - Updated Format URL to latest version - Properly formatting License field: see #700970 for details * debian/rules - Removed work-around for #645125 since it's fixed -- Daniele Tricoli Tue, 07 May 2013 22:45:05 +0200 sphinxcontrib-spelling (1.3-1) unstable; urgency=low * New upstream release * debian/clean - Added to clean .egg-info directory * debian/copyright - Updated copyright years * debian/rules - Added work-around for #645125 -- Daniele Tricoli Tue, 31 Jan 2012 23:43:05 +0100 sphinxcontrib-spelling (1.2-1) unstable; urgency=low * Initial release (Closes: #628649) -- Daniele Tricoli Fri, 16 Sep 2011 15:14:14 +0200 debian/clean0000644000000000000000000000004211711651407010172 0ustar sphinxcontrib_spelling.egg-info/* debian/source/0000755000000000000000000000000012142452235010466 5ustar debian/source/format0000644000000000000000000000001411571274166011706 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000101012127413520010233 0ustar #!/usr/bin/make -f export PYTHONWARNINGS=d %: dh $@ override_dh_auto_install: dh_auto_install # python-support creates __init__.py in postinst so .pth file that # contains some magic to make namespace packages work even though # there's no __init__.py can be removed. find debian/python-sphinxcontrib.spelling -type f -name "*.pth" -delete override_dh_auto_test: ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),) set -e; \ for python in $(shell pyversions -r); do \ $$python /usr/bin/nosetests; \ done endif debian/tests/0000755000000000000000000000000012142452235010330 5ustar debian/tests/control0000644000000000000000000000012312136605207011731 0ustar Tests: unittests Depends: @, myspell-en-us, python-all, python-nose, python-sphinx debian/tests/unittests0000755000000000000000000000033212136605340012316 0ustar #!/bin/sh set -efu export PYTHONWARNINGS=d python_all="$(pyversions -rv 2>/dev/null)" cp -r test "$ADTTMP/" cd "$ADTTMP" for py in $python_all; do echo "=== python$py ===" nosetests-$py --verbose 2>&1 done