From 0136ebac8101e128b3041a7f816a424e519feb77 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Wed, 22 Aug 2012 21:45:08 +0200 Subject: [PATCH 1/3] Remove redundant :website property --- recipes/gist.rcp | 1 - 1 file changed, 1 deletion(-) diff --git a/recipes/gist.rcp b/recipes/gist.rcp index bcbaa56b..faa38d9d 100644 --- a/recipes/gist.rcp +++ b/recipes/gist.rcp @@ -1,5 +1,4 @@ (:name gist - :website "http://github.com/defunkt/gist.el" :description "Emacs integration for gist.github.com" :type github :pkgname "defunkt/gist.el" From c5b52b023534b71c51f4d52ea5f7f672142430bd Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Wed, 22 Aug 2012 21:46:04 +0200 Subject: [PATCH 2/3] Add recipes for gh.el and its dependencies --- recipes/gh.rcp | 5 +++++ recipes/logito.rcp | 4 ++++ recipes/pcache.rcp | 4 ++++ 3 files changed, 13 insertions(+) create mode 100644 recipes/gh.rcp create mode 100644 recipes/logito.rcp create mode 100644 recipes/pcache.rcp diff --git a/recipes/gh.rcp b/recipes/gh.rcp new file mode 100644 index 00000000..cef96589 --- /dev/null +++ b/recipes/gh.rcp @@ -0,0 +1,5 @@ +(:name gh + :description "GitHub API library for Emacs" + :type github + :pkgname "sigma/gh.el" + :depends (pcache logito)) diff --git a/recipes/logito.rcp b/recipes/logito.rcp new file mode 100644 index 00000000..619bf18c --- /dev/null +++ b/recipes/logito.rcp @@ -0,0 +1,4 @@ +(:name logito + :description "tiny logging framework for Emacs" + :type github + :pkgname "sigma/logito") diff --git a/recipes/pcache.rcp b/recipes/pcache.rcp new file mode 100644 index 00000000..9e3980f4 --- /dev/null +++ b/recipes/pcache.rcp @@ -0,0 +1,4 @@ +(:name pcache + :description "persistent caching for Emacs" + :type github + :pkgname "sigma/pcache") From a7fc24a1a48f381d1dcfc9211513b5dced5dbdb3 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Wed, 22 Aug 2012 21:46:18 +0200 Subject: [PATCH 3/3] Update gist.rcp (now depends on gh.el) --- recipes/gist.rcp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/gist.rcp b/recipes/gist.rcp index faa38d9d..b222f5cc 100644 --- a/recipes/gist.rcp +++ b/recipes/gist.rcp @@ -2,4 +2,4 @@ :description "Emacs integration for gist.github.com" :type github :pkgname "defunkt/gist.el" - :features gist) + :depends gh)