diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-09-13 17:37:00 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-09-18 15:27:19 +0200 |
commit | b993b05047c090bca8eec0a734b6bc7fe834e301 (patch) | |
tree | 0a0282e596480a3be0117463617744f17747bfa3 /dev-python/jinja | |
parent | mail-client/mutt: revise 1.7.0 ebuild (diff) | |
download | gentoo-b993b05047c090bca8eec0a734b6bc7fe834e301.tar.gz gentoo-b993b05047c090bca8eec0a734b6bc7fe834e301.tar.bz2 gentoo-b993b05047c090bca8eec0a734b6bc7fe834e301.zip |
dev-python/jinja: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/2321
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/jinja')
-rw-r--r-- | dev-python/jinja/files/jinja-2.6-python3.3.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/dev-python/jinja/files/jinja-2.6-python3.3.patch b/dev-python/jinja/files/jinja-2.6-python3.3.patch deleted file mode 100644 index 29bd38ead6df..000000000000 --- a/dev-python/jinja/files/jinja-2.6-python3.3.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/jinja2/environment.py b/jinja2/environment.py -index ebb5454..1b5dc40 100644 ---- a/jinja2/environment.py -+++ b/jinja2/environment.py -@@ -570,6 +570,10 @@ class Environment(object): - py_header = imp.get_magic() + \ - u'\xff\xff\xff\xff'.encode('iso-8859-15') - -+ # Python 3.3 added a source filesize to the header -+ if sys.version_info >= (3, 3): -+ py_header += u'\x00\x00\x00\x00'.encode('iso-8859-15') -+ - def write_file(filename, data, mode): - if zip: - info = ZipInfo(filename) |