summaryrefslogtreecommitdiff
path: root/lisp/version.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-06-01 13:25:09 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2016-06-01 13:26:30 -0700
commit1e5539e0b35d2a7fcd1f1772c4532430cb18471b (patch)
treec4c11c574537659dacff45cc858eb6edba822451 /lisp/version.el
parent4428f5a97b942652e6894f22c4c251457a1edc8b (diff)
downloademacs-1e5539e0b35d2a7fcd1f1772c4532430cb18471b.tar.gz
Avoid delving into Git internals for version
* lisp/loadup.el (exec-path): Set it to nil later, so that emacs-repository-get-version can invoke git commands in the PATH. * lisp/version.el (emacs-repository--version-git-1): Remove. (emacs-repository-get-version): Let Git do it rather than delving into Git internals.
Diffstat (limited to 'lisp/version.el')
-rw-r--r--lisp/version.el59
1 files changed, 2 insertions, 57 deletions
diff --git a/lisp/version.el b/lisp/version.el
index 2f71aeb228f..d4cb92ec86a 100644
--- a/lisp/version.el
+++ b/lisp/version.el
@@ -116,18 +116,6 @@ or if we could not determine the revision.")
(looking-at "[0-9a-fA-F]\\{40\\}"))
(match-string 0)))))
-(defun emacs-repository--version-git-1 (file dir)
- "Internal subroutine of `emacs-repository-get-version'."
- (when (file-readable-p file)
- (with-temp-buffer
- (insert-file-contents file)
- (cond ((looking-at "[0-9a-fA-F]\\{40\\}")
- (match-string 0))
- ((looking-at "ref: \\(.*\\)")
- (emacs-repository--version-git-1
- (expand-file-name (match-string 1) dir)
- dir))))))
-
(defun emacs-repository-get-version (&optional dir external)
"Try to return as a string the repository revision of the Emacs sources.
The format of the returned string is dependent on the VCS in use.
@@ -137,51 +125,8 @@ this reports on the current state of the sources, which may not
correspond to the running Emacs.
Optional argument DIR is a directory to use instead of `source-directory'.
-Optional argument EXTERNAL non-nil means to just ask the VCS itself,
-if the sources appear to be under version control. Otherwise only ask
-the VCS if we cannot find any information ourselves."
- (or dir (setq dir source-directory))
- (let* ((base-dir (expand-file-name ".git" dir))
- (in-main-worktree (file-directory-p base-dir))
- (in-linked-worktree nil)
- sub-dir)
- ;; If the sources are in a linked worktree, .git is a file that points to
- ;; the location of the main worktree and the repo's administrative files.
- (when (and (not in-main-worktree)
- (file-regular-p base-dir)
- (file-readable-p base-dir))
- (with-temp-buffer
- (insert-file-contents base-dir)
- (when (looking-at "gitdir: \\(.*\.git\\)\\(.*\\)$")
- (setq base-dir (match-string 1)
- sub-dir (concat base-dir (match-string 2))
- in-linked-worktree t))))
- ;; We've found a worktree, either main or linked.
- (when (or in-main-worktree in-linked-worktree)
- (if external
- (emacs-repository-version-git dir)
- (or (if in-linked-worktree
- (emacs-repository--version-git-1
- (expand-file-name "HEAD" sub-dir) base-dir)
- (or
- (let ((packed-refs (expand-file-name "packed-refs" base-dir)))
- (if (file-readable-p packed-refs)
- (with-temp-buffer
- (insert-file-contents packed-refs)
- (when (re-search-forward
- "^\\([0-9a-fA-F]\\{40\\}\\) refs/heads/master$"
- nil t)
- (match-string 1)))))
- (let ((files '("HEAD" "refs/heads/master"))
- file rev)
- (while (and (not rev)
- (setq file (car files)))
- (setq file (expand-file-name file base-dir)
- files (cdr files)
- rev (emacs-repository--version-git-1 file base-dir)))
- rev)))
- ;; AFAICS this doesn't work during dumping (bug#20799).
- (emacs-repository-version-git dir))))))
+Optional argument EXTERNAL is ignored."
+ (emacs-repository-version-git (or dir source-directory)))
;; We put version info into the executable in the form that `ident' uses.
(purecopy (concat "\n$Id: " (subst-char-in-string ?\n ?\s (emacs-version))