| Age | Commit message (Collapse) | Author |
|
|
|
closes #37653
Closes #38667.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
|
|
Closes #38644.
Signed-off-by: Xu Cheng <xucheng@me.com>
|
|
|
|
Closes #34389.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
|
|
For consistency with downstream libxml2 deps.
Fixes #33993.
Closes #34125.
|
|
|
|
|
|
|
|
|
|
Closes #32883.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
|
|
Closes #31180.
|
|
|
|
Closes #29041.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
Closes #28927.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Closes #23229.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
|
|
Closes #24560.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
Fixes #24543.
|
|
|
|
|
|
|
|
Apply patch for build failure on OS X 10.6/7.
Closes #22438.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
|
|
Replaced the plethora of ternaries we've used all over the place to
determine whether x86_64 or i386 is called for.
|
|
Fixes #21338.
Closes #21341.
|
|
|
|
|
|
* Gdal: Use includes from brewed sqlite
* spatialite-tools 4.1.0
* librasterlite 1.1g
* libgaiagraphics 0.5
* Update to use new style `build.with?`
Closes #20341.
Signed-off-by: Samuel John <github@SamuelJohn.de>
|
|
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.
|
|
|
|
This patch is no longer needed for GDAL 1.10.
Closes #19550.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
|
|
Closes #19518.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Closes #19364.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
Removes any global methods from formulae, and moves #kext_prefix (which
seems to be at least somewhat abstractable) into the Formula class. The
only formula with global methods is now aspell; it (and its generating
script in contrib) has been changed to prefix that method with
`aspell_`, to minimize the risk of name collisions.
Closes #19331.
Closes #19343.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
|
|
Under normal circumstances, gdal loads libproj at runtime using
dlopen(), but this fails when installed in non-standard locations. Link
statically instead, which is what most other package managers seem to be
doing anyway.
Closes #18294.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
- In subversion and gdal, because they used
HOMEBREW_PREFIX/lib instead of
Formula.factory('sqlite').opt_prefix
Closes #17005.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|