| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
Add some missing dependencies that can be found when building with
add-ons. Specifically disable add-ons that are known not to work.
Closes #29051.
Closes #26317.
|
|
Closes #27275.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
|
|
Closes #24940.
Closes #24822.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
New `depends_on :python` Dependency.
New `depends_on :python3` Dependency.
To avoid having multiple formulae with endings -py2 and -py3,
we will handle support for different pythons (2.x vs. 3.x)
in the same formula.
Further brewed vs. external python will be transparently supported.
The formula also gets a new object `python`, which is false if
no Python is available or the user has disabled it. Otherwise
it is defined and provides several support methods:
python.site_packages # the site-packages in the formula's Cellar
python.global_site_packages
python.binary # the full path to the python binary
python.prefix
python.version
python.version.major
python.version.minor
python.xy # => e.g. "python2.7"
python.incdir # includes of python
python.libdir # the python dylib library
python.pkg_config_path # used internally by brew
python.from_osx?
python.framework?
python.universal?
python.pypy?
python.standard_caveats # Text to set PYTHONPATH for python.from_osx?
python.if3then3 # => "" for 2.x and to "3" for 3.x.
Further, to avoid code duplication, `python` takes an optional
block that is run twice if the formula defines depends_on
:python AND :python3.
python do
system python, 'setup.py', "--prefix=#{prefix}"
end
Read more in the Homebrew wiki.
|
|
GitHub had a hiccough---SHA checksums really didn't change.
This reverts commit 5f4603b230c90d7ccc875f9ffe1e93900cf057b5.
This reverts commit 8320aca3f014f3b87b77fcd4316534f03a1a0475.
Ref #18501.
|
|
IO recieved a stealth update.
Closes #18508.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
|
|
Closes #16482.
|
|
Closes #15183.
|
|
make never completes. see: https://github.com/stevedekorte/io/issues/223
I've never put in a fails_with before, so this could be wrong.
Closes #14951.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Closes #14142.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
* Fix a build break on GCC
* Add some optional but useful dependencies
* Remove a no-op install
|
|
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
|
|
* And "mkdir" isntead of "Dir.mkdir"
* And "Dir[]" instead of "Dir.glob"
* Also style fixes and nitpicks
|
|
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
This shouldn't have been removed, apologies.
Refs #7460.
|
|
Closes #7460.
This is the last known stable version of Io. However it is very old. If you
can find a newer stable version, please add it!
Signed-off-by: Max Howell <max@methylblue.com>
|
|
Refs #7399
|
|
|
|
|
|
Recent HEAD builds of io now use this dependency.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
CMake seems to not be picking up the /usr/X11/include folder for libpng,
so hard-code it to allow compilation to work.
|
|
|
|
|
|
|
|
* Io switched its build system to `cmake`; adapt to that.
* Extract the `libsgml` formula.
* Install documentation.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Update formulas to make more idiomatic use of "inreplace", including
its new ability to take a list of files to act on.
|
|
|
|
|