From: root Date: Tue, 28 Aug 2018 11:33:30 +0000 (+0200) Subject: committing changes in /etc after apt run X-Git-Url: https://git.hoellein.online/?a=commitdiff_plain;h=b19f510fca33f778487d7237ec2de3d910998fd9;p=zenbook committing changes in /etc after apt run Package changes: +cmake 3.10.2-1ubuntu2 amd64 +cmake-data 3.10.2-1ubuntu2 all +libjsoncpp1 1.7.4-3 amd64 +librhash0 1.3.6-2 amd64 --- diff --git a/.etckeeper b/.etckeeper index e7c1d26..6df8391 100755 --- a/.etckeeper +++ b/.etckeeper @@ -1326,6 +1326,7 @@ maybe chmod 0755 'emacs' maybe chmod 0755 'emacs/site-start.d' maybe chmod 0644 'emacs/site-start.d/00debian-vars.el' maybe chmod 0644 'emacs/site-start.d/50autoconf.el' +maybe chmod 0644 'emacs/site-start.d/50cmake-data.el' maybe chmod 0644 'emacs/site-start.d/50dictionaries-common.el' maybe chmod 0644 'emacs/site-start.el' maybe chmod 0644 'environment' diff --git a/emacs/site-start.d/50cmake-data.el b/emacs/site-start.d/50cmake-data.el new file mode 100644 index 0000000..96fa7ba --- /dev/null +++ b/emacs/site-start.d/50cmake-data.el @@ -0,0 +1,15 @@ +;; -*-emacs-lisp-*- +;; +;; Emacs startup file for the Debian GNU/Linux cmake package + +(if (file-exists-p "/usr/share/emacs/site-lisp/cmake-mode.el") + (progn + (debian-pkg-add-load-path-item (concat "/usr/share/" + (symbol-name debian-emacs-flavor) + "/site-lisp/cmake-data")) + (autoload 'cmake-mode "cmake-mode") + (setq auto-mode-alist + (append '(("CMakeLists\\.txt\\'" . cmake-mode) + ("\\.cmake\\'" . cmake-mode)) + auto-mode-alist))) + (message "cmake-data removed but not purged, skipping setup"))