mirror of
https://github.com/correl/melpa.git
synced 2024-11-14 11:09:31 +00:00
Mv all refs from *.milkbox.net to melpa.org
This commit is contained in:
parent
6f9cc28871
commit
8851c51e62
12 changed files with 18 additions and 18 deletions
2
Cask
2
Cask
|
@ -1,4 +1,4 @@
|
||||||
(source "melpa" "http://melpa.milkbox.net/packages/")
|
(source "melpa" "http://melpa.org/packages/")
|
||||||
|
|
||||||
(development
|
(development
|
||||||
(depends-on "ecukes")
|
(depends-on "ecukes")
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -106,7 +106,7 @@ sandbox: packages/archive-contents
|
||||||
--eval '(setq user-emacs-directory "$(SANDBOX)")' \
|
--eval '(setq user-emacs-directory "$(SANDBOX)")' \
|
||||||
-l package \
|
-l package \
|
||||||
--eval "(add-to-list 'package-archives '(\"gnu\" . \"http://elpa.gnu.org/packages/\") t)" \
|
--eval "(add-to-list 'package-archives '(\"gnu\" . \"http://elpa.gnu.org/packages/\") t)" \
|
||||||
--eval "(add-to-list 'package-archives '(\"melpa\" . \"http://melpa.milkbox.net/packages/\") t)" \
|
--eval "(add-to-list 'package-archives '(\"melpa\" . \"http://melpa.org/packages/\") t)" \
|
||||||
--eval "(add-to-list 'package-archives '(\"sandbox\" . \"$(shell pwd)/$(PKGDIR)/\") t)" \
|
--eval "(add-to-list 'package-archives '(\"sandbox\" . \"$(shell pwd)/$(PKGDIR)/\") t)" \
|
||||||
--eval "(package-refresh-contents)"
|
--eval "(package-refresh-contents)"
|
||||||
--eval "(package-initialize)"
|
--eval "(package-initialize)"
|
||||||
|
|
10
README.md
10
README.md
|
@ -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.
|
Packages are updated at intervals throughout the day.
|
||||||
|
|
||||||
To browse available packages, check out the
|
To browse available packages, check out the
|
||||||
[archive index page](http://melpa.milkbox.net/).
|
[archive index page](http://melpa.org/).
|
||||||
|
|
||||||
Adding packages is as simple as submitting a pull request; read on for
|
Adding packages is as simple as submitting a pull request; read on for
|
||||||
details.
|
details.
|
||||||
|
@ -41,7 +41,7 @@ Enable installation of packages from MELPA by adding an entry to
|
||||||
```lisp
|
```lisp
|
||||||
(require 'package)
|
(require 'package)
|
||||||
(add-to-list 'package-archives
|
(add-to-list 'package-archives
|
||||||
'("melpa" . "http://melpa.milkbox.net/packages/") t)
|
'("melpa" . "http://melpa.org/packages/") t)
|
||||||
(when (< emacs-major-version 24)
|
(when (< emacs-major-version 24)
|
||||||
;; For important compatibility libraries like cl-lib
|
;; For important compatibility libraries like cl-lib
|
||||||
(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))
|
(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))
|
||||||
|
@ -412,7 +412,7 @@ format.
|
||||||
such as Emacs 24. If you have an older version of Emacs, you can get a
|
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).
|
suitable `package.el` [here](http://bit.ly/pkg-el23).
|
||||||
|
|
||||||
[melpa]: http://melpa.milkbox.net
|
[melpa]: http://melpa.org
|
||||||
|
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
@ -476,11 +476,11 @@ in your `package-archives` list.
|
||||||
|
|
||||||
```lisp
|
```lisp
|
||||||
(add-to-list 'package-archives
|
(add-to-list 'package-archives
|
||||||
'("melpa-stable" . "http://melpa-stable.milkbox.net/packages/") t)
|
'("melpa-stable" . "http://stable.melpa.org/packages/") t)
|
||||||
```
|
```
|
||||||
|
|
||||||
An online list of available packages can be found at
|
An online list of available packages can be found at
|
||||||
[http://melpa-stable.milkbox.net](http://melpa-stable.milkbox.net).
|
[http://stable.melpa.org](http://stable.melpa.org).
|
||||||
|
|
||||||
### Stable Version Generation
|
### Stable Version Generation
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ server {
|
||||||
# proxy to Apache 2 and mod_python
|
# proxy to Apache 2 and mod_python
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://127.0.0.1:1337/;
|
proxy_pass http://127.0.0.1:1337/;
|
||||||
proxy_redirect http://melpa.milkbox.net:1337/ http://melpa.milkbox.net/;
|
proxy_redirect http://melpa.org:1337/ http://melpa.org/;
|
||||||
# proxy_redirect off;
|
# proxy_redirect off;
|
||||||
chunked_transfer_encoding off;
|
chunked_transfer_encoding off;
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
server {
|
server {
|
||||||
server_name hiddencameras.milkbox.net;
|
server_name hiddencameras.milkbox.net;
|
||||||
rewrite ^ $scheme://melpa-stable.milkbox.net$request_uri? permanent;
|
rewrite ^ $scheme://stable.melpa.org$request_uri? permanent;
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
|
|
|
@ -71,7 +71,7 @@ http {
|
||||||
##
|
##
|
||||||
|
|
||||||
server {
|
server {
|
||||||
server_name melpa.milkbox.net;
|
server_name melpa.org;
|
||||||
server_tokens off;
|
server_tokens off;
|
||||||
server_name_in_redirect off;
|
server_name_in_redirect off;
|
||||||
|
|
||||||
|
|
|
@ -72,7 +72,7 @@ http {
|
||||||
##
|
##
|
||||||
|
|
||||||
server {
|
server {
|
||||||
server_name melpa-stable.milkbox.net;
|
server_name stable.melpa.org;
|
||||||
server_tokens off;
|
server_tokens off;
|
||||||
server_name_in_redirect off;
|
server_name_in_redirect off;
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ BODY=`mktemp`
|
||||||
|
|
||||||
cd ${HOME}/melpa
|
cd ${HOME}/melpa
|
||||||
|
|
||||||
echo "To: MP <dcurtis@milkbox.net>" > ${BODY}
|
echo "To: MP <d@milkbox.net>" > ${BODY}
|
||||||
echo "Subject: [MELPA] `date "+%Y%m%d %H:%M %z"`" >> ${BODY}
|
echo "Subject: [MELPA] `date "+%Y%m%d %H:%M %z"`" >> ${BODY}
|
||||||
echo >> ${BODY}
|
echo >> ${BODY}
|
||||||
echo "# Old Packages" >> ${BODY}
|
echo "# Old Packages" >> ${BODY}
|
||||||
|
|
|
@ -8,7 +8,7 @@ BODY=`mktemp`
|
||||||
|
|
||||||
cd ${HOME}/melpa
|
cd ${HOME}/melpa
|
||||||
|
|
||||||
echo "To: MP <dcurtis@milkbox.net>" > ${BODY}
|
echo "To: MP <d@milkbox.net>" > ${BODY}
|
||||||
echo "Subject: [MELPA] `date "+%Y%m%d %H:%M %z"`" >> ${BODY}
|
echo "Subject: [MELPA] `date "+%Y%m%d %H:%M %z"`" >> ${BODY}
|
||||||
echo >> ${BODY}
|
echo >> ${BODY}
|
||||||
echo "# Old Packages" >> ${BODY}
|
echo "# Old Packages" >> ${BODY}
|
||||||
|
|
|
@ -7,7 +7,7 @@ updates.rss: updates.rss.erb
|
||||||
erb updates.rss.erb > updates.rss.tmp && mv updates.rss.tmp updates.rss
|
erb updates.rss.erb > updates.rss.tmp && mv updates.rss.tmp updates.rss
|
||||||
|
|
||||||
livejson:
|
livejson:
|
||||||
for f in recipes archive download_counts build-status; do curl http://melpa.milkbox.net/$$f.json > $$f.json; done
|
for f in recipes archive download_counts build-status; do curl http://melpa.org/$$f.json > $$f.json; done
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-rm -v updates.rss
|
-rm -v updates.rss
|
||||||
|
|
|
@ -10,13 +10,13 @@
|
||||||
|
|
||||||
<pre><code>(require 'package)
|
<pre><code>(require 'package)
|
||||||
(add-to-list 'package-archives
|
(add-to-list 'package-archives
|
||||||
'("melpa" . "http://melpa.milkbox.net/packages/") t)</code></pre>
|
'("melpa" . "http://melpa.org/packages/") t)</code></pre>
|
||||||
|
|
||||||
<p>or to add the stable package repository, use this snippet:</p>
|
<p>or to add the stable package repository, use this snippet:</p>
|
||||||
|
|
||||||
<pre><code>(require 'package)
|
<pre><code>(require 'package)
|
||||||
(add-to-list 'package-archives
|
(add-to-list 'package-archives
|
||||||
'("melpa-stable" . "http://melpa-stable.milkbox.net/packages/") t)</code></pre>
|
'("melpa-stable" . "http://stable.melpa.org/packages/") t)</code></pre>
|
||||||
|
|
||||||
<p>In Emacs < 24, you'll also need to explicitly include the GNU
|
<p>In Emacs < 24, you'll also need to explicitly include the GNU
|
||||||
ELPA archive, which provides important compatibility libraries like <code>cl-lib</code>:</p>
|
ELPA archive, which provides important compatibility libraries like <code>cl-lib</code>:</p>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
|
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
|
||||||
xmlns:atom="http://www.w3.org/2005/Atom">
|
xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<% base_url = "http://melpa.milkbox.net/" %>
|
<% base_url = "http://melpa.org/" %>
|
||||||
<channel>
|
<channel>
|
||||||
<title>MELPA package updates</title>
|
<title>MELPA package updates</title>
|
||||||
<link>http://melpa.milkbox.net</link>
|
<link>http://melpa.org</link>
|
||||||
<atom:link href="<%= base_url %>updates.rss" rel="self" type="application/rss+xml" />
|
<atom:link href="<%= base_url %>updates.rss" rel="self" type="application/rss+xml" />
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<ttl>40</ttl>
|
<ttl>40</ttl>
|
||||||
|
|
Loading…
Reference in a new issue