Compare commits

..

5 Commits

Author SHA1 Message Date
07c05a3c6f fix(deps): use --no-upgrade option on brew bundle commands
This ensures a more restrictive install of homebrew dependencies.
2023-01-11 18:29:04 +00:00
14f7aa13d9 chore(release): 0.6.40 2023-01-08 22:39:03 +00:00
59ebbdaa2b Merge pull request #79 from jimeh/fix-nightly-builds 2023-01-08 22:38:16 +00:00
d98c14dde5 chore(deps): remove python CI dependency
Instead use default python version install on macOS to install dmgbuild.
2023-01-08 21:21:54 +00:00
590b0ac21a chore(deps): remove curl from Brewfile
Curl is part of macOS, and the curl homebrew formula is keg-only.
Meaning there's no reason to install it for our purposes.
2023-01-08 20:39:17 +00:00
4 changed files with 4 additions and 5 deletions

View File

@@ -2,7 +2,6 @@
brew 'autoconf'
brew 'coreutils'
brew 'curl'
brew 'dbus'
brew 'expat'
brew 'gcc'

View File

@@ -1,3 +1 @@
# frozen_string_literal: true
brew 'python'

View File

@@ -2,6 +2,8 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.6.40](https://github.com/jimeh/build-emacs-for-macos/compare/v0.6.39...v0.6.40) (2023-01-08)
### [0.6.39](https://github.com/jimeh/build-emacs-for-macos/compare/v0.6.38...v0.6.39) (2022-12-04)

View File

@@ -49,10 +49,10 @@ bootstrap: bootstrap-brew
bootstrap-ci: bootstrap-brew bootstrap-brew-ci bootstrap-pip
bootstrap-brew:
brew bundle
brew bundle --no-upgrade
bootstrap-brew-ci:
brew bundle --file Brewfile.ci
brew bundle --file Brewfile.ci --no-upgrade
bootstrap-pip:
$(PIP) install -r requirements-ci.txt