From a43db478a314e7e9cf31a324d96c65c121ac03b5 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sat, 28 Jun 2008 16:25:37 +0200 Subject: [PATCH] Add license text to source files --- acl.c | 22 ++++++++++++++++++++++ test/test_acls.py | 20 ++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/acl.c b/acl.c index 9fe0b5e..d22af08 100644 --- a/acl.c +++ b/acl.c @@ -1,3 +1,25 @@ +/* + posix1e - a python module exposing the posix acl functions + + Copyright (C) 2002-2008 Iustin Pop + + 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 2.1 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 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301 USA + +*/ + #include #include diff --git a/test/test_acls.py b/test/test_acls.py index eacd769..635c9b3 100644 --- a/test/test_acls.py +++ b/test/test_acls.py @@ -1,6 +1,26 @@ # # +"""Unittests for the posix1e module""" + +# Copyright (C) 2002-2008 Iustin Pop +# +# 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 2.1 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301 USA + + import unittest import os import tempfile -- 2.39.2