File: remove-non-ascii-in-sphinx-doc.patch

package info (click to toggle)
python-semantic-version 2.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 344 kB
  • sloc: python: 1,706; makefile: 174
file content (65 lines) | stat: -rw-r--r-- 2,488 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Description: Remove non-ascii in doc
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2018-08-28

--- python-semantic-version-2.6.0.orig/CREDITS
+++ python-semantic-version-2.6.0/CREDITS
@@ -7,7 +7,7 @@ Maintainers
 
 The ``python-semanticversion`` project is operated and maintained by:
 
-* Raphaël Barrois <raphael.barrois+semver@polytechnique.org> (https://github.com/rbarrois)
+* Raphael Barrois <raphael.barrois+semver@polytechnique.org> (https://github.com/rbarrois)
 
 
 .. _contributors:
--- a/docs/conf.py	2017-12-27 02:18:41.394788473 +0100
+++ b/docs/conf.py	2018-08-28 11:35:17.649008983 +0200
@@ -193,7 +193,7 @@
 # (source start file, target name, title, author, documentclass [howto/manual]).
 latex_documents = [
   ('index', 'python-semanticversion.tex', u'python-semanticversion Documentation',
-   u'Raphaël Barrois', 'manual'),
+   u'Raphael Barrois', 'manual'),
 ]
 
 # The name of an image file (relative to this directory) to place at the top of
@@ -223,7 +223,7 @@
 # (source start file, name, description, authors, manual section).
 man_pages = [
     ('index', 'python-semanticversion', u'python-semanticversion Documentation',
-     [u'Raphaël Barrois'], 1)
+     [u'Raphael Barrois'], 1)
 ]
 
 # If true, show URL addresses after external links.
@@ -237,7 +237,7 @@
 #  dir menu entry, description, category)
 texinfo_documents = [
   ('index', 'python-semanticversion', u'python-semanticversion Documentation',
-   u'Raphaël Barrois', 'python-semanticversion', 'One line description of project.',
+   u'Raphael Barrois', 'python-semanticversion', 'One line description of project.',
    'Miscellaneous'),
 ]
 
--- a/semantic_version/__init__.py	2018-08-28 11:37:06.613522399 +0200
+++ b/semantic_version/__init__.py	2018-08-28 11:36:55.873471496 +0200
@@ -6,5 +6,5 @@
 from .base import compare, match, validate, Spec, SpecItem, Version
 
 
-__author__ = "Raphaël Barrois <raphael.barrois+semver@polytechnique.org>"
+__author__ = "Raphael Barrois <raphael.barrois+semver@polytechnique.org>"
 __version__ = '2.6.0'
--- setup.py	2018-08-28 11:37:58.157767572 +0200
+++ ../setup.py	2018-08-28 11:37:53.597745823 +0200
@@ -41,7 +41,7 @@
 setup(
     name=PACKAGE,
     version=get_version(PACKAGE),
-    author="Raphaël Barrois",
+    author="Raphael Barrois",
     author_email="raphael.barrois+semver@polytechnique.org",
     description="A library implementing the 'SemVer' scheme.",
     long_description=clean_readme('README.rst'),