Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.devtools
Commits
78796cfe
Commit
78796cfe
authored
Oct 15, 2019
by
Tiago de Freitas Pereira
Browse files
Added LICENSE.AGPL in the hack
parent
633d2e75
Pipeline
#34369
passed with stages
in 5 minutes and 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bob/devtools/bootstrap.py
View file @
78796cfe
...
...
@@ -65,21 +65,20 @@ def do_hack(project_dir):
#### HACK that avoids this issue: https://github.com/conda/conda-build/issues/3767
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'
)
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
(
'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
copying_file
=
os
.
path
.
join
(
project_dir
,
'COPYING'
)
if
(
os
.
path
.
exists
(
copying_file
)):
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"
)
recipe
=
open
(
meta_file
).
readlines
()
recipe
=
[
l
.
replace
(
"../COPYING"
,
"COPYING"
).
replace
(
"../LICENSE"
,
"LICENSE"
).
replace
(
"../LICENSE.AGPL"
,
"LICENSE.AGPL"
)
for
l
in
recipe
]
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment