From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9B1FD138202 for ; Wed, 11 Sep 2013 14:50:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B29B7E079E; Wed, 11 Sep 2013 14:50:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0789DE079E for ; Wed, 11 Sep 2013 14:50:25 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AA48333DA7E for ; Wed, 11 Sep 2013 14:50:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5FC5FE468F for ; Wed, 11 Sep 2013 14:50:23 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1378904978.b33e905caa08f4912c5ecc1813da659688513497.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/setupscript/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/setupscript/__init__.py roverlay/setupscript/baseenv.py roverlay/setupscript/hookenv.py roverlay/setupscript/initenv.py roverlay/setupscript/runtime.py X-VCS-Directories: roverlay/setupscript/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: b33e905caa08f4912c5ecc1813da659688513497 X-VCS-Branch: master Date: Wed, 11 Sep 2013 14:50:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 759521cd-ecb4-4071-a610-f5bc99702122 X-Archives-Hash: c2c37a077b29df24bd9f45250946b3a7 commit: b33e905caa08f4912c5ecc1813da659688513497 Author: André Erdmann mailerd de> AuthorDate: Wed Sep 11 13:09:38 2013 +0000 Commit: André Erdmann mailerd de> CommitDate: Wed Sep 11 13:09:38 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=b33e905c add copyright note to roverlay/setupscript/*.py --- roverlay/setupscript/__init__.py | 3 +++ roverlay/setupscript/baseenv.py | 3 +++ roverlay/setupscript/hookenv.py | 3 +++ roverlay/setupscript/initenv.py | 4 ++++ roverlay/setupscript/runtime.py | 3 +++ 5 files changed, 16 insertions(+) diff --git a/roverlay/setupscript/__init__.py b/roverlay/setupscript/__init__.py index 740a69c..874cd6a 100644 --- a/roverlay/setupscript/__init__.py +++ b/roverlay/setupscript/__init__.py @@ -1,2 +1,5 @@ # R overlay -- setup script # -*- coding: utf-8 -*- +# Copyright (C) 2013 André Erdmann +# Distributed under the terms of the GNU General Public License; +# either version 2 of the License, or (at your option) any later version. diff --git a/roverlay/setupscript/baseenv.py b/roverlay/setupscript/baseenv.py index 349d077..eb05764 100644 --- a/roverlay/setupscript/baseenv.py +++ b/roverlay/setupscript/baseenv.py @@ -1,5 +1,8 @@ # R overlay -- setup script, base env # -*- coding: utf-8 -*- +# Copyright (C) 2013 André Erdmann +# Distributed under the terms of the GNU General Public License; +# either version 2 of the License, or (at your option) any later version. class SetupSubEnvironment ( object ): diff --git a/roverlay/setupscript/hookenv.py b/roverlay/setupscript/hookenv.py index 9c5fedb..e07b4e7 100644 --- a/roverlay/setupscript/hookenv.py +++ b/roverlay/setupscript/hookenv.py @@ -1,5 +1,8 @@ # R overlay -- setup script, env for managing hooks # -*- coding: utf-8 -*- +# Copyright (C) 2013 André Erdmann +# Distributed under the terms of the GNU General Public License; +# either version 2 of the License, or (at your option) any later version. import collections import errno diff --git a/roverlay/setupscript/initenv.py b/roverlay/setupscript/initenv.py index f07953a..febe39e 100644 --- a/roverlay/setupscript/initenv.py +++ b/roverlay/setupscript/initenv.py @@ -1,5 +1,8 @@ # R overlay -- setup script, env for the "init" command # -*- coding: utf-8 -*- +# Copyright (C) 2013 André Erdmann +# Distributed under the terms of the GNU General Public License; +# either version 2 of the License, or (at your option) any later version. import os import textwrap @@ -17,6 +20,7 @@ class SetupInitEnvironment ( roverlay.setupscript.baseenv.SetupSubEnvironment ): + # ( action_name, can_be_skipped ) ACTIONS = ( ( 'pretend', False ), ( 'prepare_config_file', False ), diff --git a/roverlay/setupscript/runtime.py b/roverlay/setupscript/runtime.py index 9ba3eec..e094951 100644 --- a/roverlay/setupscript/runtime.py +++ b/roverlay/setupscript/runtime.py @@ -1,5 +1,8 @@ # R overlay -- setup script, runtime # -*- coding: utf-8 -*- +# Copyright (C) 2013 André Erdmann +# Distributed under the terms of the GNU General Public License; +# either version 2 of the License, or (at your option) any later version. from __future__ import print_function