From aa2faf159ce1e320259f52188ed5cd09d4fe0d43 Mon Sep 17 00:00:00 2001 From: tastytea Date: Fri, 3 Jan 2020 07:36:44 +0100 Subject: [PATCH] Move copyright notices to snippets. --- auto-insert/cpp | 16 ---------------- auto-insert/hpp | 16 ---------------- snippets/c++-mode/AGPL | 20 ++++++++++++++++++++ snippets/c++-mode/GPL | 20 ++++++++++++++++++++ 4 files changed, 40 insertions(+), 32 deletions(-) create mode 100644 snippets/c++-mode/AGPL create mode 100644 snippets/c++-mode/GPL diff --git a/auto-insert/cpp b/auto-insert/cpp index 9a573d2..65add26 100644 --- a/auto-insert/cpp +++ b/auto-insert/cpp @@ -1,19 +1,3 @@ -/* This file is part of `(projectile-project-name)`. - * Copyright © `(format-time-string "%Y")` `user-full-name` <`user-mail-address`> - * - * 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, version 3. - * - * 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 . - */ - #include "`(file-name-nondirectory (file-name-sans-extension (buffer-file-name)))`.hpp" namespace ${1:`(projectile-project-name)`} diff --git a/auto-insert/hpp b/auto-insert/hpp index 2369ab5..8a32a9b 100644 --- a/auto-insert/hpp +++ b/auto-insert/hpp @@ -1,19 +1,3 @@ -/* This file is part of `(projectile-project-name)`. - * Copyright © `(format-time-string "%Y")` `user-full-name` <`user-mail-address`> - * - * 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, version 3. - * - * 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 . - */ - #ifndef ${1:`(upcase (replace-regexp-in-string "-" "_" (projectile-project-name)))`_`(upcase (file-name-nondirectory (file-name-sans-extension (buffer-file-name))))`_`(upcase (file-name-extension (buffer-file-name)))`} #define $1 diff --git a/snippets/c++-mode/AGPL b/snippets/c++-mode/AGPL new file mode 100644 index 0000000..37fb8fa --- /dev/null +++ b/snippets/c++-mode/AGPL @@ -0,0 +1,20 @@ +# -*- mode: snippet -*- +# name: AGPL +# key: AGPL +# -- +/* This file is part of `(projectile-project-name)`. + * Copyright © `(format-time-string "%Y")` `user-full-name` <`user-mail-address`> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, version 3. + * + * 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + $0 \ No newline at end of file diff --git a/snippets/c++-mode/GPL b/snippets/c++-mode/GPL new file mode 100644 index 0000000..65bf6f6 --- /dev/null +++ b/snippets/c++-mode/GPL @@ -0,0 +1,20 @@ +# -*- mode: snippet -*- +# name: GPL +# key: GPL +# -- +/* This file is part of `(projectile-project-name)`. + * Copyright © `(format-time-string "%Y")` `user-full-name` <`user-mail-address`> + * + * 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, version 3. + * + * 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 . + */ + $0 \ No newline at end of file