diff options
| author | Viktor Szakats | 2015-01-04 04:27:16 +0100 |
|---|---|---|
| committer | Jack Nagel | 2015-01-03 23:03:08 -0500 |
| commit | f21076fcea3f00524ea1b8259b7fa08abc205164 (patch) | |
| tree | a189fca8f296ea9cd0dd8fc2b58afdb170bc5211 /share | |
| parent | a7589a5e3689dad4f67417af3ee34d2d26e5b891 (diff) | |
| download | homebrew-f21076fcea3f00524ea1b8259b7fa08abc205164.tar.bz2 | |
Use more https links and some link updates along the way
Closes #35529.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'share')
| -rw-r--r-- | share/doc/homebrew/Acceptable-Formulae.md | 2 | ||||
| -rw-r--r-- | share/doc/homebrew/Brew-Test-Bot.md | 2 | ||||
| -rw-r--r-- | share/doc/homebrew/Custom-GCC-and-cross-compilers.md | 2 | ||||
| -rw-r--r-- | share/doc/homebrew/FAQ.md | 8 | ||||
| -rw-r--r-- | share/doc/homebrew/Formula-Cookbook.md | 10 | ||||
| -rw-r--r-- | share/doc/homebrew/Gems,-Eggs-and-Perl-Modules.md | 2 | ||||
| -rw-r--r-- | share/doc/homebrew/Homebrew-and-Python.md | 6 | ||||
| -rw-r--r-- | share/doc/homebrew/Installation.md | 2 | ||||
| -rw-r--r-- | share/doc/homebrew/Maintainer-Guidelines.md | 6 | ||||
| -rw-r--r-- | share/doc/homebrew/Press.md | 4 | ||||
| -rw-r--r-- | share/doc/homebrew/Python-for-Formula-Authors.md | 2 | ||||
| -rw-r--r-- | share/doc/homebrew/Troubleshooting.md | 2 | ||||
| -rw-r--r-- | share/man/man1/brew.1 | 8 |
13 files changed, 28 insertions, 28 deletions
diff --git a/share/doc/homebrew/Acceptable-Formulae.md b/share/doc/homebrew/Acceptable-Formulae.md index ee9a4e5e9..ee6e82acc 100644 --- a/share/doc/homebrew/Acceptable-Formulae.md +++ b/share/doc/homebrew/Acceptable-Formulae.md @@ -72,7 +72,7 @@ always install the most recent version, should be put in ### Bindings First check that there is not already a binding available via -[`gem`](http://rubygems.org/) or [`pip`](http://www.pip-installer.org/) +[`gem`](https://rubygems.org/) or [`pip`](http://www.pip-installer.org/) etc.. If not, then put bindings in the formula they bind to. This is more diff --git a/share/doc/homebrew/Brew-Test-Bot.md b/share/doc/homebrew/Brew-Test-Bot.md index dbb1bc46a..b60d2b54c 100644 --- a/share/doc/homebrew/Brew-Test-Bot.md +++ b/share/doc/homebrew/Brew-Test-Bot.md @@ -1,6 +1,6 @@ # Brew Test Bot `brew test-bot` is the name for the automated review and testing system funded -by [our Kickstarter in 2013](http://www.kickstarter.com/projects/homebrew/brew-test-bot). +by [our Kickstarter in 2013](https://www.kickstarter.com/projects/homebrew/brew-test-bot). It comprises of four Mac Minis running in a data centre in England which host [a Jenkins instance at http://bot.brew.sh](http://bot.brew.sh) and run the diff --git a/share/doc/homebrew/Custom-GCC-and-cross-compilers.md b/share/doc/homebrew/Custom-GCC-and-cross-compilers.md index cd44ba556..0480e404b 100644 --- a/share/doc/homebrew/Custom-GCC-and-cross-compilers.md +++ b/share/doc/homebrew/Custom-GCC-and-cross-compilers.md @@ -9,6 +9,6 @@ Rather than merging in brews for either of these cases at this time, we're listi * Homebrew provides a `gcc` formula for use with Xcode 4.2+ or when needing C++11 support on earlier versions. * [Homebrew-versions](https://github.com/homebrew/homebrew-versions) provides an up to date GCC duplicates e.g. `brew install homebrew/versions/gcc48` -* [MSP430 development](http://github.com/Homebrew/homebrew/issues/issue/2336) +* [MSP430 development](https://github.com/Homebrew/homebrew/issues/issue/2336) * [OS161 development](https://github.com/maxpow4h/homebrew-os161) Your university probably uses a different version, replacing the URLs with your university's URLs will probably work. * [ARM-EABI](https://github.com/paxswill/homebrew-paxswill) provides an arm-none-eabi toolchain formula. diff --git a/share/doc/homebrew/FAQ.md b/share/doc/homebrew/FAQ.md index f090ea910..6b4842f10 100644 --- a/share/doc/homebrew/FAQ.md +++ b/share/doc/homebrew/FAQ.md @@ -77,10 +77,10 @@ Which is usually: `/Library/Caches/Homebrew` GUI apps on OS X don’t have `/usr/local/bin` in their `PATH` by default. If you’re on Mountain Lion, you can fix this by running `launchctl setenv PATH "/usr/local/bin:$PATH"`. [More details -here](http://stackoverflow.com/questions/135688/setting-environment-variables-in-os-x/5444960#5444960), +here](https://stackoverflow.com/questions/135688/setting-environment-variables-in-os-x/5444960#5444960), including how to set this across reboots. If you’re pre-Mountain Lion, [here’s an official -alternative](http://developer.apple.com/library/mac/#qa/qa1067/_index.html). +alternative](https://developer.apple.com/legacy/library/qa/qa1067/_index.html). ### How do I contribute to Homebrew? Read everything in https://github.com/Homebrew/homebrew/blob/master/CONTRIBUTING.md. @@ -125,11 +125,11 @@ We aim to bottle everything. Or: -`brew install http://raw.github.com/user/repo/branch/formula.rb` +`brew install https://raw.github.com/user/repo/branch/formula.rb` Or: -`brew pull http://github.com/Homebrew/homebrew/pulls/1234` +`brew pull https://github.com/Homebrew/homebrew/pulls/1234` ### Why does Homebrew insist I install to `/usr/local` with such vehemence? <a name="usrlocal"></a> diff --git a/share/doc/homebrew/Formula-Cookbook.md b/share/doc/homebrew/Formula-Cookbook.md index 9b9b0bae5..927450c23 100644 --- a/share/doc/homebrew/Formula-Cookbook.md +++ b/share/doc/homebrew/Formula-Cookbook.md @@ -62,7 +62,7 @@ Before contributing, make sure your package: * meets all our [Acceptable Formulae](Acceptable-Formulae.md) requirements * isn't already in Homebrew (check `brew search $FORMULA`) * isn't in another [Homebrew tap](https://github.com/Homebrew) -* isn't already waiting to be merged (check the [issue tracker](http://github.com/Homebrew/homebrew/issues)) +* isn't already waiting to be merged (check the [issue tracker](https://github.com/Homebrew/homebrew/issues)) * is still supported by upstream * has a stable, tagged version (i.e. not just a GitHub repository with no versions). See [Interesting-Taps-&-Branches](Interesting-Taps-&-Branches.md) for where pre-release and head-only versions belong. @@ -79,7 +79,7 @@ Probably. But we have rules to keep the quality and goals of Homebrew intact: Pl Formulae aren’t that complicated. [etl](https://github.com/Homebrew/homebrew/blob/master/Library/Formula/etl.rb) is as simple as it gets. -And then [Git](http://github.com/Homebrew/homebrew/tree/master/Library/Formula/git.rb) and [flac](http://github.com/Homebrew/homebrew/tree/master/Library/Formula/flac.rb) show more advanced functionality. +And then [Git](https://github.com/Homebrew/homebrew/tree/master/Library/Formula/git.rb) and [flac](https://github.com/Homebrew/homebrew/tree/master/Library/Formula/flac.rb) show more advanced functionality. A more complete [cheat-sheet](https://github.com/Homebrew/homebrew/blob/master/Library/Contributions/example-formula.rb) shows almost all the stuff you can use in a Formula. @@ -300,7 +300,7 @@ The only exception is stuff like “Apache Ant”. Apache sticks “Apache” in If you’re not sure about the name check the homepage, and check the Wikipedia page. -[ALSO CHECK WHAT DEBIAN CALLS IT!](http://www.debian.org/distrib/packages) +[ALSO CHECK WHAT DEBIAN CALLS IT!](https://www.debian.org/distrib/packages) Where Homebrew already has a formula called `foo` we typically do not accept requests to replace that formula with something else also named `foo`. This is to avoid both confusing and surprising users’ expectation. @@ -354,7 +354,7 @@ Ensure you reference any relevant GitHub issue `#12345` in the commit message. H Now you just need to push back to GitHub. -If you haven’t forked Homebrew yet, [go to the repo and hit the fork button](http://github.com/Homebrew/homebrew). +If you haven’t forked Homebrew yet, [go to the repo and hit the fork button](https://github.com/Homebrew/homebrew). If you have already forked Homebrew on Github, then you can manually push (just make sure you have been pulling from the Homebrew/homebrew master): @@ -921,7 +921,7 @@ class Foo < Formula end ``` -If that fixes it, please open an [issue](http://github.com/Homebrew/homebrew/issues) so that we can fix it for everyone. +If that fixes it, please open an [issue](https://github.com/Homebrew/homebrew/issues) so that we can fix it for everyone. ## Still won’t work? diff --git a/share/doc/homebrew/Gems,-Eggs-and-Perl-Modules.md b/share/doc/homebrew/Gems,-Eggs-and-Perl-Modules.md index d0111964c..f60ae4e31 100644 --- a/share/doc/homebrew/Gems,-Eggs-and-Perl-Modules.md +++ b/share/doc/homebrew/Gems,-Eggs-and-Perl-Modules.md @@ -44,7 +44,7 @@ _This is only recommended if you **don't** use a brewed Python._ On OS X, any [Python version X.Y also searches in `~/Library/Python/X.Y/lib/python/site-packages` for -modules](http://docs.python.org/2/install/index.html#inst-alt-install-user). +modules](https://docs.python.org/2/install/index.html#inst-alt-install-user). That dir might not yet exist, but you can create it: `mkdir -p ~/Library/Python/2.7/lib/python/site-packages` diff --git a/share/doc/homebrew/Homebrew-and-Python.md b/share/doc/homebrew/Homebrew-and-Python.md index c394a439e..728d9655e 100644 --- a/share/doc/homebrew/Homebrew-and-Python.md +++ b/share/doc/homebrew/Homebrew-and-Python.md @@ -3,7 +3,7 @@ This page describes how Python is handled in Homebrew for users. See [Python for Formula Authors](Python-for-Formula-Authors.md) for advice on writing formulae to install packages written in Python. -Homebrew should work with any [CPython](http://stackoverflow.com/questions/2324208/is-there-any-difference-between-cpython-and-python) and defaults to the OS X system Python. +Homebrew should work with any [CPython](https://stackoverflow.com/questions/2324208/is-there-any-difference-between-cpython-and-python) and defaults to the OS X system Python. Homebrew provides formulae to brew a more up-to-date Python 2.7.x (and 3.x). @@ -14,7 +14,7 @@ Homebrew provides formulae to brew a more up-to-date Python 2.7.x (and 3.x). Homebrew provides a formula for Python 2.7.x and one for Python 3.x. They don't conflict, so they can both be installed. The executable `python` will always point to the 2.x and `python3` to the 3.x version. -([Wondering which one to choose?](http://wiki.python.org/moin/Python2orPython3)) +([Wondering which one to choose?](https://wiki.python.org/moin/Python2orPython3)) ## Setuptools, Pip, etc. @@ -71,7 +71,7 @@ Homebrew builds bindings against the first `python` (and `python-config`) in you ## Policy for non-brewed Python bindings -These should be installed via `pip install <x>`. To discover, you can use `pip search` or <http://pypi.python.org/pypi>. (**Note:** System Python does not provide `pip`. Simply `easy_install pip` to fix that.) +These should be installed via `pip install <x>`. To discover, you can use `pip search` or <https://pypi.python.org/pypi>. (**Note:** System Python does not provide `pip`. Simply `easy_install pip` to fix that.) ## Brewed Python modules diff --git a/share/doc/homebrew/Installation.md b/share/doc/homebrew/Installation.md index b00ef0593..6eab9dd98 100644 --- a/share/doc/homebrew/Installation.md +++ b/share/doc/homebrew/Installation.md @@ -17,7 +17,7 @@ flexibility. They are listed below the requirements. * OS X 10.6 or higher <sup>[2](#2)</sup> * Command Line Tools for Xcode: `xcode-select --install`, https://developer.apple.com/downloads or - [Xcode](http://itunes.apple.com/us/app/xcode/id497799835) <sup>[3](#3)</sup> + [Xcode](https://itunes.apple.com/us/app/xcode/id497799835) <sup>[3](#3)</sup> * A Bourne-compatible shell for installation (e.g. bash or zsh) <sup>[4](#4)</sup> If you want to build software that utilizes X11 components, you’ll need diff --git a/share/doc/homebrew/Maintainer-Guidelines.md b/share/doc/homebrew/Maintainer-Guidelines.md index 514095331..01a902ea2 100644 --- a/share/doc/homebrew/Maintainer-Guidelines.md +++ b/share/doc/homebrew/Maintainer-Guidelines.md @@ -14,8 +14,8 @@ This is all that really matters: - Add aliases - Ensure it is not a dupe of anything that comes with OS X - Ensure it is not a library that can be installed with - [gem](http://en.wikipedia.org/wiki/RubyGems), - [cpan](http://en.wikipedia.org/wiki/Cpan) or + [gem](https://en.wikipedia.org/wiki/RubyGems), + [cpan](https://en.wikipedia.org/wiki/Cpan) or [pip](https://pip.pypa.io/en/latest). - Ensure the name is not in Ruby’s stdlib (Try `Formula.factory('readline')` in the `brew irb` shell) @@ -96,7 +96,7 @@ try to make this work. ## Common “Gotchas” 1. [Ensure you have set your username and email address - properly](http://help.github.com/git-email-settings/) + properly](https://help.github.com/articles/setting-your-email-in-git/) 2. Sign off cherry-picks if you amended them, [GitX-dev](https://github.com/rowanj/gitx) can do this, otherwise there is a command line flag for it) 3. If the commit fixes a bug, use “Fixes \#104” syntax to close the bug diff --git a/share/doc/homebrew/Press.md b/share/doc/homebrew/Press.md index 8a7337836..322f954b0 100644 --- a/share/doc/homebrew/Press.md +++ b/share/doc/homebrew/Press.md @@ -1,12 +1,12 @@ # Press ### Featured -* [Homebrew: OS X’s Missing Package Manager](http://www.engineyard.com/blog/2010/homebrew-os-xs-missing-package-manager/) +* [Homebrew: OS X’s Missing Package Manager](https://blog.engineyard.com/2010/homebrew-os-xs-missing-package-manager/) * [MacPorts to Homebrew : New Packaging system for Mac OS X](http://blog.abhiomkar.in/2010/01/02/macports-to-homebrew-new-packaging-system-for-mac-os-x/) * [Installing the homebrew package manager for OS X](http://userprimary.net/posts/2010/08/19/installing-homebrew-for-OSX/) * [Conheça o Homebrew, o Melhor Gerenciador de Pacotes para Mac OS](http://pedromenezes.com/conheca-o-homebrew-o-melhor-gerenciador-de-pacotes-para-mac-os) (pt-BR) * [Homebrew on The Unofficial Apple Weblog (Homebrew, the perfect gift for command line lovers)](http://www.tuaw.com/2009/12/25/homebrew-the-perfect-gift-for-command-line-lovers/) (Dec, 2009) * [Homebrew](http://blog.secondplanetanimation.com/2011/04/16/homebrew/) -* [Gource visualization](http://www.youtube.com/watch?v=ZX0xCWANfW4) +* [Gource visualization](https://www.youtube.com/watch?v=ZX0xCWANfW4) ### Mentioned - [Celery Quick diff --git a/share/doc/homebrew/Python-for-Formula-Authors.md b/share/doc/homebrew/Python-for-Formula-Authors.md index 1f69e4239..c8b997970 100644 --- a/share/doc/homebrew/Python-for-Formula-Authors.md +++ b/share/doc/homebrew/Python-for-Formula-Authors.md @@ -188,7 +188,7 @@ Distribute (not to be confused with distutils) is an obsolete fork of setuptools ## What is `--single-version-externally-managed`? -`--single-version-externally-managed` ("SVEM") is a setuptools-only [argument to setup.py install](http://pythonhosted.org/setuptools/setuptools.html#install-run-easy-install-or-old-style-installation). The primary effect of SVEM is to use distutils to perform the install instead of using setuptools' `easy_install`. +`--single-version-externally-managed` ("SVEM") is a setuptools-only [argument to setup.py install](https://pythonhosted.org/setuptools/setuptools.html#install-run-easy-install-or-old-style-installation). The primary effect of SVEM is to use distutils to perform the install instead of using setuptools' `easy_install`. `easy_install` does a few things that we need to avoid: diff --git a/share/doc/homebrew/Troubleshooting.md b/share/doc/homebrew/Troubleshooting.md index d6b2f2298..5967a0a64 100644 --- a/share/doc/homebrew/Troubleshooting.md +++ b/share/doc/homebrew/Troubleshooting.md @@ -53,4 +53,4 @@ Thank you! [Gist]:https://gist.github.com [Apple Developer]:https://developer.apple.com/downloads [Java Developer Update]:http://support.apple.com/kb/DL1572 -[JDK 7]:http://docs.oracle.com/javase/7/docs/webnotes/install/mac/mac-install-faq.html +[JDK 7]:https://docs.oracle.com/javase/7/docs/webnotes/install/mac/mac-install-faq.html diff --git a/share/man/man1/brew.1 b/share/man/man1/brew.1 index 8d5a13146..f9f1d9b2a 100644 --- a/share/man/man1/brew.1 +++ b/share/man/man1/brew.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "BREW" "1" "December 2014" "Homebrew" "brew" +.TH "BREW" "1" "January 2015" "Homebrew" "brew" . .SH "NAME" \fBbrew\fR \- The missing package manager for OS X @@ -499,7 +499,7 @@ Homebrew can install formulae via URL, e\.g\. \fBhttps://raw\.github\.com/Homebr . .TP AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY -When using the S3 download strategy, Homebrew will look in these variables for access credentials (see \fIhttp://docs\.aws\.amazon\.com/fws/1\.1/GettingStartedGuide/index\.html?AWSCredentials\.html\fR to retrieve these access credentials from AWS)\. If they are not set, the S3 download strategy will download with a public (unsigned) URL\. +When using the S3 download strategy, Homebrew will look in these variables for access credentials (see \fIhttps://docs\.aws\.amazon\.com/cli/latest/userguide/cli\-chap\-getting\-started\.html#cli\-environment\fR to retrieve these access credentials from AWS)\. If they are not set, the S3 download strategy will download with a public (unsigned) URL\. . .TP BROWSER @@ -560,7 +560,7 @@ If set, Homebrew will use this editor when editing a single formula, or several . .TP HOMEBREW_GITHUB_API_TOKEN -A personal GitHub API Access token, which you can create at \fIhttps://github\.com/settings/applications\fR\. If set, GitHub will allow you a greater number of API requests\. See \fIhttp://developer\.github\.com/v3/#rate\-limiting\fR for more information\. Homebrew uses the GitHub API for features such as \fBbrew search\fR\. +A personal GitHub API Access token, which you can create at \fIhttps://github\.com/settings/applications\fR\. If set, GitHub will allow you a greater number of API requests\. See \fIhttps://developer\.github\.com/v3/#rate\-limiting\fR for more information\. Homebrew uses the GitHub API for features such as \fBbrew search\fR\. . .TP HOMEBREW_MAKE_JOBS @@ -655,4 +655,4 @@ Homebrew\'s current maintainers are Misty De Meo, Adam Vandenberg, Jack Nagel, M Homebrew was originally created by Max Howell\. . .SH "BUGS" -See Issues on GitHub: \fIhttp://github\.com/Homebrew/homebrew/issues\fR +See Issues on GitHub: \fIhttps://github\.com/Homebrew/homebrew/issues\fR |
