melpa/migrate

34 lines
844 B
Text
Raw Permalink Normal View History

#!/bin/sh
:;exec emacs --script "$0" "$@"
2012-01-21 20:05:09 +00:00
(defun read-from-file (file-name)
"read one lisp expression from a file"
(cond
((file-exists-p file-name)
(with-temp-buffer
(insert-file-contents-literally file-name)
(goto-char (point-min))
(car
(read-from-string
(buffer-substring-no-properties (point-min) (point-max))))))))
(message (prin1-to-string command-line-args-left))
2012-01-21 20:28:34 +00:00
(defun process-one (file-name)
(let ((config
(read-from-file
(expand-file-name ".config" (expand-file-name file-name "epkgs")))))
2012-01-21 20:05:09 +00:00
(princ
(pp-to-string
(cons
(intern file-name)
(plist-put
(plist-put
nil
2012-01-21 20:05:09 +00:00
:url
(plist-get config :url))
:fetcher
(plist-get config :fetcher)))
))))
2012-01-21 20:28:34 +00:00
(mapc 'process-one command-line-args-left)