From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: Jude DaShiell Newsgroups: gmane.emacs.help Subject: Re: melpa.org Date: Wed, 26 Feb 2020 13:07:52 -0500 Message-ID: References: <87tv3eh1fc.fsf@ebih.ebihd> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="106692"; mail-complaints-to="usenet@ciao.gmane.io" To: Emanuel Berg , help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Wed Feb 26 19:08:18 2020 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1j716X-000Rf5-H6 for geh-help-gnu-emacs@m.gmane-mx.org; Wed, 26 Feb 2020 19:08:17 +0100 Original-Received: from localhost ([::1]:48188 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j716W-0004hU-Gx for geh-help-gnu-emacs@m.gmane-mx.org; Wed, 26 Feb 2020 13:08:16 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:39178) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j716B-0004hJ-GO for help-gnu-emacs@gnu.org; Wed, 26 Feb 2020 13:07:56 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j716A-0001ki-1q for help-gnu-emacs@gnu.org; Wed, 26 Feb 2020 13:07:55 -0500 Original-Received: from mailbackend.panix.com ([166.84.1.89]:38044) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j7169-0001hV-Tn for help-gnu-emacs@gnu.org; Wed, 26 Feb 2020 13:07:53 -0500 Original-Received: from panix1.panix.com (panix1.panix.com [166.84.1.1]) by mailbackend.panix.com (Postfix) with ESMTP id 48SP0n2FZ9z1Nhm; Wed, 26 Feb 2020 13:07:53 -0500 (EST) Original-Received: by panix1.panix.com (Postfix, from userid 20712) id 48SP0n0VPjzcbc; Wed, 26 Feb 2020 13:07:53 -0500 (EST) Original-Received: from localhost (localhost [127.0.0.1]) by panix1.panix.com (Postfix) with ESMTP id 48SP0m75CnzcbW; Wed, 26 Feb 2020 13:07:52 -0500 (EST) In-Reply-To: <87tv3eh1fc.fsf@ebih.ebihd> X-detected-operating-system: by eggs.gnu.org: GNU/Linux (Android) [fuzzy] X-Received-From: 166.84.1.89 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:122480 Archived-At: The melpa archive fails to download. (setq package-archives '(( "gnu elpa" . "https://elpa.gnu.org/packages/") ( "melpa" . "https://melpa.org/packages/" ))) (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3") (setq inhibit-splash-screen t) ;; Show keystrokes (setq echo-keystrokes 0.02) ;; loose hourglass for text terminals without mouse (setq display-hourglass nil) ;; optional keyboard short-cut (global-set-key "\C-xm" 'browse-url-at-point) (setq fill-column 72) (setq use-dialog-box nil) (setq delete-old-versions t) (add-hook 'message-mode-hook 'turn-on-orgtbl) (setq org-table-use-standard-references t) (setq-default display-line-numbers 'relative) (setq gnus-interactive-catchup nil) (setq imap-ssl-program "openssl s_client -tls1 -connect %s:%p") (setq gnus-select-method '(nnimap "gmail.com" (nnimap-address "dashielljude@gmail.com") (nnimap-stream ssl))) (setq gnus-read-active-file 'some) (add-hook 'gnus-group-mode-hook 'gnus-topic-mode) (setq gnus-summary-thread-gathering-function 'gnus-gather-threads-by-subject) (setq gnus-thread-hide-subtree t) (setq gnus-thread-ignore-subject t) On Tue, 25 Feb 2020, Emanuel Berg via Users list for the GNU Emacs text editor wrote: > Date: Tue, 25 Feb 2020 15:11:51 > From: Emanuel Berg via Users list for the GNU Emacs text editor > > Reply-To: Emanuel Berg > To: help-gnu-emacs@gnu.org > Subject: Re: melpa.org > > Jude DaShiell wrote: > > > I checked with edbrowse on my system and > > found out edbrowse can read melpa.org. > > For those of us not running graphical user > > interfaces, edbrowse is an editor-browser > > clone that runs in text mode and supports > > enough javascript to pass the javascript > > ghoon at the door. It has a learning curve > > and configuration to do on the systems that > > already have it packaged for users to > > download and use. > > But to use MELPA, why worry about JavaScript > and the web at all? > > Why not just do > > (setq package-archives > '(( "gnu elpa" . "https://elpa.gnu.org/packages/") > ( "melpa" . "https://melpa.org/packages/" ))) > > and then use `list-packages' happily > ever after? > > --