diff options
author | Florian Schmaus <flow@gentoo.org> | 2023-11-17 08:55:39 +0100 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2023-11-17 08:56:05 +0100 |
commit | 596a444b7e25d5716d2c4c5579b61b95647eb116 (patch) | |
tree | ce636bfb141b78e3e32f1a5b086b29908e49f73f | |
parent | Rename bin/java-config-2 → bin/java-config (diff) | |
download | java-config-596a444b7e25d5716d2c4c5579b61b95647eb116.tar.gz java-config-596a444b7e25d5716d2c4c5579b61b95647eb116.tar.bz2 java-config-596a444b7e25d5716d2c4c5579b61b95647eb116.zip |
Update copyright header and other minor text updates
Signed-off-by: Florian Schmaus <flow@gentoo.org>
-rwxr-xr-x | src/depend-java-query | 2 | ||||
-rwxr-xr-x | src/gjl | 2 | ||||
-rwxr-xr-x | src/java-config | 6 | ||||
-rw-r--r-- | src/java_config_2/EnvironmentManager.py | 4 | ||||
-rw-r--r-- | src/java_config_2/Errors.py | 6 | ||||
-rw-r--r-- | src/java_config_2/FileParser.py | 4 | ||||
-rw-r--r-- | src/java_config_2/OutputFormatter.py | 4 | ||||
-rw-r--r-- | src/java_config_2/Package.py | 4 | ||||
-rw-r--r-- | src/java_config_2/VM.py | 6 | ||||
-rw-r--r-- | src/java_config_2/VersionManager.py | 4 | ||||
-rw-r--r-- | src/java_config_2/Virtual.py | 5 |
11 files changed, 23 insertions, 24 deletions
diff --git a/src/depend-java-query b/src/depend-java-query index 394b7e3..f1feefa 100755 --- a/src/depend-java-query +++ b/src/depend-java-query @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- -# Copyright 2004-2013 Gentoo Foundation +# Copyright 2004-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 from java_config_2.OutputFormatter import OutputFormatter @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- -# Copyright 2004-2013 Gentoo Foundation +# Copyright 2004-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 from java_config_2.OutputFormatter import * diff --git a/src/java-config b/src/java-config index 3f140b8..5914de4 100755 --- a/src/java-config +++ b/src/java-config @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- -# Copyright 2004-2018 Gentoo Authors +# Copyright 2004-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 from java_config_2.OutputFormatter import OutputFormatter @@ -190,9 +190,9 @@ if __name__ == '__main__': usage = f"""java-config [options] Java Configuration Utility Version {java_config_2.version} -Copyright 2004-2013 Gentoo Foundation +Copyright 2004-2023 Gentoo Authors Distributed under the terms of the GNU General Public License v2 -Please contact the Gentoo Java Herd <java@gentoo.org> with problems.""" +Please contact the Gentoo Java Project <java@gentoo.org> with problems.""" parser = OptionParser(usage) parser.add_option("-V", "--version", diff --git a/src/java_config_2/EnvironmentManager.py b/src/java_config_2/EnvironmentManager.py index 9e64e4e..a862a04 100644 --- a/src/java_config_2/EnvironmentManager.py +++ b/src/java_config_2/EnvironmentManager.py @@ -1,5 +1,5 @@ -# -*- coding: UTF-8 -*- -# Copyright 2004-2013 Gentoo Foundation +# -*- coding: utf-8 -*- +# Copyright 2004-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 from .OutputFormatter import * diff --git a/src/java_config_2/Errors.py b/src/java_config_2/Errors.py index 0d0798b..940ebb0 100644 --- a/src/java_config_2/Errors.py +++ b/src/java_config_2/Errors.py @@ -1,5 +1,5 @@ -# -*- coding: UTF-8 -*- -# Copyright 2004-2013 Gentoo Foundation +# -*- coding: utf-8 -*- +# Copyright 2004-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 @@ -51,4 +51,4 @@ class UnexistingPackageError(Exception): def __str__(self): return "Package %s was not found!" % self.package -# vim:set expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap:
\ No newline at end of file +# vim:set expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap: diff --git a/src/java_config_2/FileParser.py b/src/java_config_2/FileParser.py index 1590034..adc6aba 100644 --- a/src/java_config_2/FileParser.py +++ b/src/java_config_2/FileParser.py @@ -1,5 +1,5 @@ -# -*- coding: UTF-8 -*- -# Copyright 2004-2013 Gentoo Foundation +# -*- coding: utf-8 -*- +# Copyright 2004-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 diff --git a/src/java_config_2/OutputFormatter.py b/src/java_config_2/OutputFormatter.py index 0d3da81..fffd751 100644 --- a/src/java_config_2/OutputFormatter.py +++ b/src/java_config_2/OutputFormatter.py @@ -1,5 +1,5 @@ -# -*- coding: UTF-8 -*- -# Copyright 2004-2013 Gentoo Foundation +# -*- coding: utf-8 -*- +# Copyright 2004-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 import sys diff --git a/src/java_config_2/Package.py b/src/java_config_2/Package.py index 83c8c89..6328efa 100644 --- a/src/java_config_2/Package.py +++ b/src/java_config_2/Package.py @@ -1,5 +1,5 @@ -# -*- coding: UTF-8 -*- -# Copyright 2004-2013 Gentoo Foundation +# -*- coding: utf-8 -*- +# Copyright 2004-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 from .FileParser import * diff --git a/src/java_config_2/VM.py b/src/java_config_2/VM.py index c0c5ec5..4efbee5 100644 --- a/src/java_config_2/VM.py +++ b/src/java_config_2/VM.py @@ -1,5 +1,5 @@ -# -*- coding: UTF-8 -*- -# Copyright 2004-2013 Gentoo Foundation +# -*- coding: utf-8 -*- +# Copyright 2004-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 from .FileParser import * @@ -98,4 +98,4 @@ class VM: raise PermissionError return None -# vim:set expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap:
\ No newline at end of file +# vim:set expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap: diff --git a/src/java_config_2/VersionManager.py b/src/java_config_2/VersionManager.py index a876f02..0fdfe67 100644 --- a/src/java_config_2/VersionManager.py +++ b/src/java_config_2/VersionManager.py @@ -1,7 +1,7 @@ -# -*- coding: UTF-8 -*- +# -*- coding: utf-8 -*- # vim:set expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap: -# Copyright 2005-2013 Gentoo Foundation +# Copyright 2005-2023 Gentoo Authors # Distributed under the terms of the GNU General Public license v2 from . import VM, Errors diff --git a/src/java_config_2/Virtual.py b/src/java_config_2/Virtual.py index 0365c22..bc1aba0 100644 --- a/src/java_config_2/Virtual.py +++ b/src/java_config_2/Virtual.py @@ -1,8 +1,7 @@ -# -*- coding: UTF-8 -*- +# -*- coding: utf-8 -*- -# Copyright 2004-2013 Gentoo Foundation +# Copyright 2004-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# $Header: $ from java_config_2.FileParser import * |