mirror of
https://github.com/correl/melpa.git
synced 2024-12-23 19:19:51 +00:00
Rename :cvs-module to :module
This commit is contained in:
parent
9590a38d35
commit
9592064902
2 changed files with 3 additions and 2 deletions
|
@ -111,6 +111,7 @@ the following form,
|
|||
:fetcher [git|github|bzr|hg|darcs|svn|cvs|wiki]
|
||||
[:url "<repo url>"]
|
||||
[:repo "github-user/repo-name"]
|
||||
[:module "cvs-module"]
|
||||
[:files ("<file1>", ...)])
|
||||
```
|
||||
|
||||
|
@ -121,7 +122,7 @@ a lisp symbol that has the same name as the package being specified.
|
|||
specifies the URL of the version control repository. *required for
|
||||
the `git`, `bzr`, `hg`, `darcs`, `svn` and `cvs` fetchers*
|
||||
|
||||
- `:cvs-module`
|
||||
- `:module`
|
||||
specifies the module of a CVS repository to check out. Defaults to to
|
||||
`package-name`. Only used with `:fetcher cvs`, and otherwise ignored.
|
||||
|
||||
|
|
|
@ -258,7 +258,7 @@ Return a cons cell whose `car' is the root and whose `cdr' is the repository."
|
|||
"Check package NAME with config CONFIG out of csv into DIR."
|
||||
(with-current-buffer (get-buffer-create "*package-build-checkout*")
|
||||
(let ((root (pb/trim (plist-get config :url) ?/))
|
||||
(repo (or (plist-get config :cvs-module) (symbol-name name)))
|
||||
(repo (or (plist-get config :module) (symbol-name name)))
|
||||
(bound (goto-char (point-max))))
|
||||
(cond
|
||||
((and (file-exists-p (expand-file-name "CVS" dir))
|
||||
|
|
Loading…
Reference in a new issue