diff options
author | Matthias Maier <tamiko@gentoo.org> | 2019-07-30 10:24:23 -0500 |
---|---|---|
committer | Matthias Maier <tamiko@gentoo.org> | 2019-07-30 10:24:52 -0500 |
commit | 3a7cceb642afa4fcb78d5dadc6d2ad8982db1913 (patch) | |
tree | c6473bd94ef89f790e6d4849b94b7615874d8d5f /sci-libs/cantera/files | |
parent | sys-kernel/pf-sources: bump to 5.2-pf2 (diff) | |
download | gentoo-3a7cceb642afa4fcb78d5dadc6d2ad8982db1913.tar.gz gentoo-3a7cceb642afa4fcb78d5dadc6d2ad8982db1913.tar.bz2 gentoo-3a7cceb642afa4fcb78d5dadc6d2ad8982db1913.zip |
sci-libs/cantera: remove 2.4.0-r0 as request by proxy-maintainer
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Matthias Maier <tamiko@gentoo.org>
Diffstat (limited to 'sci-libs/cantera/files')
-rw-r--r-- | sci-libs/cantera/files/cantera_2.4.0_libdirname_variable.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/sci-libs/cantera/files/cantera_2.4.0_libdirname_variable.patch b/sci-libs/cantera/files/cantera_2.4.0_libdirname_variable.patch deleted file mode 100644 index a16f5670b550..000000000000 --- a/sci-libs/cantera/files/cantera_2.4.0_libdirname_variable.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff -Naur old/SConstruct new/SConstruct ---- old/SConstruct 2018-08-24 16:24:45.000000000 +0300 -+++ new/SConstruct 2018-11-05 03:07:07.000000000 +0300 -@@ -327,6 +327,10 @@ - 'prefix', - 'Set this to the directory where Cantera should be installed.', - defaults.prefix, PathVariable.PathAccept), -+ PathVariable( -+ 'libdirname', -+ 'Set this to the directory where Cantera libraries should be installed.', -+ '', PathVariable.PathAccept), - EnumVariable( - 'python_package', - """If you plan to work in Python, then you need the ``full`` Cantera Python -@@ -1465,10 +1469,9 @@ - # *** Set additional configuration variables *** - # ********************************************** - --# Some distributions (e.g. Fedora/RHEL) use 'lib64' instead of 'lib' on 64-bit systems --if any(name.startswith('/usr/lib64/python') for name in sys.path): -- env['libdirname'] = 'lib64' --else: -+# Some distributions use 'lib64' (e.g. Fedora/RHEL) or something else instead of 'lib' on 64-bit systems. -+# If user didn't set 'libdirname' configuration variable set it to default value 'lib' -+if not env['libdirname']: - env['libdirname'] = 'lib' - - # On Debian-based systems, need to special-case installation to |