• [^] # Re: Les dangers de la license BSD sont bien pires que ceux de la GNU GPL

    Posté par (site web personnel) . En réponse à la dépêche La version 2.0 de DragonFlyBSD est disponible. Évalué à 6.

    Perso, si on m'affirme sérieusement que je peux forker openssh, virer les licences BSD et tout passer à partir de se point en GPL... mmmmh...

    Non, tu n'as pas le droit d'enlever les licences, mais tu peux mettre la GPL par dessus, et comme la BSD est inclue dans la GPL, ca devient GPL.

    Ensuite, on peut te faire remarquer qu'il faut qu'il y aie une modification pour rajouter la GPL au dessus. Donc en gros, ton code serait comme ca :


    /*
    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <name of author>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License along
    with this program; if not, write to the Free Software Foundation, Inc.,
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
    */

    /* This file is derivated from an ISC licenced one : */

    /*
    Copyright (c) Year(s), Company or Person's Name <E-mail address>

    Permission to use, copy, modify, and/or distribute this software for any
    purpose with or without fee is hereby granted, provided that the above
    copyright notice and this permission notice appear in all copies.

    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
    */

    La licence, dans la globalité du logiciel, serait alors la GPL, avec des bouts de code BSD dedans. Il me semble qu'il y a des bouts de code BSD comme ca dans des projet GNU. Je crois que le Hurd est l'un d'eux.

    Bah... dans l'autre sens on a bien re-écrit openssl en GNUTLS... ct plus délicat que readline.... mais ça a été fait...

    openssl a été réécrit en GNUTLS pas pour enlever une dépendance en BSD, mais parce que la GPL t'impose d'utiliser des outils soit livré avec le système, soit compatible GPL. La licence d'openssl n'est pas compatible GPL. C'est donc à cause de cette restriction de la GPL que la GNUTLS a du être écrite.