summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzamat H. Hackimov <azamat.hackimov@gmail.com>2016-08-11 20:25:18 +0500
committerPatrice Clement <monsieurp@gentoo.org>2016-08-16 19:59:06 +0200
commit28f04c78c91d8140e125937d308c115ee5318fe4 (patch)
treea61bd6124f5d38f0e30272bc4c6122447cbb7d0f /app-i18n/transifex-client/files
parentx11-drivers/xf86-video-intel: Update snapshot (diff)
downloadgentoo-28f04c78c91d8140e125937d308c115ee5318fe4.tar.gz
gentoo-28f04c78c91d8140e125937d308c115ee5318fe4.tar.bz2
gentoo-28f04c78c91d8140e125937d308c115ee5318fe4.zip
app-i18n/transifex-client: version bump to 0.12.2, remove old 0.11.1_beta and 0.12.1.
Package-Manager: portage-2.2.28 Closes: https://github.com/gentoo/gentoo/pull/2070 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-i18n/transifex-client/files')
-rw-r--r--app-i18n/transifex-client/files/transifex-client-0.12.1_urllib3_six.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/app-i18n/transifex-client/files/transifex-client-0.12.1_urllib3_six.patch b/app-i18n/transifex-client/files/transifex-client-0.12.1_urllib3_six.patch
deleted file mode 100644
index 7c89352738f8..000000000000
--- a/app-i18n/transifex-client/files/transifex-client-0.12.1_urllib3_six.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -Nuar transifex-client-0.12.1.orig/txclib/commands.py transifex-client-0.12.1/txclib/commands.py
---- transifex-client-0.12.1.orig/txclib/commands.py 2016-07-16 23:40:14.476353681 +0500
-+++ transifex-client-0.12.1/txclib/commands.py 2016-07-16 23:53:28.121315176 +0500
-@@ -25,7 +25,7 @@
- except ImportError:
- import ConfigParser as configparser
-
--from urllib3.packages.six.moves import input
-+from six.moves import input
-
- from txclib import utils, project
- from txclib.utils import parse_json, compile_json, files_in_project
-diff -Nuar transifex-client-0.12.1.orig/txclib/utils.py transifex-client-0.12.1/txclib/utils.py
---- transifex-client-0.12.1.orig/txclib/utils.py 2016-07-16 23:40:14.477353681 +0500
-+++ transifex-client-0.12.1/txclib/utils.py 2016-07-16 23:40:37.376352570 +0500
-@@ -15,7 +15,7 @@
- from email.parser import Parser
- from urllib3.exceptions import SSLError
- from urllib3.packages import six
--from urllib3.packages.six.moves import input
-+from six.moves import input
- from txclib.urls import API_URLS
- from txclib.exceptions import UnknownCommandError, HttpNotFound, HttpNotAuthorized
- from txclib.paths import posix_path, native_path, posix_sep