summaryrefslogtreecommitdiff
path: root/math/slepc/files/patch-config_install.py
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-12-29 11:53:43 +0000
committerRene Ladan <rene@FreeBSD.org>2020-12-29 11:53:43 +0000
commit91408dc2935d9f09ae0b4d44bd99b401d75de23f (patch)
tree8288e899820bef4d4cfdcf4a493c4a4f63691751 /math/slepc/files/patch-config_install.py
parentRequire kld before starting virtual_oss in case cuse(3) is loaded from there. (diff)
Remove expired ports:
2020-12-12 textproc/py-hypua2jamo: Uses deprecated version of python 2020-12-12 devel/py-delfick_error: Uses deprecated version of python 2020-12-12 devel/py-fusefs: Uses deprecated version of python 2020-08-15 devel/py-noseofyeti: Uses deprecated version of python 2020-12-29 databases/py-bsddb: Uses deprecated version of python 2020-12-29 www/py-webhelpers: Uses deprecated version of python 2020-12-29 security/py-pyptlib: Uses deprecated version of python 2020-12-29 japanese/py-zinnia: Uses deprecated version of python 2020-12-29 math/slepc: Broken, uses deprecated version of python 2020-12-29 www/py-pastescript: Uses deprecated version of python 2020-12-29 databases/ldb14: Uses deprecated version of python 2020-12-29 math/py-slepc4py: Depends on broken and expiring math/slepc 2020-12-29 multimedia/py-kaa-base: Uses deprecated version of python 2020-12-29 devel/py-ydbf: Uses deprecated version of python 2020-12-29 devel/py-SymbolType: Uses deprecated version of python
Diffstat (limited to 'math/slepc/files/patch-config_install.py')
-rw-r--r--math/slepc/files/patch-config_install.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/math/slepc/files/patch-config_install.py b/math/slepc/files/patch-config_install.py
deleted file mode 100644
index b31bde13af62..000000000000
--- a/math/slepc/files/patch-config_install.py
+++ /dev/null
@@ -1,22 +0,0 @@
---- config/install.py.orig 2018-10-02 22:50:33 UTC
-+++ config/install.py
-@@ -311,13 +311,13 @@ for dir in dirs:
-
- def installShare(self):
- self.copies.extend(self.copytree(self.rootShareDir, self.destShareDir))
-- examplesdir=os.path.join(self.destShareDir,'slepc','examples')
-- if os.path.exists(os.path.join(self.destShareDir,'slepc','examples')):
-- shutil.rmtree(os.path.join(self.destShareDir,'slepc','examples'))
-- os.mkdir(os.path.join(self.destShareDir,'slepc','examples'))
-- self.copyExamples(self.rootDir,os.path.join(self.destShareDir,'slepc','examples'))
-+ examplesdir=os.path.join(self.destShareDir,'examples','slepc')
-+ if os.path.exists(os.path.join(self.destShareDir,'examples','slepc')):
-+ shutil.rmtree(os.path.join(self.destShareDir,'examples','slepc'))
-+ os.mkdir(os.path.join(self.destShareDir,'examples','slepc'))
-+ self.copyExamples(self.rootDir,os.path.join(self.destShareDir,'examples','slepc'))
- self.copyConfig(self.rootDir,examplesdir)
-- self.fixExamplesMakefile(os.path.join(self.destShareDir,'slepc','examples','makefile'))
-+ self.fixExamplesMakefile(os.path.join(self.destShareDir,'examples','slepc','makefile'))
- return
-
- def copyLib(self, src, dst):