[Python-modules-commits] r22679 - in packages (12 files)

mitya57-guest at users.alioth.debian.org mitya57-guest at users.alioth.debian.org
Sun Sep 16 11:42:13 UTC 2012


    Date: Sunday, September 16, 2012 @ 11:42:12
  Author: mitya57-guest
Revision: 22679

Adding pymarkups package (needed for ReText 4.0)

Added:
  packages/pymarkups/
  packages/pymarkups/trunk/
  packages/pymarkups/trunk/debian/
  packages/pymarkups/trunk/debian/changelog
  packages/pymarkups/trunk/debian/compat
  packages/pymarkups/trunk/debian/control
  packages/pymarkups/trunk/debian/copyright
  packages/pymarkups/trunk/debian/python3-markups.install
  packages/pymarkups/trunk/debian/rules
  packages/pymarkups/trunk/debian/source/
  packages/pymarkups/trunk/debian/source/format
  packages/pymarkups/trunk/debian/watch

Added: packages/pymarkups/trunk/debian/changelog
===================================================================
--- packages/pymarkups/trunk/debian/changelog	                        (rev 0)
+++ packages/pymarkups/trunk/debian/changelog	2012-09-16 11:42:12 UTC (rev 22679)
@@ -0,0 +1,5 @@
+pymarkups (0.2.1-1) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #687824)
+
+ -- Dmitry Shachnev <mitya57 at gmail.com>  Sat, 15 Sep 2012 11:28:29 +0400

Added: packages/pymarkups/trunk/debian/compat
===================================================================
--- packages/pymarkups/trunk/debian/compat	                        (rev 0)
+++ packages/pymarkups/trunk/debian/compat	2012-09-16 11:42:12 UTC (rev 22679)
@@ -0,0 +1 @@
+9

Added: packages/pymarkups/trunk/debian/control
===================================================================
--- packages/pymarkups/trunk/debian/control	                        (rev 0)
+++ packages/pymarkups/trunk/debian/control	2012-09-16 11:42:12 UTC (rev 22679)
@@ -0,0 +1,26 @@
+Source: pymarkups
+Section: python
+Priority: optional
+Maintainer: Dmitry Shachnev <mitya57 at gmail.com>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 9), python3-all (>= 3.1.2-7~), python3-docutils,
+ python3-markdown
+Standards-Version: 3.9.3
+Homepage: https://launchpad.net/python-markups
+Vcs-Svn: svn://svn.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
+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.

Added: packages/pymarkups/trunk/debian/copyright
===================================================================
--- packages/pymarkups/trunk/debian/copyright	                        (rev 0)
+++ packages/pymarkups/trunk/debian/copyright	2012-09-16 11:42:12 UTC (rev 22679)
@@ -0,0 +1,31 @@
+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 <mitya57 at gmail.com>
+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.

Added: packages/pymarkups/trunk/debian/python3-markups.install
===================================================================
--- packages/pymarkups/trunk/debian/python3-markups.install	                        (rev 0)
+++ packages/pymarkups/trunk/debian/python3-markups.install	2012-09-16 11:42:12 UTC (rev 22679)
@@ -0,0 +1 @@
+usr/lib/python3*/*

Added: packages/pymarkups/trunk/debian/rules
===================================================================
--- packages/pymarkups/trunk/debian/rules	                        (rev 0)
+++ packages/pymarkups/trunk/debian/rules	2012-09-16 11:42:12 UTC (rev 22679)
@@ -0,0 +1,25 @@
+#!/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
+
+override_dh_auto_test:
+	set -ex; for python in $(PYTHON3); do \
+		$$python setup.py check; \
+	done
+
+override_dh_auto_install:
+	set -ex; for python in $(PYTHON3); do \
+		$$python setup.py install --install-layout=deb --root=debian/tmp; \
+	done


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

Added: packages/pymarkups/trunk/debian/source/format
===================================================================
--- packages/pymarkups/trunk/debian/source/format	                        (rev 0)
+++ packages/pymarkups/trunk/debian/source/format	2012-09-16 11:42:12 UTC (rev 22679)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/pymarkups/trunk/debian/watch
===================================================================
--- packages/pymarkups/trunk/debian/watch	                        (rev 0)
+++ packages/pymarkups/trunk/debian/watch	2012-09-16 11:42:12 UTC (rev 22679)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/M/Markups/Markups-(.*).tar.gz




More information about the Python-modules-commits mailing list