unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
* Why has my emacs flyspell aspell stopped working?
@ 2019-01-09  1:23 George Clemmer
  0 siblings, 0 replies; only message in thread
From: George Clemmer @ 2019-01-09  1:23 UTC (permalink / raw)
  To: help-guix

[-- Attachment #1: Type: text/plain, Size: 1673 bytes --]

Hello,

emacs 'm-x flyspell-buffer', which worked great for years, is now doing  ...

Debugger entered--Lisp error: (error "Error: No word lists can be found for the language \"en_US\".")
  signal(error ("Error: No word lists can be found for the language \"en_US\"."))
  error("%s" "Error: No word lists can be found for the language \"en_US\".")
  ispell-init-process()
  ispell-buffer-local-words()
  ispell-accept-buffer-local-defs()
  flyspell-accept-buffer-local-defs()
  flyspell-large-region(1 2524)
  flyspell-region(1 2524)
  flyspell-buffer()
  funcall-interactively(flyspell-buffer)
  call-interactively(flyspell-buffer record nil)
  command-execute(flyspell-buffer record)
  execute-extended-command(nil "flyspell-buffer" "flyspell-b")
  funcall-interactively(execute-extended-command nil "flyspell-buffer" "flyspell-b")
  call-interactively(execute-extended-command nil nil)
  command-execute(execute-extended-command)

I believe it started with a system/user profile update in mid-December.
Naturally I ignored it hoping it would heal up with the next update ;-)

Anyway, I manage the system using Guix from Git. Today I pulled git
describe v0.16.0-629-g6df4d8338 and rebuilt guix. Then I did 'sudo -E
guix system --skip-checks --fallback --cores=7 --max-jobs=10 reconfigure
sys.scm', rebooted, and 'guix package -m .manifest.scm' (where 'guix'
calls a script that runs './pre-ins-env guix'). Sadly, still no joy :-(

FWIW, I get the same error when I use
'/home/glc/.config/guix/current/bin/guix package -m .manifest.scm',
which is guix (GNU Guix) bd208a13ef4c203cf9035c0ccf454a60c1949c58.

Any idea what has changed and/or I am doing wrong?

TIA - George


[-- Attachment #2: sys.scm --]
[-- Type: application/octet-stream, Size: 3481 bytes --]

;; -*-Scheme-*-
;; g1: GuixSD headless server w/ NVMe M.2 SSD root drive
(define sys-packages
  '(
    "cups"
    "emacs-no-x"
    "emacs-guix"
    "emacs-magit"
    "emacs-paredit"
    "freeipmi"
    "git"
    "mdadm"
    "mosh"
    "nss-certs"
    "openssh"
    "qemu"
    "screen"
    "smartmontools"
    ))
(use-modules (gnu)
	     (gnu packages)
	     (gnu system nss))
(use-service-modules
 admin                ; rottlog
 avahi
 networking           ; static, ntp
 ssh                  ; openssh-service-type
 mcron)
(define updatedb-job
  ;; Run 'updatedb' at 3AM every day.
  #~(job '(next-hour '(3))
	 (lambda ()
	   (execl (string-append #$findutils "/bin/updatedb")
		  "updatedb"
		  "--prunepaths=/tmp /var/tmp /gnu/store"))))
(define garbage-collector-job
  ;; Collect garbage 45 minutes after midnight every day.
  #~(job "45 0 * * *"            ;Vixie cron syntax
	 "guix gc -F 1G"))
(define backup-job
  ;; backup ssd 5 minutes after midnight every day.
  #~(job "5 0 * * *"            ;Vixie cron syntax
	 "/root/bin/bussd"))
(define %my-services
  (modify-services %base-services
		   (agetty-service-type config =>
					(agetty-configuration
					 (tty "ttyS1")
					 (baud-rate "115200")
					 (term "xterm-256color")))
		   (guix-service-type
		    config =>
		    (guix-configuration
		     (inherit config)
		     (use-substitutes? #f)
		     (substitute-urls (list "https://mirror.hydra.gnu.org"
					    "https://hydra.gnu.org"
					    "https://berlin.guixsd.org"))
		     (extra-options '("--gc-keep-derivations=yes"
				      "--gc-keep-outputs=yes"
				      "--cores=0" "--max-jobs=10"))
		     ))))
(operating-system
 (host-name "g1")
 (timezone "America/New_York")
 (locale "en_US.utf8")
 (kernel-arguments '("console=ttyS1,115200"))
 ;; NVMe M.2 SSD root drive
 (bootloader (grub-configuration (target "/dev/nvme0n1")
				 (terminal-outputs '(console))
				 (terminal-inputs '(serial console))
				 (serial-speed 115200)
				 ))
 (file-systems (cons (file-system
		      (device (file-system-label "g1NVMe"))
		      (mount-point "/")
		      (type "ext4"))
		     %base-file-systems))
 (swap-devices '("/dev/nvme0n1p2" ))
 (users (cons* (user-account (name "glc")
			     (group "users")
			     (supplementary-groups '("wheel" "kvm"))
			     (home-directory (string-append "/home/" name)))
	       (user-account (name "glc2")
			     (group "users")
			     (supplementary-groups '("wheel" "kvm"))
			     (home-directory (string-append "/home/" name)))
	       %base-user-accounts))
 (packages (append (map specification->package
			sys-packages)
		   %base-packages))
 (services (cons* (static-networking-service
		   "enp3s0" "192.168.1.7"
		   #:gateway "192.168.1.1"
		   #:name-servers '("192.168.1.1" "8.8.8.8"))
		  (service openssh-service-type
			   (openssh-configuration
			    (x11-forwarding? #t)
			    (permit-root-login #t)
			    (authorized-keys
			     `(
			       ("glc" ,(local-file "glc.pub"))
			       ("glc2" ,(local-file "glc.pub"))
			       ("root" ,(local-file "glc.pub"))))))
		  (service rottlog-service-type)
		  (mcron-service (list garbage-collector-job
				       updatedb-job
				       backup-job))
		  (avahi-service)
		  (ntp-service)
		  (service guix-publish-service-type
			   (guix-publish-configuration
			    (host "0.0.0.0")
			    (port 8080)))
		  (extra-special-file "/etc/gen/sys-actual.scm"
				      (local-file "sys.scm"))
		  %my-services))
 (name-service-switch %mdns-host-lookup-nss))

[-- Attachment #3: .manifest.scm --]
[-- Type: application/octet-stream, Size: 1840 bytes --]

;;; This file was produced by /home/glc/.gpm/bin/run
;;; To modify please edit >>> files and do: 'run -u'
;;; View manifest with: 'emacs -f .manifest RET C-c C-b'

(use-modules (gnu packages)
	     (guix profiles)
	     (srfi srfi-1)
	     ((guix ui) #:select (make-user-module)))

(define (combined-manifest-from-manifests . manifests)
  (fold (lambda (mainfest combined)
	  (manifest-add combined
			(manifest-entries mainfest)))
	(manifest '())
	manifests))

(combined-manifest-from-manifests
 (specifications->manifest
  '("make"
    "emacs"
    "emacs-guix"))

;;; >>> /home/glc/.gpm/gmail/manifest.scm
  (specifications->manifest
   '("isync"
     "mu"))

;;; >>> /home/glc/.gpm/gpx/emacs-magit/manifest.scm
  (specifications->manifest
   '("emacs-magit"))

;;; >>> /home/glc/.gpm/gpx/emacs/manifest.scm
  (specifications->manifest
   '("aspell"
     "aspell-dict-en"
     "ghostscript"
     "emacs-with-editor"))

;;; >>> /home/glc/.gpm/gpx/wget/manifest.scm
  (specifications->manifest
   '("wget"))

;;; >>> /home/glc/.gpm/gpx/emacs-graphviz-dot-mode/manifest.scm
  (specifications->manifest
   '("emacs-graphviz-dot-mode"
     "graphviz"))

;;; >>> /home/glc/.gpm/gpx/screen/manifest.scm
  (specifications->manifest
   '("screen"))

;;; >>> /home/glc/.gpm/gpx/git/manifest.scm
  (specifications->manifest
   '("git"))

;;; >>> /home/glc/.gpm/gpx/mu/manifest.scm
  (specifications->manifest
   '("mu"))

;;; >>> /home/glc/.gpm/gpx/emacs-expand-region/manifest.scm
  (specifications->manifest
   '( "emacs-expand-region"
      ))

;;; >>> /home/glc/.gpm/gpx/fonts/manifest.scm
  (specifications->manifest
   '("font-dejavu"))

;;; >>> /home/glc/.gpm/gpx/emacs-ag/manifest.scm
  (specifications->manifest
   '("emacs-ag"))

;;; >>> /home/glc/.gpm/gpx/emacs-paredit/manifest.scm
  (specifications->manifest
   '("emacs-paredit"))
  )

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-01-09  1:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-09  1:23 Why has my emacs flyspell aspell stopped working? George Clemmer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).