aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/depend-java-query2
-rwxr-xr-xsrc/gjl2
-rwxr-xr-xsrc/java-config6
-rw-r--r--src/java_config_2/EnvironmentManager.py4
-rw-r--r--src/java_config_2/Errors.py6
-rw-r--r--src/java_config_2/FileParser.py4
-rw-r--r--src/java_config_2/OutputFormatter.py4
-rw-r--r--src/java_config_2/Package.py4
-rw-r--r--src/java_config_2/VM.py6
-rw-r--r--src/java_config_2/VersionManager.py4
-rw-r--r--src/java_config_2/Virtual.py5
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
diff --git a/src/gjl b/src/gjl
index b5eafbe..cca708a 100755
--- a/src/gjl
+++ b/src/gjl
@@ -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 *