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

Added LICENSE.AGPL in the hack

parent b39267eb
No related branches found
No related tags found
No related merge requests found
Pipeline #34366 passed
...@@ -75,9 +75,14 @@ def do_hack(project_dir): ...@@ -75,9 +75,14 @@ def do_hack(project_dir):
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") for l in recipe] recipe = [l.replace("../COPYING","COPYING").replace("../LICENSE","LICENSE").replace("../LICENSE.AGPL","LICENSE.AGPL") for l in recipe]
open(meta_file, "wt").write(''.join(recipe)) open(meta_file, "wt").write(''.join(recipe))
#### END OF HACK #### END OF HACK
......
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