summaryrefslogtreecommitdiffstats
path: root/abs/extra/subversion/subversion.suppress.deprecation.warnings.patch
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-08-07 20:50:18 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-08-07 20:50:18 (GMT)
commitfe3bc0b9a864e4d62edad6e5f341d867462dd211 (patch)
tree41f6b29f92523a3275d107b8d07ce887f98d8491 /abs/extra/subversion/subversion.suppress.deprecation.warnings.patch
parente9860e42df3e9f2fa16d4cd5356cfcee6f2fd400 (diff)
downloadlinhes_pkgbuild-fe3bc0b9a864e4d62edad6e5f341d867462dd211.zip
linhes_pkgbuild-fe3bc0b9a864e4d62edad6e5f341d867462dd211.tar.gz
linhes_pkgbuild-fe3bc0b9a864e4d62edad6e5f341d867462dd211.tar.bz2
subversion 1.7.5
Diffstat (limited to 'abs/extra/subversion/subversion.suppress.deprecation.warnings.patch')
-rw-r--r--abs/extra/subversion/subversion.suppress.deprecation.warnings.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/abs/extra/subversion/subversion.suppress.deprecation.warnings.patch b/abs/extra/subversion/subversion.suppress.deprecation.warnings.patch
deleted file mode 100644
index 94ce89b..0000000
--- a/abs/extra/subversion/subversion.suppress.deprecation.warnings.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -urN subversion-1.6.9/subversion/bindings/swig/python/svn/core.py subversion-1.6.9-fixed/subversion/bindings/swig/python/svn/core.py
---- subversion-1.6.9/subversion/bindings/swig/python/svn/core.py 2009-02-13 11:22:26.000000000 -0500
-+++ subversion-1.6.9-fixed/subversion/bindings/swig/python/svn/core.py 2010-02-08 07:46:29.000000000 -0500
-@@ -19,6 +19,7 @@
- from libsvn.core import *
- import libsvn.core as _libsvncore
- import atexit as _atexit
-+import warnings
-
- class SubversionException(Exception):
- def __init__(self, message=None, apr_err=None, child=None,
-@@ -44,7 +45,9 @@
- Exception.__init__(self, *args)
-
- self.apr_err = apr_err
-- self.message = message
-+ with warnings.catch_warnings():
-+ warnings.simplefilter("ignore", DeprecationWarning)
-+ self.message = message
- self.child = child
- self.file = file
- self.line = line