From: Stefan Monnier Date: Wed, 14 Aug 2013 01:22:26 +0000 (-0400) Subject: Add externals-list. Fix up ignore list. X-Git-Url: https://code.delx.au/gnu-emacs-elpa/commitdiff_plain/023ae6e4aa99df2e46e7de618195d37b02f502ec?ds=sidebyside Add externals-list. Fix up ignore list. --- diff --git a/.bzrignore b/.bzrignore deleted file mode 100644 index 74d917440..000000000 --- a/.bzrignore +++ /dev/null @@ -1,11 +0,0 @@ -*.elc -*~ -ChangeLog -archive -core -externals-list -packages/*/*-autoloads.el -packages/*/*-pkg.el -packages/.changelog-witness -packages/dismal -site diff --git a/.bzrignore b/.bzrignore new file mode 120000 index 000000000..3e4e48b0b --- /dev/null +++ b/.bzrignore @@ -0,0 +1 @@ +.gitignore \ No newline at end of file diff --git a/.gitignore b/.gitignore deleted file mode 120000 index 15eedb459..000000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -.bzrignore \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..548f54c94 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +*.elc +*~ +ChangeLog +core +packages/*/*-autoloads.el +packages/*/*-pkg.el +packages/dismal diff --git a/externals-list b/externals-list new file mode 100644 index 000000000..91eb00744 --- /dev/null +++ b/externals-list @@ -0,0 +1,27 @@ +;; -*- emacs-lisp -*- + +;; List of packages that are maintained externally. +;; The list is made of elements of the form (NAME KIND URL). +;; +;; Where NAME is the name of the package; +;; +;; KIND can be one of: +;; :subtree = a "git subtree" in the `master' branch. +;; :external = kept in a separate `externals/' branch. +;; +;; And URL is the URL of the remote git repository that we want to track. +;; It can be nil, in which case we don't track anything (useless for +;; :subtree, but not for :external). + +(("dismal" :external nil) + ;("org" :external ??) + ("js2-mode" :subtree "https://github.com/mooz/js2-mode.git") + ("websocket" :subtree "https://github.com/ahyatt/emacs-websocket.git") + ("eldoc-eval" :subtree "https://github.com/thierryvolpiatto/eldoc-eval.git") + ("company" :subtree "https://github.com/company-mode/company-mode.git") + ;; In need of serious manual sync. + ;; ("yasnippet" :subtree "https://github.com/capitaomorte/yasnippet.git") + ;; In need of serious manual sync as well. + ;; ("auctex" :subtree "git://git.sv.gnu.org/auctex.git") + ("ioccur" :subtree "https://github.com/thierryvolpiatto/ioccur.git") + ("f90-interface-browser" :subtree "http://github.com/wence-/f90-iface"))