Skip to content

Commit

Permalink
fix: Update syntax and rely on gnu
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Jan 7, 2024
1 parent 31a52c1 commit 5feac3f
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 19 deletions.
1 change: 1 addition & 0 deletions test/commands/exec/Eask
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

(exec-paths "./bin/")

(source 'gnu)
(source 'melpa)

(depends-on "emacs" "26.1")
Expand Down
4 changes: 2 additions & 2 deletions test/commands/outdated_upgrade/Eask
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

(package-file "outdated-upgrade.el")

(source "gnu")
(source "melpa")
(source 'gnu)
(source 'melpa)

(depends-on "f")
(depends-on "s")
Expand Down
4 changes: 2 additions & 2 deletions test/commands/search/Eask
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

(package-file "search.el")

(source "gnu")
(source "melpa")
(source 'gnu)
(source 'melpa)

(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432
4 changes: 2 additions & 2 deletions test/commands/test/buttercup/Eask
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

(package-file "buttercup.el")

(source "gnu")
(source "melpa")
(source 'gnu)
(source 'melpa)

(development
(depends-on "buttercup"))
Expand Down
4 changes: 2 additions & 2 deletions test/commands/test/ert-runner/Eask
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

(package-file "ert-runner.el")

(source "gnu")
(source "melpa")
(source 'gnu)
(source 'melpa)

(development
(depends-on "ert-runner"))
Expand Down
4 changes: 2 additions & 2 deletions test/commands/test/ert/Eask
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

(package-file "ert.el")

(source "gnu")
(source "melpa")
(source 'gnu)
(source 'melpa)

(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432
4 changes: 2 additions & 2 deletions test/error/Eask
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"0.0.1"
"Test (trigger) error on GitHub Actions")

(source "gnu")
(source "melpa")
(source 'gnu)
(source 'melpa)

(depends-on "emacs" "999.99") ; This is the error we are going to see!
6 changes: 3 additions & 3 deletions test/fixtures/mini.emacs.pkg.1/Eask
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"Test command 3."
(message "Test 3: %s" eask-rest))

(source "gnu")
(source "melpa")
(source "jcs-elpa")
(source 'gnu)
(source 'melpa)
(source 'jcs-elpa)

(depends-on "emacs" "26.1")
(depends-on "f")
Expand Down
6 changes: 3 additions & 3 deletions test/fixtures/mini.emacs.pkg.2/Eask
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
(script "test" "echo \"Have a nice day!~ ;)\"")
(script "info" "eask info")

(source "gnu")
(source "melpa")
(source "jcs-elpa")
(source 'gnu)
(source 'melpa)
(source 'jcs-elpa)

(depends-on "emacs" "26.1")
(depends-on "f")
Expand Down
2 changes: 1 addition & 1 deletion test/options/Eask
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

(package-file "options.el")

(source "gnu")
(source 'gnu)

(depends-on "emacs" "26.1")

0 comments on commit 5feac3f

Please sign in to comment.