mirror of
https://github.com/correl/melpa.git
synced 2024-11-15 03:00:14 +00:00
110 lines
3.1 KiB
EmacsLisp
110 lines
3.1 KiB
EmacsLisp
;;; melpa.el --- special handling for the MELPA repository
|
|
;;
|
|
;; Copyright 2012 Donald Ephraim Curtis
|
|
;;
|
|
;; Author: Donald Ephraim Curtis <dcurtis@milkbox.net>
|
|
;; URL: https://github.com/milkypostman/melpa
|
|
;; Version: 0.3
|
|
;;
|
|
;;
|
|
;; Credits:
|
|
;; Steve Purcell
|
|
;;
|
|
;;
|
|
;; Installation:
|
|
;;
|
|
;; (progn
|
|
;; (switch-to-buffer
|
|
;; (url-retrieve-synchronously
|
|
;; "https://raw.github.com/milkypostman/melpa/master/melpa.el"))
|
|
;; (package-install-from-buffer (package-buffer-info) 'single))
|
|
;;
|
|
;;
|
|
;;
|
|
;; Code goes here
|
|
;;
|
|
|
|
|
|
;;;###autoload
|
|
(defcustom package-archive-enable-alist nil
|
|
"Optional Alist of enabled packages used by `package-filter'.
|
|
The format is (ARCHIVE . PACKAGE ...), where ARCHIVE is a string
|
|
matching an archive name in `package-archives', PACKAGE is a
|
|
symbol of a package in ARCHIVE to enable.
|
|
|
|
If no ARCHIVE exists in the alist, all packages are enabled."
|
|
:group 'package
|
|
:type '(alist :key-type string :value-type (repeat symbol)))
|
|
|
|
|
|
;;;###autoload
|
|
(defcustom package-archive-exclude-alist nil
|
|
"Alist of packages excluded by `package-filter'.
|
|
The format is (ARCHIVE . PACKAGE ...), where ARCHIVE is a string
|
|
matching an archive name in `package-archives', PACKAGE is a
|
|
symbol of a package in that archive to exclude.
|
|
|
|
Any specified package is excluded regardless of the value of
|
|
`package-archive-enable-alist'"
|
|
:group 'package
|
|
:type '(alist :key-type string :value-type (repeat symbol)))
|
|
|
|
|
|
;;;###autoload
|
|
(defcustom package-filter-function 'package-filter
|
|
"Optional predicate function used to internally
|
|
filter packages used by package.el.
|
|
|
|
Return nil to filter a function from the list.
|
|
|
|
The function is called with the arguments PACKAGE VERSION ARCHIVE, where
|
|
PACKAGE is a symbol, VERSION is a vector as produced by `version-to-list', and
|
|
ARCHIVE is the string name of the package archive."
|
|
:group 'package
|
|
:type 'function)
|
|
|
|
|
|
;;;###autoload
|
|
(defadvice package-compute-transaction
|
|
(before
|
|
package-compute-transaction-reverse (package-list requirements)
|
|
activate compile)
|
|
"reverse the requirements"
|
|
(setq requirements (reverse requirements))
|
|
(print requirements))
|
|
|
|
|
|
;;;###autoload
|
|
(defadvice package--add-to-archive-contents
|
|
(around package-filter-add-to-archive-contents (package archive)
|
|
activate compile)
|
|
"Add filtering of available packages using `package-filter-function',
|
|
if non-nil."
|
|
(when (and package-filter-function
|
|
(funcall package-filter-function
|
|
(car package)
|
|
(package-desc-vers (cdr package))
|
|
archive))
|
|
ad-do-it))
|
|
|
|
|
|
;;;###autoload
|
|
(defun package-filter (package version archive)
|
|
"Check package against enabled and excluded list for the `archive'.
|
|
|
|
Filter packages not in the associated list for `archive' in
|
|
`package-archive-enable-alist'.
|
|
|
|
Filter packages in the associated list for `archive' in
|
|
`package-archive-exclude-alist'."
|
|
(let ((enable-rules (cdr (assoc archive package-archive-enable-alist)))
|
|
(exclude-rules (cdr (assoc archive package-archive-exclude-alist))))
|
|
(and (not (memq package exclude-rules))
|
|
(or (not enable-rules)
|
|
(memq package enable-rules)))))
|
|
|
|
|
|
|
|
(provide 'melpa)
|
|
|
|
;;; melpa.el ends here
|