Function: package--read-archive-file
package--read-archive-file is a byte-compiled function defined in
package.el.gz.
Signature
(package--read-archive-file FILE)
Documentation
Read cached archive FILE data, if it exists.
Return the data from the file, or nil if the file does not exist. If the archive version is too new, signal an error.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/package.el.gz
(defun package--read-archive-file (file)
"Read cached archive FILE data, if it exists.
Return the data from the file, or nil if the file does not exist.
If the archive version is too new, signal an error."
(let ((filename (expand-file-name file package-user-dir)))
(when (file-exists-p filename)
(with-temp-buffer
(let ((coding-system-for-read 'utf-8))
(insert-file-contents filename))
(let ((contents (read (current-buffer))))
(if (> (car contents) package-archive-version)
(error "Package archive version %d is higher than %d"
(car contents) package-archive-version))
(cdr contents))))))