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

Added LICENSE.AGPL in the hack

parent 633d2e75
No related branches found
No related tags found
No related merge requests found
Pipeline #34369 passed
...@@ -65,21 +65,20 @@ def do_hack(project_dir): ...@@ -65,21 +65,20 @@ def do_hack(project_dir):
#### HACK that avoids this issue: https://github.com/conda/conda-build/issues/3767 #### HACK that avoids this issue: https://github.com/conda/conda-build/issues/3767
license_file = os.path.join(project_dir, 'LICENSE') license_file = os.path.join(project_dir, 'LICENSE')
if not os.path.exists(license_file):
license_file = os.path.join(project_dir, 'LICENSE.AGPL')
recipe_dir = os.path.join(project_dir, 'conda') recipe_dir = os.path.join(project_dir, 'conda')
if os.path.exists(license_file) and os.path.exists(recipe_dir): if os.path.exists(license_file) and os.path.exists(recipe_dir):
logger.warn('Copying LICENSE file to `./conda` dir to avoid issue with conda build (https://github.com/conda/conda-build/issues/3767)') logger.warn('Copying LICENSE file to `./conda` dir 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)') logger.warn('Replacing ../LICENSE to LICENSE (https://github.com/conda/conda-build/issues/3767)')
shutil.copyfile(license_file, os.path.join(recipe_dir,"LICENSE")) shutil.copyfile(license_file, os.path.join(recipe_dir, os.path.basename(license_file) ))
# Checking COPYING file just in case # Checking COPYING file just in case
copying_file = os.path.join(project_dir, 'COPYING') copying_file = os.path.join(project_dir, 'COPYING')
if(os.path.exists(copying_file)): if(os.path.exists(copying_file)):
shutil.copyfile(copying_file, os.path.join(recipe_dir,"COPYING")) shutil.copyfile(copying_file, os.path.join(recipe_dir,"COPYING"))
agpl_file = os.path.join(project_dir, 'LICENSE.AGPL')
if(os.path.exists(agpl_file)):
shutil.copyfile(agpl_file, os.path.join(recipe_dir,"LICENSE.AGPL"))
meta_file = os.path.join(recipe_dir,"meta.yaml") meta_file = os.path.join(recipe_dir,"meta.yaml")
recipe = open(meta_file).readlines() recipe = open(meta_file).readlines()
recipe = [l.replace("../COPYING","COPYING").replace("../LICENSE","LICENSE").replace("../LICENSE.AGPL","LICENSE.AGPL") for l in recipe] recipe = [l.replace("../COPYING","COPYING").replace("../LICENSE","LICENSE").replace("../LICENSE.AGPL","LICENSE.AGPL") for l in recipe]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment