From: mhoellein Date: Fri, 7 Sep 2018 18:23:01 +0000 (+0200) Subject: committing changes in /etc after apt run X-Git-Url: https://git.hoellein.online/?a=commitdiff_plain;h=e1132fe7a3cbb7e3399dc724aba71ecc86c154d6;p=homeserver committing changes in /etc after apt run Package changes: +autoconf 2.69-6 +automake 1:1.14.1-2ubuntu1 +autotools-dev 20130810.1 +libtool 2.4.2-1.7ubuntu1 --- diff --git a/.etckeeper b/.etckeeper index ba70a37c..8de519fd 100755 --- a/.etckeeper +++ b/.etckeeper @@ -1752,6 +1752,7 @@ maybe chmod 0644 './dpkg/shlibs.override' maybe chmod 0644 './drirc' maybe chmod 0755 './emacs' maybe chmod 0755 './emacs/site-start.d' +maybe chmod 0644 './emacs/site-start.d/50autoconf.el' maybe chmod 0644 './emacs/site-start.d/50dictionaries-common.el' maybe chmod 0644 './environment' maybe chmod 0755 './esound' diff --git a/alternatives/aclocal b/alternatives/aclocal new file mode 120000 index 00000000..2ce539e2 --- /dev/null +++ b/alternatives/aclocal @@ -0,0 +1 @@ +/usr/bin/aclocal-1.14 \ No newline at end of file diff --git a/alternatives/aclocal.1.gz b/alternatives/aclocal.1.gz new file mode 120000 index 00000000..ddec9080 --- /dev/null +++ b/alternatives/aclocal.1.gz @@ -0,0 +1 @@ +/usr/share/man/man1/aclocal-1.14.1.gz \ No newline at end of file diff --git a/alternatives/automake b/alternatives/automake new file mode 120000 index 00000000..fc415016 --- /dev/null +++ b/alternatives/automake @@ -0,0 +1 @@ +/usr/bin/automake-1.14 \ No newline at end of file diff --git a/alternatives/automake.1.gz b/alternatives/automake.1.gz new file mode 120000 index 00000000..a53f8db5 --- /dev/null +++ b/alternatives/automake.1.gz @@ -0,0 +1 @@ +/usr/share/man/man1/automake-1.14.1.gz \ No newline at end of file diff --git a/emacs/site-start.d/50autoconf.el b/emacs/site-start.d/50autoconf.el new file mode 100644 index 00000000..359eaabf --- /dev/null +++ b/emacs/site-start.d/50autoconf.el @@ -0,0 +1,17 @@ +;; -*-emacs-lisp-*- +;; +;; Emacs startup file for the Debian GNU/Linux autoconf package + +(if (not (file-exists-p "/usr/share/emacs/site-lisp/autoconf")) + (message "Package autoconf removed but not purged. Skipping setup.") + ;; To avoid a dependency on emacsen for our modes and avoid having a + ;; separate autoconf-el package, we don't byte-compile the .el + ;; files, so we only need to add a source directory to load-path. + (debian-pkg-add-load-path-item + (concat "/usr/share/emacs/site-lisp/autoconf")) + + ;; autoloads for autotest-mode.el + (autoload 'autotest-mode "autotest-mode" + "Major mode for editing autotest files." t) + (setq auto-mode-alist + (cons '("\\.at\\'" . autotest-mode) auto-mode-alist)))