Dato che stai facendo un lavoro derivato su software con licenza GPL, il tuo lavoro combinato dovrebbe essere autorizzato sotto GPL nel suo complesso. Tuttavia, se non vuoi distribuire il tuo lavoro, non sei obbligato a condividere le tue modifiche.
Le Domande frequenti sulla GPL hanno questo su come mantenere le tue modifiche private :
Does the GPL require that source code of modified versions be posted to the public?
The GPL does not require you to release your modified version, or any part of it. You are free to make modifications and use them privately, without ever releasing them...
But if you release the modified version to the public in some way, the GPL requires you to make the modified source code available to the program's users, under the GPL.
Thus, the GPL gives permission to release the modified program in certain ways, and not in other ways; but the decision of whether to release it is up to you.
Pertanto, non sei obbligato a rendere pubblico il tuo programma modificato, ma tu se fai, devi condividerlo sotto GPL.
Forse sei anche preoccupato che la condivisione dei tuoi calendari di output ti costringerà a condividere il tuo codice modificato. Le FAQ spiegano che i dati di output prodotti da un lavoro con licenza GPL sono non coperti da la GPL , a meno che l'output non contenga materiale con licenza GPL (ad esempio, se parte del programma con licenza GPL è inclusa nell'output del programma):
Is there some way that I can GPL the output people get from use of my program? For example, if my program is used to develop hardware designs, can I require that these designs must be free?
In general this is legally impossible; copyright law does not give you any say in the use of the output people make from their data using your program. If the user uses your program to enter or convert his own data, the copyright on the output belongs to him, not you. More generally, when a program translates its input into some other form, the copyright status of the output inherits that of the input it was generated from.
So the only way you have a say in the use of the output is if substantial parts of the output are copied (more or less) from text in your program. For instance, part of the output of Bison (see above) would be covered by the GNU GPL, if we had not made an exception in this specific case.
In what cases is the output of a GPL program covered by the GPL too?
Only when the program copies part of itself into the output.
Quindi, il tuo output non è probabilmente con licenza GPL. Si noti che anche in alcuni casi insoliti in cui l'output è in qualche modo con licenza GPL (come una grammatica Bison), l'output è un lavoro separato dal programma che lo ha creato. Dovresti obbedire alle restrizioni GPL sull'output, ma condividere l'output con licenza GPL non significa che devi condividere le modifiche sul programma licenziato GPL che ha creato quell'output. La GPL sul programma ha effetto solo quando il programma stesso viene distribuito, non quando il suo output è distribuito.