el-get/methods/el-get-github.el

103 lines
4.0 KiB
EmacsLisp
Raw Normal View History

2012-01-18 04:52:32 +08:00
;;; el-get --- Manage the external elisp bits and pieces you depend upon
;;
;; Copyright (C) 2010-2011 Dimitri Fontaine
;;
;; Author: Dimitri Fontaine <dim@tapoueh.org>
;; URL: http://www.emacswiki.org/emacs/el-get
;; GIT: https://github.com/dimitri/el-get
;; Licence: WTFPL, grab your copy here: http://sam.zoy.org/wtfpl/
;;
;; This file is NOT part of GNU Emacs.
;;
;; Install
;; Please see the README.asciidoc file from the same distribution
(require 'el-get-core)
(require 'el-get-git)
2012-01-18 04:52:32 +08:00
(defconst el-get-github-url-type-plist
(list 'http "http://github.com/%USER%/%REPO%.git"
'https "https://github.com/%USER%/%REPO%.git"
'git "git://github.com/%USER%/%REPO%.git"
'ssh "git@github.com:%USER%/%REPO%.git")
"Plist mapping Github types to their URL format strings.")
(defcustom el-get-github-default-url-type 'http
"The kind of URL to use for Github repositories.
Choices are `http', `https', `git'. This is effectively the
default `:url-type' for Github recipes that do not specify one.
Individual Github recipes can override this setting by providing
their own `:url-type' property. Note that `ssh' is also an
acceptable value for `:url-type', but you should not set it here
because it will prevent access to any repositories not owned by
you."
2012-01-18 04:52:32 +08:00
:group 'el-get
:type '(choice (const :tag "HTTP" http)
(const :tag "HTTPS" https)
(const :tag "git" git)))
2012-01-18 04:52:32 +08:00
(defun el-get-replace-string (from to str)
"Replace all instances of FROM with TO in str.
FROM is a literal string, not a regexp."
(replace-regexp-in-string (regexp-quote from) to str 'fixedcase 'literal))
(defun el-get-github-parse-user-and-repo (package)
"Returns a cons cell of `(USER . REPO)'."
(let* ((source (el-get-package-def package))
(type (el-get-package-method package))
(username (plist-get source :username))
(reponame (el-get-as-string
(or (plist-get source :pkgname)
package))))
(when (string-match-p "/" reponame)
(let* ((split (split-string reponame "[[:space:]]\\|/" 'omit-nulls)))
(assert (= (length split) 2) nil
"Github pkgname %s must contain only one slash and no spaces" reponame)
(setq username (first split)
reponame (second split))))
(unless username
(error "Recipe for %s package %s needs a username" type package))
(cons username reponame)))
(defun el-get-github-url-private (url-type username reponame)
"Return the url of a particular github project.
URL-TYPE must be a valid property (a symbol) of
`el-get-github-url-type-plist'.
USERNAME and REPONAME are strings."
(let ((url-format-string
(or (plist-get el-get-github-url-type-plist url-type)
(error "Unknown Github repo URL type: %s" url-type))))
(el-get-replace-string
"%USER%" username
(el-get-replace-string "%REPO%" reponame url-format-string))))
2012-01-18 04:52:32 +08:00
(defun el-get-github-url (package)
(let* ((source (el-get-package-def package))
(user-and-repo (el-get-github-parse-user-and-repo package))
(username (car user-and-repo))
(reponame (cdr user-and-repo))
(url-type (el-get-as-symbol
(or (plist-get source :url-type)
el-get-github-default-url-type))))
(el-get-github-url-private url-type username reponame)))
2012-01-18 04:52:32 +08:00
(defun el-get-github-clone (package url post-install-fun)
"Clone the given package from Github following the URL."
(el-get-git-clone package
(or url (el-get-github-url package))
post-install-fun))
2012-02-29 09:58:44 +08:00
(defun el-get-github-guess-website (package)
(let* ((user-and-repo (el-get-github-parse-user-and-repo package))
(username (car user-and-repo))
(reponame (cdr user-and-repo)))
(el-get-github-url-private 'https username reponame)))
2012-02-29 09:58:44 +08:00
(el-get-register-derived-method :github :git
2012-02-29 09:58:44 +08:00
:install #'el-get-github-clone
:guess-website #'el-get-github-guess-website)
2012-01-18 04:52:32 +08:00
(provide 'el-get-github)