]> git.hoellein.online Git - homeserver/commitdiff
committing changes in /etc after apt run
authormhoellein <mhoellein@freenet.de>
Fri, 7 Sep 2018 18:23:01 +0000 (20:23 +0200)
committermhoellein <mhoellein@freenet.de>
Fri, 7 Sep 2018 18:23:01 +0000 (20:23 +0200)
Package changes:
+autoconf 2.69-6
+automake 1:1.14.1-2ubuntu1
+autotools-dev 20130810.1
+libtool 2.4.2-1.7ubuntu1

.etckeeper
alternatives/aclocal [new symlink]
alternatives/aclocal.1.gz [new symlink]
alternatives/automake [new symlink]
alternatives/automake.1.gz [new symlink]
emacs/site-start.d/50autoconf.el [new file with mode: 0644]

index ba70a37c457e0d87a84ae15e81cdde22a8409801..8de519fdee84f4dba283eebf74b0a0f515cb0a81 100755 (executable)
@@ -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 (symlink)
index 0000000..2ce539e
--- /dev/null
@@ -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 (symlink)
index 0000000..ddec908
--- /dev/null
@@ -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 (symlink)
index 0000000..fc41501
--- /dev/null
@@ -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 (symlink)
index 0000000..a53f8db
--- /dev/null
@@ -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 (file)
index 0000000..359eaab
--- /dev/null
@@ -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)))