debian/0000755000000000000000000000000012246404517007173 5ustar debian/compat0000644000000000000000000000000212246404501010362 0ustar 9 debian/rules0000755000000000000000000000112012246404501010236 0ustar #!/usr/bin/make -f # -*- mode: makefile; coding: utf-8 -*- PYTHON3=$(shell py3versions -r) %: dh $@ --with python3 override_dh_auto_clean: rm -rf build markups/__pycache__ tests/__pycache__ override_dh_auto_build: set -ex; for python in $(PYTHON3); do \ $$python setup.py build; \ done ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) override_dh_auto_test: set -ex; for python in $(PYTHON3); do \ $$python setup.py test; \ done endif override_dh_auto_install: set -ex; for python in $(PYTHON3); do \ $$python setup.py install --install-layout=deb --root=debian/tmp; \ done debian/python3-markups.examples0000644000000000000000000000001312246404501014002 0ustar examples/* debian/watch0000644000000000000000000000012212246404501010210 0ustar version=3 https://pypi.python.org/packages/source/M/Markups/Markups-(.*)\.tar\.gz debian/changelog0000644000000000000000000000110112246404501011027 0ustar pymarkups (0.4-1) unstable; urgency=low * New upstream release. * debian/watch: use HTTPS, and correctly escape dots. -- Dmitry Shachnev Sat, 30 Nov 2013 13:27:43 +0400 pymarkups (0.3-1) unstable; urgency=low [ Jakub Wilk ] * Use canonical URIs for Vcs-* fields. [ Dmitry Shachnev ] * New upstream release. -- Dmitry Shachnev Thu, 25 Jul 2013 14:30:31 +0400 pymarkups (0.2.4-1) unstable; urgency=low * Initial release (Closes: #687824). -- Dmitry Shachnev Sun, 25 Nov 2012 18:13:08 +0400 debian/copyright0000644000000000000000000000321512246404501011120 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: python-markups Source: https://launchpad.net/python-markups Files: * Copyright: Copyright 2012 Dmitry Shachnev License: BSD-3-clause 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. . * Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . 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 REGENTS 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/python3-markups.install0000644000000000000000000000002312246404501013633 0ustar usr/lib/python3*/* debian/source/0000755000000000000000000000000012246404501010464 5ustar debian/source/format0000644000000000000000000000001412246404501011672 0ustar 3.0 (quilt) debian/control0000644000000000000000000000223012246404501010564 0ustar Source: pymarkups Section: python Priority: optional Maintainer: Dmitry Shachnev Uploaders: Debian Python Modules Team Build-Depends: debhelper (>= 9), python3-all (>= 3.1.2-7~), python3-docutils, python3-markdown Standards-Version: 3.9.4 Homepage: https://launchpad.net/python-markups Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/pymarkups/trunk/ Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/pymarkups/trunk/ X-Python3-Version: >= 3.1 Package: python3-markups Architecture: all Depends: ${python3:Depends}, ${misc:Depends} Recommends: python3-docutils, python3-markdown, python3-pygments Suggests: libjs-mathjax Description: Wrapper around various text markups, implemented in Python 3 This module provides a wrapper around the various text markup languages, such as Markdown and reStructuredText (these two are supported by default). . It is also possible to implement custom markups (inherited from AbstractMarkup class). . It also comes with a "web" module that allows one to generate web pages using from HTML template file and a set of files with content.