Skip to content
Snippets Groups Projects
Commit 0e483ff6 authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Merge branch 'conda-build-hack' into 'master'

'info/LICENSE' not in info/files

See merge request !113
parents c99c3336 d8e3320d
No related branches found
No related tags found
1 merge request!113'info/LICENSE' not in info/files
Pipeline #34230 passed
...@@ -437,6 +437,22 @@ if __name__ == "__main__": ...@@ -437,6 +437,22 @@ if __name__ == "__main__":
logger.warn('See https://gitlab.idiap.ch/bob/bob.devtools/merge_requests/112') logger.warn('See https://gitlab.idiap.ch/bob/bob.devtools/merge_requests/112')
os.unlink('.gitignore') os.unlink('.gitignore')
#### END OF HACK #### END OF HACK
#### HACK that avoids this issue: https://github.com/conda/conda-build/issues/3767
if os.path.exists('LICENSE') and os.path.exists('conda'):
logger.warn('Creating symlink in `./conda` to avoid issue with conda build (https://github.com/conda/conda-build/issues/3767)')
logger.warn('Replacing ../LICENSE to LICENSE (https://github.com/conda/conda-build/issues/3767)')
pwd = os.path.abspath(os.curdir)
os.symlink(f"{pwd}/LICENSE", f"{pwd}/conda/LICENSE")
if(os.path.exists('COPYING')):
os.symlink(f"{pwd}/COPYING", f"{pwd}/conda/COPYING")
recipe = open("./conda/meta.yaml").readlines()
recipe = [l.replace("../COPYING","COPYING").replace("../LICENSE","LICENSE") for l in recipe]
open("./conda/meta.yaml", "wt").write(''.join(recipe))
#### END OF HACK
condarc = os.path.join(args.conda_root, "condarc") condarc = os.path.join(args.conda_root, "condarc")
......
...@@ -111,3 +111,4 @@ about: ...@@ -111,3 +111,4 @@ about:
license: BSD 3-Clause license: BSD 3-Clause
summary: Tools for development and CI integration of Bob packages summary: Tools for development and CI integration of Bob packages
license_family: BSD license_family: BSD
license_file: ../LICENSE
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment