summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-07-11 12:56:51 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-07-11 12:56:51 +0000
commit14a6ee9f23664c3549da5908b83003cd6695d334 (patch)
tree2dc6cfd926084683aab895f02108c6544dce0b0a /dev-python/django
parentDelete older ebuild. (diff)
downloadhistorical-14a6ee9f23664c3549da5908b83003cd6695d334.tar.gz
historical-14a6ee9f23664c3549da5908b83003cd6695d334.tar.bz2
historical-14a6ee9f23664c3549da5908b83003cd6695d334.zip
Delete unused patch.
Diffstat (limited to 'dev-python/django')
-rw-r--r--dev-python/django/Manifest1
-rw-r--r--dev-python/django/files/django-1.1.1-fix_tests.patch25
2 files changed, 0 insertions, 26 deletions
diff --git a/dev-python/django/Manifest b/dev-python/django/Manifest
index 8178b344e6ab..5682778bb927 100644
--- a/dev-python/django/Manifest
+++ b/dev-python/django/Manifest
@@ -1,4 +1,3 @@
-AUX django-1.1.1-fix_tests.patch 840 RMD160 4a5a121c37fe883209505312be39dc2a9143413e SHA1 ecb48a057b5c037ecff653ff11bf7c9cd0fb1ef6 SHA256 88f7d237b7e8ee14ea44704e4b51cd12e2a1b8355e1569a59065659093665cf6
DIST Django-1.0.4.tar.gz 5088869 RMD160 9f61455bc4cc0277ddfe4a957863d5995f8c23f3 SHA1 a8b9f33adb007146b8b57f22f0f38467f0d2693a SHA256 a9388a047814bbe356c43d3d2e3afff42b1f93190c86aa4ac72f828a5ef107eb
DIST Django-1.1.2.tar.gz 5748420 RMD160 234ed051b4b0424f8bbd06b7021aaf94c4d185ff SHA1 1d3df9f1f7bbd5ba6334cb3503791a2b290af96e SHA256 5ccea372454536148e603b1a7c010711c25a991ffaf3b2d6ab2034ad05e1ec25
DIST Django-1.2.1.tar.gz 6248006 RMD160 25904c6f450e88404256f951ee39cb6b39de5f76 SHA1 1b5655f300d7333be06289451723dc5260a9944c SHA256 eaa29f2344568cc871c4517a348de0d5c39fbd055b4c998cd4a80601bb51e7b9
diff --git a/dev-python/django/files/django-1.1.1-fix_tests.patch b/dev-python/django/files/django-1.1.1-fix_tests.patch
deleted file mode 100644
index cc3c1093fe32..000000000000
--- a/dev-python/django/files/django-1.1.1-fix_tests.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-http://code.djangoproject.com/changeset/11619
-http://code.djangoproject.com/changeset/11697
-
---- django/template/defaultfilters.py
-+++ django/template/defaultfilters.py
-@@ -162,7 +162,7 @@
-
- try:
- m = int(d) - d
-- except (OverflowError, InvalidOperation):
-+ except (ValueError, OverflowError, InvalidOperation):
- return input_val
-
- if not m and p < 0:
---- tests/regressiontests/views/tests/generic/date_based.py
-+++ tests/regressiontests/views/tests/generic/date_based.py
-@@ -100,7 +100,7 @@
-
- now = datetime.now()
- prev_month = now.date().replace(day=1)
-- if prev_month.month == 11:
-+ if prev_month.month == 1:
- prev_month = prev_month.replace(year=prev_month.year-1, month=12)
- else:
- prev_month = prev_month.replace(month=prev_month.month-1)