comparison lisp/package-net.el @ 1410:44de306310b8

[xemacs-hg @ 2003-04-14 03:40:26 by youngs] 2003-04-14 Steve Youngs <youngs@xemacs.org> * package-admin.el (package-admin-find-top-directory): Use 'directory-sep-char'. (package-admin-get-install-dir): Ditto. This is so PUI won't break on platforms that don't use '/' as the directory separator. * package-get.el (package-get-pgp-available-p): New. (package-get-require-signed-base-updates): Use it. (package-get-update-base-from-buffer): Move the code that finds the gpg stuff into `package-get-pgp-available-p'. Now if you have Mailcrypt and a PGP binary installed and set up on your system, PUI will automatically default to doing PGP verification, otherwise it'll default to off. (package-get-require-base): Use the DATUM arg to `error'. (package-get-locate-index-file): Ditto. (package-get-update-base): Ditto. (package-get-update-base-entries): Ditto. (package-get-all): Ditto. (package-get-dependencies): Ditto. (package-get-info): Ditto. (package-get): Ditto. * package-info.el (batch-update-package-info): Use the DATUM arg to `error'. * package-net.el (package-net-batch-generate-bin-ini): Use the DATUM arg to `error'. * package-ui.el (pui-toggle-package-key): Use the DATUM arg to `error'. (pui-toggle-package-delete-key): Ditto. (pui-install-selected-packages): Ditto. (pui-add-required-packages): Ditto. (pui-display-info): Ditto. (list-packages-mode): Ditto. * packages.el (package-require): Use the DATUM arg to `error'.
author youngs
date Mon, 14 Apr 2003 03:40:27 +0000
parents a307f9a2021d
children 308d34e9f07d
comparison
equal deleted inserted replaced
1409:d9b958c0f772 1410:44de306310b8
134 (kill-buffer buf))) 134 (kill-buffer buf)))
135 135
136 (defun package-net-batch-generate-bin-ini () 136 (defun package-net-batch-generate-bin-ini ()
137 "Convert the package index to ini file format." 137 "Convert the package index to ini file format."
138 (unless noninteractive 138 (unless noninteractive
139 (error "`package-net-batch-generate-bin-ini' is to be used only with -batch")) 139 (error 'invalid-operation
140 "`package-net-batch-generate-bin-ini' is to be used only with -batch"))
140 (package-net-generate-bin-ini package-net-setup-version)) 141 (package-net-generate-bin-ini package-net-setup-version))
141 142
142 ;;;###autoload 143 ;;;###autoload
143 (defun package-net-update-installed-db (&optional destdir) 144 (defun package-net-update-installed-db (&optional destdir)
144 "Write out the installed package index in a net install suitable format. 145 "Write out the installed package index in a net install suitable format.