Skip to content

Commit

Permalink
Use and promote https URLs for MELPA and MELPA Stable
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Aug 22, 2015
1 parent ef7a700 commit 37c241a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Cask
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(source "melpa" "http://melpa.org/packages/")
(source "melpa" "https://melpa.org/packages/")

(development
(depends-on "ecukes")
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ sandbox: packages/archive-contents
--eval '(setq user-emacs-directory "$(SANDBOX)")' \
-l package \
--eval "(add-to-list 'package-archives '(\"gnu\" . \"http://elpa.gnu.org/packages/\") t)" \
--eval "(add-to-list 'package-archives '(\"melpa\" . \"http://melpa.org/packages/\") t)" \
--eval "(add-to-list 'package-archives '(\"melpa\" . \"https://melpa.org/packages/\") t)" \
--eval "(add-to-list 'package-archives '(\"sandbox\" . \"$(shell pwd)/$(PKGDIR)/\") t)" \
--eval "(package-refresh-contents)" \
--eval "(package-initialize)"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ code using simple recipes. (Think of it as a server-side version of
Packages are updated at intervals throughout the day.

To browse available packages, check out the
[archive index page](http://melpa.org/).
[archive index page](https://melpa.org/).

Adding packages is as simple as submitting a new recipe as a pull request;
read on for details.
Expand Down Expand Up @@ -41,10 +41,10 @@ Enable installation of packages from MELPA by adding an entry to
```lisp
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/") t)
'("melpa" . "https://melpa.org/packages/") t)
(when (< emacs-major-version 24)
;; For important compatibility libraries like cl-lib
(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))
(add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/")))
(package-initialize)
```

Expand Down Expand Up @@ -425,7 +425,7 @@ format.
such as Emacs 24. If you have an older version of Emacs, you can get a
suitable `package.el` [here](http://bit.ly/pkg-el23).

[melpa]: http://melpa.org
[melpa]: https://melpa.org


## API
Expand Down Expand Up @@ -489,11 +489,11 @@ in your `package-archives` list.

```lisp
(add-to-list 'package-archives
'("melpa-stable" . "http://stable.melpa.org/packages/"))
'("melpa-stable" . "https://stable.melpa.org/packages/"))
```

An online list of available packages can be found at
[http://stable.melpa.org](http://stable.melpa.org).
[https://stable.melpa.org](https://stable.melpa.org).

### Stable Version Generation

Expand Down
4 changes: 2 additions & 2 deletions html/partials/getting-started.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h2>Installing</h2>

<pre><code>(require 'package) ;; You might already have this line
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/"))
'("melpa" . "https://melpa.org/packages/"))
(when (< emacs-major-version 24)
;; For important compatibility libraries like cl-lib
(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))
Expand All @@ -32,7 +32,7 @@ <h2>Installing</h2>
</p>

<pre><code>(add-to-list 'package-archives
'("melpa-stable" . "http://stable.melpa.org/packages/") t)</code></pre>
'("melpa-stable" . "https://stable.melpa.org/packages/") t)</code></pre>

<h3>Customizations</h3>
<p>
Expand Down
4 changes: 2 additions & 2 deletions html/updates.rss.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
xmlns:atom="http://www.w3.org/2005/Atom">
<% base_url = "http://melpa.org/" %>
<% base_url = "https://melpa.org/" %>
<channel>
<title>MELPA package updates</title>
<link>http://melpa.org</link>
<link>https://melpa.org</link>
<atom:link href="<%= base_url %>updates.rss" rel="self" type="application/rss+xml" />
<language>en-us</language>
<ttl>40</ttl>
Expand Down

0 comments on commit 37c241a

Please sign in to comment.