diff options
author | 2017-12-27 09:35:30 +0100 | |
---|---|---|
committer | 2018-01-03 12:06:41 +0100 | |
commit | c918598e2c4c51ed1f1e7eae5f6e0a4543af556b (patch) | |
tree | fd6c252d4c46b05d28c301df624713cd06ecf123 /app-office/openerp | |
parent | sys-apps/bleachbit: drop dev-pythonnotify-python from RDEPEND and add elog me... (diff) | |
download | gentoo-c918598e2c4c51ed1f1e7eae5f6e0a4543af556b.tar.gz gentoo-c918598e2c4c51ed1f1e7eae5f6e0a4543af556b.tar.bz2 gentoo-c918598e2c4c51ed1f1e7eae5f6e0a4543af556b.zip |
app-office/openerp: remove unused patch.
Closes: https://github.com/gentoo/gentoo/pull/6653
Diffstat (limited to 'app-office/openerp')
-rw-r--r-- | app-office/openerp/files/openerp-6.1-setup.py.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/app-office/openerp/files/openerp-6.1-setup.py.patch b/app-office/openerp/files/openerp-6.1-setup.py.patch deleted file mode 100644 index 904824875614..000000000000 --- a/app-office/openerp/files/openerp-6.1-setup.py.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- setup.py.old 2012-07-01 17:31:24.000000000 +0400 -+++ setup.py 2012-07-01 17:33:52.000000000 +0400 -@@ -22,6 +22,7 @@ - - import glob, os, re, setuptools, sys - from os.path import join, isfile -+from distutils.sysconfig import get_python_lib - - # List all data files - def data(): -@@ -32,7 +33,7 @@ def data(): - files.append(os.path.join(root, filename)) - d = {} - for v in files: -- k=os.path.dirname(v) -+ k=os.path.join(get_python_lib(prefix=''), os.path.dirname(v)) - if k in d: - d[k].append(v) - else: -@@ -41,9 +42,9 @@ def data(): - if os.name == 'nt': - r.append(("Microsoft.VC90.CRT", glob.glob('C:\Microsoft.VC90.CRT\*.*'))) - -- import babel -- r.append(("localedata", -- glob.glob(os.path.join(os.path.dirname(babel.__file__), "localedata" , '*')))) -+# import babel -+# r.append(("localedata", -+# glob.glob(os.path.join(os.path.dirname(babel.__file__), "localedata" , '*')))) - - return r - |