From 4a0d29b395616f7fccafa9ce7ade6e16632d9a47 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Fri, 23 Aug 2024 09:01:28 +0200 Subject: [PATCH] automatically include contributors --- Makefile | 7 ++--- README.org | 56 ++++++++++++++++++++++++++++++++++++ README.rst | 67 -------------------------------------------- doc/README.org | 61 ++++++++++++++++++++++++++++++++++++++++ doc/contributors.txt | 15 ++++++++++ 5 files changed, 135 insertions(+), 71 deletions(-) create mode 100644 README.org delete mode 100644 README.rst create mode 100644 doc/README.org create mode 100644 doc/contributors.txt diff --git a/Makefile b/Makefile index bac39cc..3339d45 100644 --- a/Makefile +++ b/Makefile @@ -49,11 +49,10 @@ _jenkinsfile_sh: ### # Will need to edit this -_contributors: +doc/contributors.txt: *.el *.org @git log --format='- %an' HEAD^@ | \ - sort | \ - grep -v -e 'harley gorrell' -e 'jenkins-bot' -e 'jhgorrell' | \ - uniq + sort -u | \ + grep -v -e 'harley gorrell' -e 'jenkins-bot' -e 'jhgorrell' > $@ ### diff --git a/README.org b/README.org new file mode 100644 index 0000000..f6d7533 --- /dev/null +++ b/README.org @@ -0,0 +1,56 @@ +#+options: author:nil date:nil timestamp:nil +#+title: ssh-config support for Emacs +#+export: org-org-export-to-org +#+export_file_name: ../README.org +* ssh-config-mode-el/README +[[https://melpa.org/#/ssh-config-mode][[[https://melpa.org/#/ssh-config-mode][file:https://melpa.org/packages/ssh-config-mode-badge.svg]]]] +[[https://github.com/jhgorrell/ssh-config-mode-el/actions/workflows/10-run-tests.yml][[[https://github.com/peterhoeg/ssh-config-mode-el/actions][file:https://github.com/peterhoeg/ssh-config-mode-el/actions/workflows/10-run-tests.yml/badge.svg]]]] + +A mode to edit SSH config files. + +It does the following: + +- Fontifys the SSH config keywords. +- Keys for skipping from host section to host section. +- Indentation of configuration found in the following locations: + +#+begin_example +.ssh/config +sshd?_config +known_hosts +authorized_keys2? +#+end_example + +If you have a SSH config file that you'd like to use this mode on +automatically, add this line as the first one in the file: + +#+begin_src elisp +# -*- mode: ssh-config -*- +#+end_src + +Or add somthing like this to your init file: + +#+begin_src elisp +(add-to-list 'auto-mode-alist '("/path-to-your-ssh/config\\'" . ssh-config-mode)) +#+end_src +** Links +- [[https://github.com/peterhoeg/ssh-config-mode-el]] +- [[https://github.com/openssh/openssh-portable]] +** License +=ssh-config-mode-el= is distributed under the [[https://www.gnu.org/licenses/gpl-3.0.txt][GPL-3.0]] (or any later version.) +** Contributors +- Eder Elorriaga +- Harley Gorrell +- Heinz Deinhart +- iory +- John Mastro +- Masahiro Hayashi +- Matthew Weaver +- Peter Hoeg +- Peter Oliver +- Sharif Nassar +- Ted Carnahan +- USAMI Kenta +- Ville Skyttä +- Wieland Hoffmann +- Александар Симић diff --git a/README.rst b/README.rst deleted file mode 100644 index 08e6be8..0000000 --- a/README.rst +++ /dev/null @@ -1,67 +0,0 @@ -ssh-config-mode-el/README -================================================== - -.. image:: https://melpa.org/packages/ssh-config-mode-badge.svg - :target: https://melpa.org/#/ssh-config-mode - -.. image:: https://github.com/peterhoeg/ssh-config-mode-el/actions/workflows/10-run-tests.yml/badge.svg - :target: https://github.com/peterhoeg/ssh-config-mode-el/actions/workflows/10-run-tests.yml - -A mode to edit SSH config files. - -It does the following: - -- Fontifys the SSH config keywords. -- Keys for skipping from host section to host section. -- Indentation of configuration found in the following locations: - -:: - - .ssh/config - sshd?_config - known_hosts - authorized_keys2? - -If you have a SSH config file that you'd like to use this -mode on automatically, add this line as the first one in the file: - -:: - - # -*- mode: ssh-config -*- - -Or add somthing like this to your init file: - -:: - - (add-to-list 'auto-mode-alist '("/path-to-your-ssh/config\\'" . ssh-config-mode)) - -Links ----------------------------------------- - -- https://github.com/peterhoeg/ssh-config-mode-el -- https://github.com/openssh/openssh-portable - - -License ----------------------------------------- - -``ssh-config-mode-el`` is distributed under the -`GPL-3.0 `_ -(or any later version.) - -Contributors --------------------------------------------------- - -- Harley Gorrell -- John Mastro -- Masahiro Hayashi -- Matthew Weaver -- Sharif Nassar -- Ted Carnahan -- USAMI Kenta -- Wieland Hoffmann -- iory -- Александар Симић -- Andrew Schwartzmeyer -- Eder Elorriaga -- Ville Skyttä diff --git a/doc/README.org b/doc/README.org new file mode 100644 index 0000000..a123e05 --- /dev/null +++ b/doc/README.org @@ -0,0 +1,61 @@ +#+TITLE: ssh-config support for Emacs +#+OPTIONS: author:nil date:nil timestamp:nil +#+EXPORT: org-org-export-to-org +#+EXPORT_FILE_NAME: ../README.org + +* ssh-config-mode-el/README +:PROPERTIES: +:CUSTOM_ID: ssh-config-mode-elreadme +:END: +[[https://melpa.org/#/ssh-config-mode][[[https://melpa.org/#/ssh-config-mode][file:https://melpa.org/packages/ssh-config-mode-badge.svg]]]] +[[https://github.com/jhgorrell/ssh-config-mode-el/actions/workflows/10-run-tests.yml][[[https://github.com/peterhoeg/ssh-config-mode-el/actions][file:https://github.com/peterhoeg/ssh-config-mode-el/actions/workflows/10-run-tests.yml/badge.svg]]]] + +A mode to edit SSH config files. + +It does the following: + +- Fontifys the SSH config keywords. +- Keys for skipping from host section to host section. +- Indentation of configuration found in the following locations: + +#+begin_example +.ssh/config +sshd?_config +known_hosts +authorized_keys2? +#+end_example + +If you have a SSH config file that you'd like to use this mode on +automatically, add this line as the first one in the file: + +#+begin_src elisp +# -*- mode: ssh-config -*- +#+end_src + +Or add somthing like this to your init file: + +#+begin_src elisp +(add-to-list 'auto-mode-alist '("/path-to-your-ssh/config\\'" . ssh-config-mode)) +#+end_src + +** Links +:PROPERTIES: +:CUSTOM_ID: links +:END: + +- [[https://github.com/peterhoeg/ssh-config-mode-el]] +- [[https://github.com/openssh/openssh-portable]] + +** License +:PROPERTIES: +:CUSTOM_ID: license +:END: + +=ssh-config-mode-el= is distributed under the [[https://www.gnu.org/licenses/gpl-3.0.txt][GPL-3.0]] (or any later version.) + +** Contributors +:PROPERTIES: +:CUSTOM_ID: contributors +:END: + +#+INCLUDE: contributors.txt diff --git a/doc/contributors.txt b/doc/contributors.txt new file mode 100644 index 0000000..b84084f --- /dev/null +++ b/doc/contributors.txt @@ -0,0 +1,15 @@ +- Eder Elorriaga +- Harley Gorrell +- Heinz Deinhart +- iory +- John Mastro +- Masahiro Hayashi +- Matthew Weaver +- Peter Hoeg +- Peter Oliver +- Sharif Nassar +- Ted Carnahan +- USAMI Kenta +- Ville Skyttä +- Wieland Hoffmann +- Александар Симић