Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/paste/files/
Date: Thu, 14 May 2020 22:19:51
Message-Id: 1589494768.a5b53a1ac7d6d63ada2457755e570edc95420aab.bman@gentoo
1 commit: a5b53a1ac7d6d63ada2457755e570edc95420aab
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Mar 30 16:19:25 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Thu May 14 22:19:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5b53a1a
7
8 dev-python/paste: remove unused patch(es)
9
10 Package-Manager: Portage-2.3.96, Repoman-2.3.22
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
13
14 .../paste/files/paste-2.0.3-unbundle-tempita.patch | 36 ----------------------
15 1 file changed, 36 deletions(-)
16
17 diff --git a/dev-python/paste/files/paste-2.0.3-unbundle-tempita.patch b/dev-python/paste/files/paste-2.0.3-unbundle-tempita.patch
18 deleted file mode 100644
19 index eef7abb4108..00000000000
20 --- a/dev-python/paste/files/paste-2.0.3-unbundle-tempita.patch
21 +++ /dev/null
22 @@ -1,36 +0,0 @@
23 - paste/util/looper/__init__.py | 4 ++++
24 - paste/util/{looper.py => looper/_looper.py} | 0
25 - paste/util/template/__init__.py | 6 ++++++
26 - paste/util/{template.py => template/_template.py} | 0
27 - 4 files changed, 10 insertions(+)
28 -
29 -diff --git a/paste/util/looper/__init__.py b/paste/util/looper/__init__.py
30 -new file mode 100644
31 -index 0000000..77d7e80
32 ---- /dev/null
33 -+++ b/paste/util/looper/__init__.py
34 -@@ -0,0 +1,4 @@
35 -+try:
36 -+ from tempita._looper import *
37 -+except ImportError:
38 -+ from _looper import *
39 -diff --git a/paste/util/looper.py b/paste/util/looper/_looper.py
40 -similarity index 100%
41 -rename from paste/util/looper.py
42 -rename to paste/util/looper/_looper.py
43 -diff --git a/paste/util/template/__init__.py b/paste/util/template/__init__.py
44 -new file mode 100644
45 -index 0000000..a0a5730
46 ---- /dev/null
47 -+++ b/paste/util/template/__init__.py
48 -@@ -0,0 +1,6 @@
49 -+try:
50 -+ from tempita import *
51 -+ from tempita import paste_script_template_renderer
52 -+except ImportError:
53 -+ from _template import *
54 -+ from _template import paste_script_template_renderer
55 -diff --git a/paste/util/template.py b/paste/util/template/_template.py
56 -similarity index 100%
57 -rename from paste/util/template.py
58 -rename to paste/util/template/_template.py