Skip to content

Commit d5126be

Browse files
SpacemacsBotsmile13241324
authored andcommitted
[bot] "built_in_updates" Sun Jul 31 14:28:15 UTC 2022
1 parent b994a52 commit d5126be

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

core/libs/mocker.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; mocker.el --- mocking framework for emacs
1+
;;; mocker.el --- mocking framework for emacs -*- lexical-binding: t -*-
22

33
;; Copyright (C) 2011 Yann Hodique.
44

core/libs/quelpa.el

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -463,10 +463,14 @@ The string in the capture group should be parsed as valid by `version-to-list'."
463463
;;; Internal Variables
464464

465465
(defconst quelpa-build-default-files-spec
466-
'("*.el" "*.el.in" "dir"
467-
"*.info" "*.texi" "*.texinfo"
466+
'("*.el" "lisp/*.el"
467+
"dir" "*.info" "*.texi" "*.texinfo"
468468
"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"))
470474
"Default value for :files attribute in recipes.")
471475

472476
;;; Utilities
@@ -1202,7 +1206,7 @@ Tests and sets variable `quelpa--tar-type' if not already set."
12021206
"--exclude=_FOSSIL_"
12031207
"--exclude=.bzr"
12041208
"--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"))
12061210
(or (mapcar (lambda (fn) (concat dir "/" fn)) files) (list dir)))))
12071211

12081212
(defun quelpa-build--find-package-commentary (file-path)

0 commit comments

Comments
 (0)