[Python-modules-commits] r30244 - in packages/smartypants/trunk/debian (4 files)
asb at users.alioth.debian.org
asb at users.alioth.debian.org
Mon Aug 25 20:51:55 UTC 2014
Date: Monday, August 25, 2014 @ 20:51:55
Author: asb
Revision: 30244
Check in 1.8.6-1
Modified:
packages/smartypants/trunk/debian/changelog
packages/smartypants/trunk/debian/control
packages/smartypants/trunk/debian/docs
packages/smartypants/trunk/debian/rules
Modified: packages/smartypants/trunk/debian/changelog
===================================================================
--- packages/smartypants/trunk/debian/changelog 2014-08-25 20:34:49 UTC (rev 30243)
+++ packages/smartypants/trunk/debian/changelog 2014-08-25 20:51:55 UTC (rev 30244)
@@ -1,3 +1,12 @@
+smartypants (1.8.6-1) unstable; urgency=medium
+
+ * Move package to DPMT and add myself as an uploader.
+ * New upstream release (Closes: #753949).
+ * Build Python3 package.
+ * Bump Standards-Version to 3.9.5.
+
+ -- Andrew Starr-Bochicchio <asb at debian.org> Mon, 25 Aug 2014 13:43:26 -0700
+
smartypants (1.6.0.3-2) unstable; urgency=low
* Change binary name to python-smartypants
Modified: packages/smartypants/trunk/debian/control
===================================================================
--- packages/smartypants/trunk/debian/control 2014-08-25 20:34:49 UTC (rev 30243)
+++ packages/smartypants/trunk/debian/control 2014-08-25 20:51:55 UTC (rev 30244)
@@ -1,14 +1,25 @@
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
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Julien Danjou <acid at debian.org>,
+ Andrew Starr-Bochicchio <asb at debian.org>
+Build-Depends: debhelper (>= 8.0.0),
+ dh-python,
+ python-all (>= 2.6.6-3~),
+ python-setuptools,
+ python3-all,
+ python3-setuptools
+Standards-Version: 3.9.5
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
Homepage: http://web.chad.org/projects/smartypants.py/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/smartypants/trunk/
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/smartypants/trunk/
Package: python-smartypants
Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
Conflicts: smartypants
Replaces: smartypants
Description: smart-quotes plugin for pyblosxom
@@ -28,3 +39,26 @@
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.
+
+Package: python3-smartypants
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
+Description: smart-quotes plugin for pyblosxom (Python 3 version)
+ 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.
+ .
+ This is the Python 3 version of the package.
Modified: packages/smartypants/trunk/debian/docs
===================================================================
--- packages/smartypants/trunk/debian/docs 2014-08-25 20:34:49 UTC (rev 30243)
+++ packages/smartypants/trunk/debian/docs 2014-08-25 20:51:55 UTC (rev 30244)
@@ -1 +1 @@
-README
+README.rst
Modified: packages/smartypants/trunk/debian/rules
===================================================================
--- packages/smartypants/trunk/debian/rules 2014-08-25 20:34:49 UTC (rev 30243)
+++ packages/smartypants/trunk/debian/rules 2014-08-25 20:51:55 UTC (rev 30244)
@@ -9,5 +9,12 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
+export PYBUILD_NAME=smartypants
+
%:
- dh $@ --with python2
+ dh $@ --with python2,python3 --buildsystem=pybuild
+
+# Only install script w/ Python 2 package for the time being.
+override_dh_auto_install:
+ dh_auto_install
+ rm -rf debian/python3-smartypants/usr/bin
More information about the Python-modules-commits
mailing list