From: alex Date: Sat, 5 Oct 2024 09:47:38 +0000 (+0200) Subject: Remove step which is now automated X-Git-Tag: 20241020-emacs~34 X-Git-Url: https://xn--ix-yja.es/gitweb/?a=commitdiff_plain;h=e039dbcf0ffe6c8ca0154b73861dabc060be2362;p=alex.git Remove step which is now automated --- diff --git a/scripts/p7s/emacs.py b/scripts/p7s/emacs.py index d158afb..9342888 100644 --- a/scripts/p7s/emacs.py +++ b/scripts/p7s/emacs.py @@ -10,11 +10,3 @@ def setup_emacs(): subprocess.run(["ln", "-s", (pathlib.Path(__file__).parent.parent.parent / "emacs" / "emacs.bash").absolute(), p7s.BASHRC_D / "emacs.bash"], check=True) (pathlib.Path.home() / ".emacs").unlink(missing_ok=True) subprocess.run(["ln", "-s", (pathlib.Path(__file__).parent.parent.parent / "emacs" / "emacs.el").absolute(), pathlib.Path.home() / ".emacs"], check=True) - - print(textwrap.dedent(""" - On Debian Bookworm, create /etc/apt/preferences.d/emacs with: - - Package: emacs-* - Pin: release a=stable-backports - Pin-Priority: 500 - """).lstrip())