* GNU Package Repositories
@ 2017-03-26 0:16 M. R.P.
2017-03-26 0:38 ` John Mastro
2017-03-30 18:24 ` Emanuel Berg
0 siblings, 2 replies; 3+ messages in thread
From: M. R.P. @ 2017-03-26 0:16 UTC (permalink / raw)
To: help-gnu-emacs
Is their a way to List a Comprehensive list of GNU software packages in
Emacs Like the List packages for emacs packages?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: GNU Package Repositories
2017-03-26 0:16 GNU Package Repositories M. R.P.
@ 2017-03-26 0:38 ` John Mastro
2017-03-30 18:24 ` Emanuel Berg
1 sibling, 0 replies; 3+ messages in thread
From: John Mastro @ 2017-03-26 0:38 UTC (permalink / raw)
To: help-gnu-emacs@gnu.org; +Cc: M. R.P.
M. R.P. <wintermute24x7@icloud.com> wrote:
> Is their a way to List a Comprehensive list of GNU software packages in
> Emacs Like the List packages for emacs packages?
This is perhaps not what you mean, but my first thought was:
M-x eww RET https://www.gnu.org/software/software.en.html RET
That page contains the official list of all GNU software packages, but of
course you can't install/upgrade/remove the packages from there. For that, you
would need an Emacs package that integrates with your system's package
manager[1] (or use said package manager directly from `M-x shell').
[1] Such packages do seem to exist, e.g. https://github.com/cgroza/Emacs-apt
John
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: GNU Package Repositories
2017-03-26 0:16 GNU Package Repositories M. R.P.
2017-03-26 0:38 ` John Mastro
@ 2017-03-30 18:24 ` Emanuel Berg
1 sibling, 0 replies; 3+ messages in thread
From: Emanuel Berg @ 2017-03-30 18:24 UTC (permalink / raw)
To: help-gnu-emacs
M. R.P. wrote:
> Is their a way to List a Comprehensive list
> of GNU software packages in Emacs Like the
> List packages for emacs packages?
The GNU ELPA? N.B., one of many elpas...
(package-initialize)
;; ...
(defun elpas ()
(interactive)
(package-list-packages) )
(defalias 'elpa 'elpas)
(defvar package-archives)
(setq package-archives
'(( "gnu elpa" . "http://elpa.gnu.org/packages/")
( "melpa" . "http://melpa.milkbox.net/packages/") ))
More: (less?)
http://user.it.uu.se/~embe8573/conf/emacs-init/elpa.el
--
underground experts united .... http://user.it.uu.se/~embe8573
Emacs Gnus Blogomatic ......... http://user.it.uu.se/~embe8573/blogomatic
- so far: 69 Blogomatic articles -
with: #moasen @ irc.freenode.net 6667
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-03-30 18:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-26 0:16 GNU Package Repositories M. R.P.
2017-03-26 0:38 ` John Mastro
2017-03-30 18:24 ` Emanuel Berg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).