[Python-modules-commits] r30243 - in packages/smartypants/trunk (10 files)

asb at users.alioth.debian.org asb at users.alioth.debian.org
Mon Aug 25 20:34:50 UTC 2014


    Date: Monday, August 25, 2014 @ 20:34:49
  Author: asb
Revision: 30243

[svn-inject] Applying Debian modifications (1.6.0.3-2) to trunk

Added:
  packages/smartypants/trunk/debian/
  packages/smartypants/trunk/debian/changelog
  packages/smartypants/trunk/debian/compat
  packages/smartypants/trunk/debian/control
  packages/smartypants/trunk/debian/copyright
  packages/smartypants/trunk/debian/docs
  packages/smartypants/trunk/debian/rules
  packages/smartypants/trunk/debian/source/
  packages/smartypants/trunk/debian/source/format
  packages/smartypants/trunk/debian/watch


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

Added: packages/smartypants/trunk/debian/changelog
===================================================================
--- packages/smartypants/trunk/debian/changelog	                        (rev 0)
+++ packages/smartypants/trunk/debian/changelog	2014-08-25 20:34:49 UTC (rev 30243)
@@ -0,0 +1,12 @@
+smartypants (1.6.0.3-2) unstable; urgency=low
+
+  * Change binary name to python-smartypants
+  * Fix architecture to all
+
+ -- Julien Danjou <acid at debian.org>  Fri, 09 Dec 2011 15:38:09 +0100
+
+smartypants (1.6.0.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #649736)
+
+ -- Julien Danjou <acid at debian.org>  Thu, 24 Nov 2011 11:46:49 +0100

Added: packages/smartypants/trunk/debian/compat
===================================================================
--- packages/smartypants/trunk/debian/compat	                        (rev 0)
+++ packages/smartypants/trunk/debian/compat	2014-08-25 20:34:49 UTC (rev 30243)
@@ -0,0 +1 @@
+8

Added: packages/smartypants/trunk/debian/control
===================================================================
--- packages/smartypants/trunk/debian/control	                        (rev 0)
+++ packages/smartypants/trunk/debian/control	2014-08-25 20:34:49 UTC (rev 30243)
@@ -0,0 +1,30 @@
+Source: smartypants
+Section: python
+Priority: extra
+Maintainer: Julien Danjou <acid at debian.org>
+Build-Depends: debhelper (>= 8.0.0), python
+Standards-Version: 3.9.2
+Homepage: http://web.chad.org/projects/smartypants.py/
+
+Package: python-smartypants
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+Conflicts: smartypants
+Replaces: smartypants
+Description: smart-quotes plugin for pyblosxom
+ It can perform the following transformations:
+ .
+  * Straight quotes ( " and ' ) into "curly" quote HTML entities
+  * Backticks-style quotes (``like this'') into "curly" quote HTML entities
+  * Dashes (-- and ---) into en- and em-dash entities
+  * Three consecutive dots (... or . . .) into an ellipsis entity
+ .
+ This means you can write, edit, and save your posts using plain old ASCII
+ straight quotes, plain dashes, and plain dots, but your published posts
+ (and final HTML output) will appear with smart quotes, em-dashes, and
+ proper ellipses.
+ .
+ SmartyPants does not modify characters within <pre>, <code>, <kbd>, <math>
+ or <script> tag blocks. Typically, these tags are used to display text
+ where smart quotes and other "smart punctuation" would not be appropriate,
+ such as source code or example markup.

Added: packages/smartypants/trunk/debian/copyright
===================================================================
--- packages/smartypants/trunk/debian/copyright	                        (rev 0)
+++ packages/smartypants/trunk/debian/copyright	2014-08-25 20:34:49 UTC (rev 30243)
@@ -0,0 +1,36 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: smartypants
+Source: <http://web.chad.org/projects/smartypants.py/>
+
+Files: *
+Copyright: 2004, 2007 Chad Miller
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2011 Julien Danjou <acid at debian.org>
+License: BSD-3-Clause
+
+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:
+ 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.
+ 3. Neither the name of the University 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 REGENTS 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/smartypants/trunk/debian/docs
===================================================================
--- packages/smartypants/trunk/debian/docs	                        (rev 0)
+++ packages/smartypants/trunk/debian/docs	2014-08-25 20:34:49 UTC (rev 30243)
@@ -0,0 +1 @@
+README

Added: packages/smartypants/trunk/debian/rules
===================================================================
--- packages/smartypants/trunk/debian/rules	                        (rev 0)
+++ packages/smartypants/trunk/debian/rules	2014-08-25 20:34:49 UTC (rev 30243)
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@ --with python2


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

Added: packages/smartypants/trunk/debian/source/format
===================================================================
--- packages/smartypants/trunk/debian/source/format	                        (rev 0)
+++ packages/smartypants/trunk/debian/source/format	2014-08-25 20:34:49 UTC (rev 30243)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/smartypants/trunk/debian/watch
===================================================================
--- packages/smartypants/trunk/debian/watch	                        (rev 0)
+++ packages/smartypants/trunk/debian/watch	2014-08-25 20:34:49 UTC (rev 30243)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/s/smartypants/smartypants-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list