As a PostgreSQL n00b, this is the information I wanted.
Ideally we’d set a default configuration location for postgres to look, however apparently, this is not possible.
Side note: it's about time we split caveats out. One of these is advise for failed builds, and I just added usage. Usage is hardly caveats, but generally usage is cool and we should encourage it as a separate section, and encourage people to add links perhaps.
Allow `build.with?` and similar methods to be used during the test
phase. The BuildOptions (`build`) are initialized with the
`Tab.used_options` unless explicitly overwritten on the command line.
So basically `build.with?` works in `def install` and in `test do` as
one would naively expect. (For the test, gramatically it should be
`built.with?` but who cares)
If a formula was installed `--with-python`, now the tests are also
run `--with-python`. This enables us to use the `python do ... end` in
a meaningful manner.
Using `python do ... end` blocks for the tests, because the bot.brew.sh has
system python per default and we need to set the PYTHONPATH for the test.
Potentially to different values for Python 2.x and 3.x.
Also adds `--with-fop` to build pdf docs aswell as adding unixodbc dep
on Mavericks which no longer include iodbc in the 10.9 SDK.
ClosesHomebrew/homebrew#20708.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
As it turns out, *nothing* in Homebrew that depends on libftdi is
compatible with libftdi 1.0.
avrdude doesn't even have a configure option for it, but will attempt to
link with it if libusb is also present.
lcdproc has a configure option, but instead of erroring out if it's not
found, it just silently compiles without it.
Rather than revert and wait (possibly forever) for these things to be
updated to the new library, I'm just adding the older version. It
installs alongside libftdi 1.0 without any conflicts.
glew adds "Requires: glu" to glew.pc, even though on fresh OS X installs
there will not be a glu.pc anywhere on the system (but the library
itself is in the system's OpenGL framework).
The requirement will actually be satisfied if XQuartz is installed, but
it's only a coincidence. So I'm removing this, which should allow gource
to build on systems without XQuartz. *shrug*
FixesHomebrew/homebrew#22025.
This is no longer generated by the new (recommended) configure-ng.py but
some older projects (like PyQWT) still need that file, so we first
run configure.py and copy over the generated pyqtconfig.py manually.
Then, we normally run and build with configure-ng.py.
FixesHomebrew/homebrew#21984
- Install the Python module `ansible` into the usual prefix, but use
`python.private_site_packages` (in `libexec`) for the deps.
- In oder for the `ansible` module to be useful, the deps are needed
and we insert the `python.private_site_packages` in the
`ansible/__init__.py` as a `sitedir`, to the `egg`s are working.
- Rewrote the `bin_wrapper` to be ready to be moved into
`python_helper` or something.
- With the brand new changes in the PythonInstalled dependency,
it is not necessary to set the `PYTHONPATH` if you want to use
the `python.private_site_packages` inside of the `libexec`.
However, you have to put the calls to `system python` inside of
a `python do … end` block (technical limitation of supporting
Python 2.x and 3.x in general).
* Fix URLs to use new upstream repo and use tag to track stable
releases.
- Fix homepage to use freecode site.
- Fix head URL.
* Now that isl needs to bootstrap before compile.
- Add :autoconf, :automake, :libtool as build dependencies, and run
./autogen.sh before configure.
* Enable verbose build output to help future debugging.