mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
Bug 9931: change pytalloc source to LGPL
pytalloc is currently GPL, while the rest of talloc is LGPL.
This situation arose because pytalloc was originally developed under
source4/scripting/python/, and moved into talloc proper with commit
0f043c197c
("Move pytalloc to talloc
directory.", October 2008).
BUG: https://bugzilla.samba.org/show_bug.cgi?id=9931
Signed-off-by: David Disseldorp <ddiss@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Björn Jacke <bjacke@samba.org>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Tue Mar 16 18:17:43 UTC 2021 on sn-devel-184
This commit is contained in:
parent
fb229276e4
commit
f5c8b1aa83
@ -3,18 +3,22 @@
|
|||||||
Python Talloc Module
|
Python Talloc Module
|
||||||
Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2010-2011
|
Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2010-2011
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
** NOTE! The following LGPL license applies to the talloc
|
||||||
it under the terms of the GNU General Public License as published by
|
** library. This does NOT imply that all of Samba is released
|
||||||
the Free Software Foundation; either version 3 of the License, or
|
** under the LGPL
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
This library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 3 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This library is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
GNU General Public License for more details.
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU Lesser General Public
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <Python.h>
|
#include <Python.h>
|
||||||
|
@ -3,18 +3,22 @@
|
|||||||
Samba utility functions
|
Samba utility functions
|
||||||
Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
|
Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
** NOTE! The following LGPL license applies to the talloc
|
||||||
it under the terms of the GNU General Public License as published by
|
** library. This does NOT imply that all of Samba is released
|
||||||
the Free Software Foundation; either version 3 of the License, or
|
** under the LGPL
|
||||||
(at your option) any later version.
|
|
||||||
|
This library is free software; you can redistribute it and/or
|
||||||
This program is distributed in the hope that it will be useful,
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 3 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This library is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
GNU General Public License for more details.
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU Lesser General Public
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _PYTALLOC_H_
|
#ifndef _PYTALLOC_H_
|
||||||
|
@ -3,18 +3,22 @@
|
|||||||
Python/Talloc glue
|
Python/Talloc glue
|
||||||
Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
|
Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
** NOTE! The following LGPL license applies to the talloc
|
||||||
it under the terms of the GNU General Public License as published by
|
** library. This does NOT imply that all of Samba is released
|
||||||
the Free Software Foundation; either version 3 of the License, or
|
** under the LGPL
|
||||||
(at your option) any later version.
|
|
||||||
|
This library is free software; you can redistribute it and/or
|
||||||
This program is distributed in the hope that it will be useful,
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 3 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This library is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
GNU General Public License for more details.
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU Lesser General Public
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <Python.h>
|
#include <Python.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user