Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 980aada6 authored by hhakim's avatar hhakim
Browse files

Update pyfaust/matfaust license.

parent b47e770c
Branches
Tags
No related merge requests found
Pipeline #855289 passed
Copyright (c) 2015-2023, Inria and Authors: (Researchers:) Rémi Gribonval, Luc Le Magoarou, (Engineers:) Adrien Leman (2016), Nicolas Bellot(2015-2016), Thomas Gautrais (2015), Hakim Hadj-Djilani (2018-), Pascal Carrivain (2023-). BSD 3-clause License. Copyright (c) 2015-2023, Inria and Authors:
(Researchers:) Rémi Gribonval, Luc Le Magoarou,
(Engineers:) Adrien Leman (2016), Nicolas Bellot(2015-2016), Thomas Gautrais (2015),
Hakim Hadj-Djilani (2018-), Pascal Carrivain (2023-).
All rights reserved. All rights reserved.
BSD 3-clause License.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met: modification, are permitted provided that the following conditions are met:
...@@ -16,14 +21,14 @@ list of conditions and the following disclaimer. ...@@ -16,14 +21,14 @@ list of conditions and the following disclaimer.
contributors may be used to endorse or promote products derived from this contributors may be used to endorse or promote products derived from this
software without specific prior written permission. software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
...@@ -3,37 +3,40 @@ ...@@ -3,37 +3,40 @@
%> Prints the FAuST license. %> Prints the FAuST license.
% ========================================== % ==========================================
function license() function license()
disp('% License:')
disp(' Copyright (2019): Hakim Hadj-djilani, Nicolas Bellot, Adrien Leman, Thomas Gautrais, Luc Le Magoarou, Remi Gribonval')
disp(' INRIA Rennes, FRANCE')
disp(' http://www.inria.fr/')
disp('') disp('')
disp(' The FAuST Toolbox is distributed under the terms of the GNU Affero') disp(' Copyright (c) 2015-2023, Inria and Authors: ')
disp(' General Public License.') disp(' (Researchers:) Rémi Gribonval, Luc Le Magoarou, ')
disp(' This program is free software: you can redistribute it and/or modify') disp(' (Engineers:) Adrien Leman (2016), Nicolas Bellot(2015-2016), ')
disp(' it under the terms of the GNU Affero General Public License as published') disp(' Thomas Gautrais (2015), Hakim Hadj-Djilani (2018-), ')
disp(' by the Free Software Foundation.') disp(' Pascal Carrivain (2023-). ')
disp(' All rights reserved. ')
disp(' ')
disp(' BSD 3-clause License. ')
disp(' ')
disp(' Redistribution and use in source and binary forms, with or without ')
disp(' modification, are permitted provided that the following conditions are met: ')
disp(' ')
disp(' 1. Redistributions of source code must retain the above copyright notice, this ')
disp(' list of conditions and the following disclaimer. ')
disp(' ')
disp(' 2. Redistributions in binary form must reproduce the above copyright notice, ')
disp(' this list of conditions and the following disclaimer in the documentation ')
disp(' and/or other materials provided with the distribution. ')
disp(' ')
disp(' 3. Neither the name of the copyright holder nor the names of its ')
disp(' contributors may be used to endorse or promote products derived from this ')
disp(' software without specific prior written permission. ')
disp(' ')
disp(' THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" ')
disp(' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ')
disp(' IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ')
disp(' ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE ')
disp(' LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR ')
disp(' CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF ')
disp(' SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR ')
disp(' BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF ')
disp(' LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING ')
disp(' NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ')
disp(' SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ')
disp('') disp('')
disp(' This program is distributed in the hope that it will be useful, but')
disp(' WITHOUT ANY WARRANTY; without even the implied warranty of')
disp(' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.')
disp(' See the GNU Affero General Public License for more details.')
disp('')
disp(' You should have received a copy of the GNU Affero General Public License')
disp(' along with F program. If not, see <http://www.gnu.org/licenses/>.')
disp('')
disp('% Contacts:')
disp(' Remi Gribonval : remi.gribonval@inria.fr')
disp(' Hakim Hadj-dji. : hakim.hadj-djilani@inria.fr')
disp(' Nicolas Bellot : nicolas.bellot@inria.fr')
disp(' Adrien Leman : adrien.leman@inria.fr')
disp(' Thomas Gautrais : thomas.gautrais@inria.fr')
disp(' Luc Le Magoarou : luc.le-magoarou@inria.fr')
disp('')
disp('% References:')
disp(' [1] Le Magoarou L. and Gribonval R., "Flexible multi-layer sparse')
disp(' approximations of matrices and applications", Journal of Selected')
disp(' Topics in Signal Processing, 2016.')
disp(' <https://hal.archives-ouvertes.fr/hal-01167948v1>')
disp('%')
end end
...@@ -381,7 +381,9 @@ if(EXPERIMENTAL_PKG) ...@@ -381,7 +381,9 @@ if(EXPERIMENTAL_PKG)
configure_file(${FAUST_PYTHON_SRC_DIR}/pyfaust.py ${FAUST_PYTHON_BIN_DIR}/pyfaust/__init__.py @ONLY) configure_file(${FAUST_PYTHON_SRC_DIR}/pyfaust.py ${FAUST_PYTHON_BIN_DIR}/pyfaust/__init__.py @ONLY)
else() else()
# filter experimental code out of pyfaust modules # filter experimental code out of pyfaust modules
filter_experimental_code("${FAUST_PYTHON_SRC_DIR}/pyfaust.py" "${FAUST_PYTHON_BIN_DIR}/pyfaust/__init__.py") configure_file(${FAUST_PYTHON_SRC_DIR}/pyfaust.py ${FAUST_PYTHON_BIN_DIR}/pyfaust/__init__tmp.py @ONLY)
filter_experimental_code("${FAUST_PYTHON_BIN_DIR}/pyfaust/__init__tmp.py" "${FAUST_PYTHON_BIN_DIR}/pyfaust/__init__.py")
file(REMOVE ${FAUST_PYTHON_BIN_DIR}/pyfaust/__init__tmp.py)
endif() endif()
FILE(GLOB_RECURSE PYFAUST_FILES RELATIVE ${FAUST_PYTHON_SRC_DIR} ${FAUST_PYTHON_SRC_DIR}/pyfaust/*py) FILE(GLOB_RECURSE PYFAUST_FILES RELATIVE ${FAUST_PYTHON_SRC_DIR} ${FAUST_PYTHON_SRC_DIR}/pyfaust/*py)
......
########################################################################################## ######################################################################################
# Copyright (c) 2021, INRIA # # Copyright (c) 2015-2023, Inria and Authors: #
# All rights reserved. # # (Researchers:) Rémi Gribonval, Luc Le Magoarou, #
# # # (Engineers:) Adrien Leman (2016), Nicolas Bellot(2015-2016), #
# BSD License 2.0 # # Thomas Gautrais (2015), Hakim Hadj-Djilani (2018-), #
# # # Pascal Carrivain (2023-). #
# Redistribution and use in source and binary forms, with or without # # All rights reserved. #
# modification, are permitted provided that the following conditions are met: # # #
# * Redistributions of source code must retain the above copyright notice, # # BSD 3-clause License. #
# this list of conditions and the following disclaimer. # # #
# * Redistributions in binary form must reproduce the above copyright notice, # # Redistribution and use in source and binary forms, with or without #
# this list of conditions and the following disclaimer in the documentation # # modification, are permitted provided that the following conditions are met: #
# and/or other materials provided with the distribution. # # #
# * Neither the name of the <copyright holder> nor the names of its contributors # # 1. Redistributions of source code must retain the above copyright notice, this #
# may be used to endorse or promote products derived from this software without # # list of conditions and the following disclaimer. #
# specific prior written permission. # # #
# # # 2. Redistributions in binary form must reproduce the above copyright notice, #
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # # this list of conditions and the following disclaimer in the documentation #
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # # and/or other materials provided with the distribution. #
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. # # #
# IN NO EVENT SHALL INRIA BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, # # 3. Neither the name of the copyright holder nor the names of its #
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF # # contributors may be used to endorse or promote products derived from this #
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # # software without specific prior written permission. #
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, # # #
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" #
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE #
# # # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE #
# Contacts: # # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE #
# Remi Gribonval : remi.gribonval@inria.fr # # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR #
# Hakim Hadj-dji. : hakim.hadj-djilani@inria.fr # # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF #
# # # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR #
# Authors: # # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF #
# Software Engineers: # # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING #
# Nicolas Bellot # # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS #
# Thomas Gautrais, # # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #
# Hakim Hadj-Djilani, # ######################################################################################
# Adrien Leman, #
# #
# Researchers: #
# Luc Le Magoarou, #
# Remi Gribonval #
# #
# INRIA, France #
# http://www.inria.fr/ #
##########################################################################################
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment