Codebase list python-pandocfilters / 0be3678
Prepare Debian files for new release - don't require root for build - adapt to changed files - add patch to show the correct Python interpreter in examples - bump standards-version (no changes) - drop python2 left-over Sebastian Humenda 1 year, 4 months ago
9 changed file(s) with 185 addition(s) and 11 deletion(s). Raw diff Collapse all Expand all
0 python-pandocfilters (1.4.3-2) UNRELEASED; urgency=medium
0 python-pandocfilters (1.5.0-1) unstable; urgency=medium
11
2 [ Sebastian Humenda ]
3 * New upstream version
4 * Update standards-version (no changes required)
5 * Debian'ise examples/: fix file permissions, fix interpreter line
6 * Remove python2 left-overs
7
8 [ Debian Janitor ]
29 * Bump debhelper from old 12 to 13.
310 * Update standards version to 4.5.1, no changes needed.
411 * Remove constraints unnecessary since buster:
714 * Remove constraints unnecessary since buster (oldstable):
815 + Build-Depends: Drop versioned constraint on python3-all.
916
10 -- Debian Janitor <janitor@jelmer.uk> Wed, 25 Aug 2021 22:26:40 -0000
17 -- Sebastian Humenda <shumenda@gmx.de> Tue, 23 Nov 2021 20:37:18 +0200
1118
1219 python-pandocfilters (1.4.3-1) unstable; urgency=medium
1320
22 Priority: optional
33 Maintainer: Debian Python Team <team+python@tracker.debian.org>
44 Uploaders: Sebastian Humenda <shumenda@gmx.de>
5 Build-Depends: debhelper-compat (= 13), python3-all, dh-python
5 Build-Depends: debhelper-compat (= 13), python3-all, dh-python,
6 python3-setuptools
67 Standards-Version: 4.6.1
78 Homepage: https://pypi.python.org/pypi/pandocfilters/
9 Rules-Requires-Root: no
810 Vcs-Git: https://salsa.debian.org/python-team/packages/python-pandocfilters.git
911 Vcs-Browser: https://salsa.debian.org/python-team/packages/python-pandocfilters
10
1112
1213 Package: python3-pandocfilters
1314 Architecture: all
2021 Pandoc AST from stdin, transform it in some way, and write it to stdout. It
2122 allows therefore to alter the processing of Pandoc's supported input formats,
2223 for instance one can add new syntax elements to markdown, etc.
23 .
24 This package provides Python3 bindings.
0 Description: Adjust the Python interpreter for all examples
1 To ease the live of users, the interpreter line of all python scripts has ben
2 adapted to match the Debian interpreter name (Python3).
3 Author: Sebastian Humenda <shumenda@gmx.de>
4 Last-Update: 2021-11-23
5
6 Index: pandocfilters/examples/abc.py
7 ===================================================================
8 --- pandocfilters.orig/examples/abc.py
9 +++ pandocfilters/examples/abc.py
10 @@ -1,4 +1,4 @@
11 -#!/usr/bin/env python
12 +#!/usr/bin/env python3
13
14 """
15 Pandoc filter to process code blocks with class "abc" containing
16 Index: pandocfilters/examples/blockdiag.py
17 ===================================================================
18 --- pandocfilters.orig/examples/blockdiag.py
19 +++ pandocfilters/examples/blockdiag.py
20 @@ -1,4 +1,4 @@
21 -#!/usr/bin/env python
22 +#!/usr/bin/env python3
23
24 """
25 Filter to process code blocks with class "blockdiag" into
26 Index: pandocfilters/examples/caps.py
27 ===================================================================
28 --- pandocfilters.orig/examples/caps.py
29 +++ pandocfilters/examples/caps.py
30 @@ -1,4 +1,4 @@
31 -#!/usr/bin/env python
32 +#!/usr/bin/env python3
33
34 """
35 Pandoc filter to convert all regular text to uppercase.
36 Index: pandocfilters/examples/comments.py
37 ===================================================================
38 --- pandocfilters.orig/examples/comments.py
39 +++ pandocfilters/examples/comments.py
40 @@ -1,4 +1,4 @@
41 -#!/usr/bin/env python
42 +#!/usr/bin/env python3
43 from pandocfilters import toJSONFilter
44 import re
45
46 Index: pandocfilters/examples/deemph.py
47 ===================================================================
48 --- pandocfilters.orig/examples/deemph.py
49 +++ pandocfilters/examples/deemph.py
50 @@ -1,4 +1,4 @@
51 -#!/usr/bin/env python
52 +#!/usr/bin/env python3
53 from pandocfilters import walk, toJSONFilter
54 from caps import caps
55
56 Index: pandocfilters/examples/deflists.py
57 ===================================================================
58 --- pandocfilters.orig/examples/deflists.py
59 +++ pandocfilters/examples/deflists.py
60 @@ -1,4 +1,4 @@
61 -#!/usr/bin/env python
62 +#!/usr/bin/env python3
63
64 """
65 Pandoc filter to convert definition lists to bullet
66 Index: pandocfilters/examples/ditaa.py
67 ===================================================================
68 --- pandocfilters.orig/examples/ditaa.py
69 +++ pandocfilters/examples/ditaa.py
70 @@ -1,4 +1,4 @@
71 -#!/usr/bin/env python
72 +#!/usr/bin/env python3
73
74 """
75 Pandoc filter to process code blocks with class "ditaa" into images.
76 Index: pandocfilters/examples/graphviz.py
77 ===================================================================
78 --- pandocfilters.orig/examples/graphviz.py
79 +++ pandocfilters/examples/graphviz.py
80 @@ -1,4 +1,4 @@
81 -#!/usr/bin/env python
82 +#!/usr/bin/env python3
83
84 """
85 Pandoc filter to process code blocks with class "graphviz" into
86 Index: pandocfilters/examples/includes.py
87 ===================================================================
88 --- pandocfilters.orig/examples/includes.py
89 +++ pandocfilters/examples/includes.py
90 @@ -1,4 +1,4 @@
91 -#!/usr/bin/env python
92 +#!/usr/bin/env python3
93
94 """
95 Pandoc filter to process code blocks with class "include" and
96 Index: pandocfilters/examples/inlinenotes.py
97 ===================================================================
98 --- pandocfilters.orig/examples/inlinenotes.py
99 +++ pandocfilters/examples/inlinenotes.py
100 @@ -1,4 +1,4 @@
101 -#!/usr/bin/env python
102 +#!/usr/bin/env python3
103
104 from pandocfilters import toJSONFilter, RawInline, Space, Str, walk
105
106 Index: pandocfilters/examples/latexdivs.py
107 ===================================================================
108 --- pandocfilters.orig/examples/latexdivs.py
109 +++ pandocfilters/examples/latexdivs.py
110 @@ -1,4 +1,4 @@
111 -#!/usr/bin/env python
112 +#!/usr/bin/env python3
113
114 """
115 Pandoc filter to convert divs with latex="true" to LaTeX
116 Index: pandocfilters/examples/metavars.py
117 ===================================================================
118 --- pandocfilters.orig/examples/metavars.py
119 +++ pandocfilters/examples/metavars.py
120 @@ -1,4 +1,4 @@
121 -#!/usr/bin/env python
122 +#!/usr/bin/env python3
123
124 """
125 Pandoc filter to allow interpolation of metadata fields
126 Index: pandocfilters/examples/myemph.py
127 ===================================================================
128 --- pandocfilters.orig/examples/myemph.py
129 +++ pandocfilters/examples/myemph.py
130 @@ -1,4 +1,4 @@
131 -#!/usr/bin/env python
132 +#!/usr/bin/env python3
133 from pandocfilters import toJSONFilter, RawInline
134
135 """
136 Index: pandocfilters/examples/plantuml.py
137 ===================================================================
138 --- pandocfilters.orig/examples/plantuml.py
139 +++ pandocfilters/examples/plantuml.py
140 @@ -1,4 +1,4 @@
141 -#!/usr/bin/env python
142 +#!/usr/bin/env python3
143
144 """
145 Pandoc filter to process code blocks with class "plantuml" into
146 Index: pandocfilters/examples/theorem.py
147 ===================================================================
148 --- pandocfilters.orig/examples/theorem.py
149 +++ pandocfilters/examples/theorem.py
150 @@ -1,4 +1,4 @@
151 -#!/usr/bin/env python
152 +#!/usr/bin/env python3
153
154 """
155 Pandoc filter to convert divs with class="theorem" to LaTeX
156 Index: pandocfilters/examples/tikz.py
157 ===================================================================
158 --- pandocfilters.orig/examples/tikz.py
159 +++ pandocfilters/examples/tikz.py
160 @@ -1,4 +1,4 @@
161 -#!/usr/bin/env python
162 +#!/usr/bin/env python3
163
164 """
165 Pandoc filter to process raw latex tikz environments into images.
0 adapt_interpreter_in_examples
+0
-1
debian/python-pandocfilters.docs less more
0 README
+0
-1
debian/python-pandocfilters.examples less more
0 examples/*
1313 find debian/python3-pandocfilters/usr/lib -type f -exec chmod a-x '{}' ';'
1414
1515 execute_after_dh_installexamples:
16 @# remove exec perms from md/ly files, add to example scripts
1617 find debian/python3-pandocfilters/usr/share/doc \
1718 -name '*.ly' -type f -exec chmod a-x '{}' ';'
19 chmod a-x debian/python3-pandocfilters/usr/share/doc/python3-pandocfilters/examples/*.md
20 chmod a+x debian/python3-pandocfilters/usr/share/doc/python3-pandocfilters/examples/*.py
00 version=4
1 opts=uversionmangle=s/(rc|dev|a|b|c)/~$1/ \
2 https://pypi.python.org/packages/source/p/pandocfilters/pandocfilters-(.*)\.(?:tar\.gz|zip|tar\.bz2)
1 opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/pandocfilters-$1\.tar\.gz/ \
2 https://github.com/jgm/pandocfilters/tags .*/v?(\d\S+)\.tar\.gz