Shaun Jackman
cf27117c46
brew.sh: Use shims/scm/git for HOMEBREW_VERSION
...
Move the use of git to determine HOMEBREW_VERSION below the
definition of the function git.
2017-12-20 16:16:01 -08:00
Mike McQuaid
426c998ff5
Merge pull request #3584 from Quesar/fix-proxy-config
...
Added no_proxy to filtered env
2017-12-19 09:16:04 +00:00
Ivars Berzinsh
28a0e445f0
Added info about no_proxy to docs
2017-12-19 10:59:04 +02:00
Ivars Berzinsh
25f65c1a13
Added no_proxy to filtered env
2017-12-18 08:53:15 +02:00
Mike McQuaid
b4d43e950f
Merge pull request #3401 from DomT4/vendor_or_na
...
go: various tweaks to recommendations
1.4.1
2017-12-16 13:34:22 +00:00
Vítor Galvão
deb37497e9
Merge pull request #3564 from commitay/revert-https-audit
...
Partially revert "Add audit check for URL schema"
2017-12-16 12:09:51 +00:00
Mike McQuaid
67c4402634
README: add tdsmith to significant contribution list.
2017-12-15 10:50:33 +00:00
ilovezfs
806345dfcb
Merge pull request #3581 from MikeMcQuaid/post_install_homebrew_path
...
post_install: use HOMEBREW_PATH.
2017-12-15 02:29:25 -08:00
Mike McQuaid
e504caa5a3
README: remove tdsmith from maintainers.
2017-12-15 10:19:43 +00:00
Mike McQuaid
65e719db25
post_install: use HOMEBREW_PATH.
...
Do this instead of appending the `HOMEBREW_PREFIX` as it's more
reliable at finding e.g. keg-only and requirement PATH additions. It's
not ideal as it overrides some environment filtering but the only real
alternative is recreate the entire build environment by shelling out to
`build.rb` in `formula_installer`.
2017-12-15 10:05:43 +00:00
Mike McQuaid
656776d925
Merge pull request #3578 from MikeMcQuaid/tests-no-duplicate-seed-output
...
tests: don't output seed multiple times.
2017-12-15 09:46:17 +00:00
Mike McQuaid
8ed1425ed7
tests: don't output seed multiple times.
...
This clutters up the output. Instead, hide it with a RSpec formatter and
generate and output it ourselves.
2017-12-15 09:14:44 +00:00
Mike McQuaid
0cbe1f3a05
Merge pull request #3579 from MikeMcQuaid/gist-logs-full-path
...
gist-logs: use full path to brew.
2017-12-14 20:15:15 +00:00
Mike McQuaid
8410950d14
java_requirement: use popen_read :err option.
2017-12-14 16:44:25 +00:00
Mike McQuaid
cdeb0b1f23
bump-formula-pr: use popen_read :err option.
2017-12-14 16:44:25 +00:00
Mike McQuaid
7a8f61c28c
gist-logs: use full path to brew.
...
This fixes the command with environment filtering enabled.
2017-12-14 16:44:25 +00:00
Mike McQuaid
c912d268f1
Merge pull request #3577 from MikeMcQuaid/python_requirement_tweaks
...
python_requirement: various tweaks/fixes.
2017-12-14 10:10:06 +00:00
Mike McQuaid
9f18123e07
Merge pull request #3576 from MikeMcQuaid/post-install-path
...
postinstall: add HOMEBREW_PREFIX/{,s}bin to PATH.
2017-12-14 10:09:54 +00:00
Mike McQuaid
f4e647cbc6
python_requirement: various tweaks/fixes.
...
- simplify the code by avoiding some unnecessary variables and rename
functions
- make more stuff private so implementation details don't leak
- make Python 2 binary `python2.7` to handle cases like those in
https://github.com/Homebrew/homebrew-core/issues/21500
- only set `PYTHONPATH` for system Python; Homebrew's Python doesn't
need it.
2017-12-14 09:21:26 +00:00
Mike McQuaid
b085da91c3
postinstall: add HOMEBREW_PREFIX/{,s}bin to PATH.
...
This avoids the need for workarounds such as:
https://github.com/Homebrew/homebrew-core/pull/21688
2017-12-14 09:20:07 +00:00
Mike McQuaid
71ebfa76c5
Merge pull request #3575 from MikeMcQuaid/new-maintainer-tweaks
...
New-Maintainer-Checklist: make some tweaks.
2017-12-13 11:23:35 +00:00
Mike McQuaid
e5853f4eaa
New-Maintainer-Checklist: make some tweaks.
...
- there are obligations on becoming a maintainer so firm these up a bit
- make clear there's a trial period after being invited to be a
maintainer.
2017-12-13 11:23:11 +00:00
Mike McQuaid
9a0981e0eb
Merge pull request #3566 from sjackman/path
...
Do not specify absolute paths to utilities
2017-12-13 08:56:31 +00:00
Mike McQuaid
4b849dacd2
Merge pull request #3573 from DomT4/python_dead_code
...
python: remove package_available? logic
2017-12-13 08:50:05 +00:00
Mike McQuaid
7352c90796
Merge pull request #3572 from DomT4/python
...
python: handle env filtering on pth check
2017-12-13 08:49:52 +00:00
Dominyk Tiller
5a018f8650
python: remove package_available? logic
...
It was added in https://github.com/Homebrew/legacy-homebrew/pull/37345 for
a use case discussed in https://github.com/Homebrew/legacy-homebrew/pull/37340
that never seems to have actually emerged. I can find no reference of it
ever having been used, despite it existing for 2+ years here.
2017-12-13 06:16:02 +00:00
Dominyk Tiller
d6ebdf1e62
python: handle env filtering on pth check
...
Since ENV filtering became the default this has been chucking
erroneous warnings from both `brew doctor` and things like `brew install pygobject`
about needing to run:
```
echo 'import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")' >> /Users/xyz/Library/Python/2.7/lib/python/site-packages/homebrew.pth
```
even though I had Homebrew's `python` installed.
2017-12-13 06:09:37 +00:00
Shaun Jackman
ce85e3b3b5
Remove with_system_path
...
The method with_system_path is no longer needed,
since environment filtering uses a default PATH.
2017-12-12 09:27:06 -08:00
Shaun Jackman
a4033c7196
Do not specify absolute paths to utilities
...
Specifying an absolute path to utilities is no longer needed,
since environment filtering uses a default PATH.
2017-12-12 09:25:16 -08:00
Markus Reiter
7b558e0522
Merge pull request #3563 from reitermarkus/fix-parenthesis
...
Fix messed up parenthesis.
2017-12-12 17:09:40 +01:00
Mike McQuaid
a9728c149e
Merge pull request #3568 from MikeMcQuaid/readme-tweaks
...
README: tweak contributing, donations sections.
2017-12-12 15:18:23 +00:00
Mike McQuaid
892c410a53
README: tweak contributing, donations sections.
...
- Add links to more stuff people could contribute to
- Add back option for one-off donations (fixes #3565 ).
2017-12-12 13:58:43 +00:00
commitay
8a63356aed
Partially revert "Add audit check for URL schema"
2017-12-12 08:22:23 +10:00
Markus Reiter
3c988c0403
Fix messed up parenthesis.
2017-12-11 23:01:37 +01:00
Mike McQuaid
f42d8acde3
Merge pull request #3559 from MikeMcQuaid/git-describe-1.4.0
...
brew.sh: latest HOMEBREW_VERSION is 1.4.0
1.4.0
2017-12-11 17:14:42 +00:00
Mike McQuaid
57f30bc1d3
Merge pull request #3556 from MikeMcQuaid/doctor-no-file-issue
...
doctor: tell people not to file issues.
2017-12-11 16:59:14 +00:00
Mike McQuaid
67a6c51606
brew.sh: latest HOMEBREW_VERSION is 1.4.0
2017-12-11 16:43:11 +00:00
Mike McQuaid
5f471ee289
doctor: tell people not to file issues.
...
This stuff doesn't matter.
2017-12-11 15:27:18 +00:00
Mike McQuaid
236e884511
Merge pull request #3553 from MikeMcQuaid/bump-formula-pr-messages
...
bump-formula-pr: improve error messages.
2017-12-11 09:44:43 +00:00
Mike McQuaid
9356c9bc84
Merge pull request #3554 from DomT4/caveats_2
...
caveats: fix fish caveats under env filtering
2017-12-11 09:37:32 +00:00
Dominyk Tiller
55d9750056
caveats: fix fish caveats under env filtering
2017-12-11 09:16:39 +00:00
Mike McQuaid
1babfb679d
bump-formula-pr: improve error messages.
...
- Be clearer about how URLs/tags/revisions/versions are specified in
error messages.
- Give a better error message if `hub` isn't configured.
2017-12-11 09:02:41 +00:00
Mike McQuaid
7411da36e5
Merge pull request #3551 from laurent22/master
...
Mentions how hub needs to be configured
2017-12-11 09:01:59 +00:00
Mike McQuaid
129ca7eff2
Merge pull request #3552 from DomT4/caveats
...
caveats: fix PKG_CONFIG_PATH nudge under env filtering
2017-12-11 08:25:46 +00:00
Dominyk Tiller
d70a406fe7
caveats: fix PKG_CONFIG_PATH nudge under env filtering
2017-12-11 06:26:56 +00:00
Mike McQuaid
837ea74f44
Merge pull request #3543 from MikeMcQuaid/remove-env-unsets
...
Remove some unset/checked environment checks
2017-12-10 17:46:29 +00:00
Mike McQuaid
7466b23d8a
Merge pull request #3529 from MikeMcQuaid/env-filtering-default
...
Default environment filtering to on for all users.
2017-12-10 17:46:19 +00:00
Mike McQuaid
b41eb9d306
Merge pull request #3510 from MikeMcQuaid/remove-bottle-hooks
...
hooks/bottles: remove bottle hooks.
2017-12-10 17:46:10 +00:00
Mike McQuaid
46775f556f
Merge pull request #3542 from MikeMcQuaid/xcode-9.2
...
Xcode 9.2
2017-12-10 17:45:51 +00:00
Laurent Cozic
fd8262ef7d
Mentions how hub needs to be configured
...
This is to address issue #3531
2017-12-10 11:08:15 +00:00