File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
- ; ;; mocker.el --- mocking framework for emacs
1
+ ; ;; mocker.el --- mocking framework for emacs -*- lexical-binding : t -*-
2
2
3
3
; ; Copyright (C) 2011 Yann Hodique.
4
4
Original file line number Diff line number Diff line change @@ -463,10 +463,14 @@ The string in the capture group should be parsed as valid by `version-to-list'."
463
463
; ;; Internal Variables
464
464
465
465
(defconst quelpa-build-default-files-spec
466
- '(" *.el" " *.el.in " " dir "
467
- " *.info" " *.texi" " *.texinfo"
466
+ '(" *.el" " lisp/ *.el"
467
+ " dir " " *.info" " *.texi" " *.texinfo"
468
468
" doc/dir" " doc/*.info" " doc/*.texi" " doc/*.texinfo"
469
- (:exclude " .dir-locals.el" " test.el" " tests.el" " *-test.el" " *-tests.el" ))
469
+ " docs/dir" " docs/*.info" " docs/*.texi" " docs/*.texinfo"
470
+ (:exclude
471
+ " .dir-locals.el" " lisp/.dir-locals.el"
472
+ " test.el" " tests.el" " *-test.el" " *-tests.el"
473
+ " lisp/test.el" " lisp/tests.el" " lisp/*-test.el" " lisp/*-tests.el" ))
470
474
" Default value for :files attribute in recipes." )
471
475
472
476
; ;; Utilities
@@ -1202,7 +1206,7 @@ Tests and sets variable `quelpa--tar-type' if not already set."
1202
1206
" --exclude=_FOSSIL_"
1203
1207
" --exclude=.bzr"
1204
1208
" --exclude=.hg"
1205
- (append (and quelpa-build-explicit-tar-format-p '(" --format=gnu" ))
1209
+ (append (and quelpa-build-explicit-tar-format-p ( eq (quelpa--tar-type) 'gnu ) '(" --format=gnu" ))
1206
1210
(or (mapcar (lambda (fn ) (concat dir " /" fn)) files ) (list dir)))))
1207
1211
1208
1212
(defun quelpa-build--find-package-commentary (file-path )
You can’t perform that action at this time.
0 commit comments