summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-09-10 19:07:24 +0200
committerDavid Seifert <soap@gentoo.org>2016-09-11 10:48:44 +0200
commit31ce79f50d636ab629fe661a36531ac7e0141f93 (patch)
tree71d128ebfc840c1e71b06221c5b579e0a9767e94 /dev-python/django-recaptcha
parentdev-python/django-compressor: remove unused patch (diff)
downloadgentoo-31ce79f50d636ab629fe661a36531ac7e0141f93.tar.gz
gentoo-31ce79f50d636ab629fe661a36531ac7e0141f93.tar.bz2
gentoo-31ce79f50d636ab629fe661a36531ac7e0141f93.zip
dev-python/django-recaptcha: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/2291 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/django-recaptcha')
-rw-r--r--dev-python/django-recaptcha/files/django-recaptcha-fields.patch18
-rw-r--r--dev-python/django-recaptcha/files/django-recaptcha-settings.patch6
-rw-r--r--dev-python/django-recaptcha/files/test_settings.py14
3 files changed, 0 insertions, 38 deletions
diff --git a/dev-python/django-recaptcha/files/django-recaptcha-fields.patch b/dev-python/django-recaptcha/files/django-recaptcha-fields.patch
deleted file mode 100644
index 2bd0d32c967e..000000000000
--- a/dev-python/django-recaptcha/files/django-recaptcha-fields.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -ur django-recaptcha-0.0.6.orig/captcha/fields.py django-recaptcha-0.0.6/captcha/fields.py
---- captcha/fields.py 2013-01-31 17:05:59.000000000 +0800
-+++ captcha/fields.py 2013-03-07 01:44:54.804708648 +0800
-@@ -2,13 +2,12 @@
- import sys
-
- from django import forms
--from django.conf import settings
- from django.utils.encoding import smart_unicode
- from django.utils.translation import ugettext_lazy as _
-
- from captcha import client
- from captcha.widgets import ReCaptcha
--
-+from captcha import test_settings as settings
-
- class ReCaptchaField(forms.CharField):
- default_error_messages = {
diff --git a/dev-python/django-recaptcha/files/django-recaptcha-settings.patch b/dev-python/django-recaptcha/files/django-recaptcha-settings.patch
deleted file mode 100644
index c28694ee4d1a..000000000000
--- a/dev-python/django-recaptcha/files/django-recaptcha-settings.patch
+++ /dev/null
@@ -1,6 +0,0 @@
---- /dev/null 2013-03-05 00:07:00.881999836 +0800
-+++ captcha/settings.py 2013-03-07 02:27:52.302580399 +0800
-@@ -0,0 +1,3 @@
-+RECAPTCHA_PUBLIC_KEY='76wtgdfsjhsydt7r5FFGFhgsdfytd656sad75fgh'
-+RECAPTCHA_PRIVATE_KEY='98dfg6df7g56df6gdfgdfg65JHJH656565GFGFGs'
-+RECAPTCHA_USE_SSL='True'
diff --git a/dev-python/django-recaptcha/files/test_settings.py b/dev-python/django-recaptcha/files/test_settings.py
deleted file mode 100644
index 5e66d9e454a2..000000000000
--- a/dev-python/django-recaptcha/files/test_settings.py
+++ /dev/null
@@ -1,14 +0,0 @@
-DATABASES = {
- 'default': {
- 'ENGINE': 'django.db.backends.sqlite3',
- 'NAME': 'test.sqlite',
- }
-}
-
-INSTALLED_APPS = [
- 'captcha',
-]
-
-RECAPTCHA_PRIVATE_KEY = '98dfg6df7g56df6gdfgdfg65JHJH656565GFGFGs'
-RECAPTCHA_PUBLIC_KEY = '76wtgdfsjhsydt7r5FFGFhgsdfytd656sad75fgh'
-RECAPTCHA_USE_SSL='True'