Mercurial > hg > xemacs-beta
comparison lisp/package-info.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 | abe6d1db359e |
children | 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
1409:d9b958c0f772 | 1410:44de306310b8 |
---|---|
92 requires -- Packages necessary for bytecompiling. | 92 requires -- Packages necessary for bytecompiling. |
93 author-version -- The original Author's version #. | 93 author-version -- The original Author's version #. |
94 maintainer -- The package maintainer. | 94 maintainer -- The package maintainer. |
95 category -- The build category." | 95 category -- The build category." |
96 (unless noninteractive | 96 (unless noninteractive |
97 (error "`batch-update-package-info' is to be used only with -batch")) | 97 (error 'invalid-operation |
98 "`batch-update-package-info' is to be used only with -batch")) | |
98 (let ((version (nth 0 command-line-args-left)) | 99 (let ((version (nth 0 command-line-args-left)) |
99 (filename (nth 1 command-line-args-left)) | 100 (filename (nth 1 command-line-args-left)) |
100 (requires (nth 2 command-line-args-left)) | 101 (requires (nth 2 command-line-args-left)) |
101 (author-version (nth 3 command-line-args-left)) | 102 (author-version (nth 3 command-line-args-left)) |
102 (maintainer (nth 4 command-line-args-left)) | 103 (maintainer (nth 4 command-line-args-left)) |