el-get/methods/el-get-github.el
Damien Cassou d7cb8657e7 Issue #857: remove useless `el-get-guess-github-website'
Signed-off-by: Damien Cassou <damien.cassou@gmail.com>
2012-08-31 10:47:37 +02:00

105 lines
3.9 KiB
EmacsLisp

;;; 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)
(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.")
(defun el-get-github-url-format (url-type)
(or (plist-get el-get-github-url-type-plist
url-type)
(error "Unknown Github repo URL type: %s" url-type)))
(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."
:group 'el-get
:type '(choice (const :tag "HTTP" http)
(const :tag "HTTPS" https)
(const :tag "git" git)))
(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 (package)
(let* ((source (el-get-package-def package)))
(or
;; Use :url if provided
(plist-get source :url)
;; Else generate URL from username, reponame, and url-type
(let* ((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)))
(url-format-string (el-get-github-url-format url-type)))
(el-get-replace-string
"%USER%" username
(el-get-replace-string
"%REPO%" reponame
url-format-string))))))
(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))
(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)))
(format "https://github.com/%s/%s" username reponame)))
(el-get-register-derived-method :github :git
:install #'el-get-github-clone
:guess-website #'el-get-github-guess-website)
(provide 'el-get-github)