2022-02-14 23:26:32 +08:00
|
|
|
# Copyright constant for Python code to use.
|
|
|
|
#
|
2024-01-12 23:30:44 +08:00
|
|
|
# Copyright (C) 2022-2024 Free Software Foundation, Inc.
|
2022-02-14 23:26:32 +08:00
|
|
|
#
|
|
|
|
# This file is part of GDB.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2022-03-18 23:38:22 +08:00
|
|
|
|
2023-02-27 09:14:00 +08:00
|
|
|
def copyright(tool: str, description: str):
|
2022-02-14 23:26:32 +08:00
|
|
|
# Search the tool source itself for the correct copyright years.
|
2022-03-18 23:38:22 +08:00
|
|
|
with open(tool, "r") as f:
|
2022-02-14 23:26:32 +08:00
|
|
|
for line in f:
|
2022-03-18 23:38:22 +08:00
|
|
|
if line.startswith("# Copyright (C) "):
|
2022-02-14 23:26:32 +08:00
|
|
|
dateline = line[1:].strip()
|
|
|
|
break
|
2023-02-09 02:26:24 +08:00
|
|
|
return f"""/* THIS FILE IS GENERATED -*- buffer-read-only: t -*- */
|
2022-02-14 23:26:32 +08:00
|
|
|
/* vi:set ro: */
|
|
|
|
|
|
|
|
/* {description}
|
|
|
|
|
|
|
|
{dateline}
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
/* To regenerate this file, run:
|
|
|
|
./{tool}
|
2023-07-28 01:32:38 +08:00
|
|
|
*/"""
|