aboutsummaryrefslogtreecommitdiffstats
path: root/Library
AgeCommit message (Collapse)Author
2014-07-05Remove remaining references to "--fresh"Jack Nagel
This option was removed in 8cdf4d8ebf439eb9a9ffcaa0e455ced9459e1e41 because it did not do anything.
2014-07-05brew-pull: combine conditionalsJack Nagel
2014-07-05leptonica: update 1.71 bottle.BrewTestBot
2014-07-05leptonica 1.71Ed Porras
Closes #30621. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-05brew-pull: avoid the "var = ... rescue nil" danceJack Nagel
2014-07-05brew-pull: rescue a specific exceptionJack Nagel
2014-07-05brew-pull: use diff-tree and simplify diff parsingJack Nagel
2014-07-05brew-pull: let git-am attempt three-way merge if patch doesn't applyJack Nagel
2014-07-05Remove a RUBY_VERSION check, add a FIXME commentJack Nagel
2014-07-05sysdig: update 0.1.84 bottle.BrewTestBot
2014-07-05sysdig 0.1.84Stian Eikeland
Closes #30674. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-05juju: update 1.20.0 bottle.BrewTestBot
2014-07-05Juju 1.20.0Curtis Hovey
Closes #30672. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-05pyenv-virtualenv 20140705Yamashita Yuu
Changes: * Display information on auto-(de)?activation * Support manual (de)?activation with auto-activation enabled * Exit as error when (de)?activation failed * Use https://bootstrap.pypa.io/ to install setuptools and pip * Create backup of original virtualenv within `$(pyenv root)/versions` when `--upgrade` Closes #30669. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-05l-smash: update 1.11.8 bottle.BrewTestBot
2014-07-05l-smash v1.11.8Tsukasa OMOTO
Closes #30679. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-05Typesafe Activator 1.2.3Megazord
Closes #30677. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-05youtube-dl: update 2014.06.26 bottle.BrewTestBot
2014-07-05youtube-dl 2014.06.26Sergey M․
Closes #30676. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-05Use popen wrapperJack Nagel
Closes #30678.
2014-07-05Add popen wrapper that does not invoke the shellJack Nagel
2014-07-05chibi-scheme: add 0.7 bottle.BrewTestBot
Closes #30656. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-05chibi-scheme 0.7tizoc
2014-07-05boot2docker: update 1.1.0 bottle.BrewTestBot
Closes #30663. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-05boot2docker 1.1.0Misty De Meo
2014-07-05docker: update 1.1.0 bottle.BrewTestBot
Closes #30649. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-05docker 1.1.0Andy Shinn
2014-07-04wine: ENV.libxml2 needed if no CLTMartin Williams
libxml2 support will be compiled into wine if configure finds it. But configure will not find it in an 'XCode only' environment. Adding ENV.libxml2 to the formula appears to resolve the issue satisfactorily. (The formula specifies 'env :std'.) 'wine without libxml2' breaks at least one Windows InstallShield based 'exe style' installer. InstallShield is widely used to develop Windows installer packages, so there are probably many Windows installers that will fail in libxml2's absence. Closes #30591. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-04python: add --with-docs optionQiangning Hong
This option will install HTML documentation. Closes #30608. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-04pstoedit: depends on xzIan Lancaster
Closes #30622. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-04Fix fortran flag in MPICHWesley Bland
MPICH changed the way the fortran flag works. Instead of using --disable-fc and --disable-f77, it now just has one --disable-fortran. This patch updates the formula to follow that convention. Closes #30572. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-04Fix broken Perl::Curses link.Benjamin Weber
Closes #30662. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-04JBoss Forge 2.7.0.FinalGeorge Gastaldi
Closes #30666. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-04python3: don't install bottles on Xcode-only systemsTim D. Smith
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-04python: don't install bottles on Xcode-only systemsTim D. Smith
Closes #30633. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-04libestr: update 0.1.9 bottle.BrewTestBot
2014-07-04libestr 0.1.9David Holm
Closes #30640. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-04czmq: fix checksum for stealth updateKyle Mathews
Closes #30636. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-04fswatch: update 1.3.8 bottle.BrewTestBot
2014-07-04fswatch 1.3.8Enrico M. Crisostomo
Closes #30657. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-04Use a regular conditional instead of `next unless ...`Jack Nagel
2014-07-04Simpler "use the correct symlink" checksJack Nagel
When determining whether to remove a symlink during unlinking, we check three things: (a) Is the destination a symlink? (b) Does the destination exist? (c) Does the destination resolve to the source path? However, since we know that the source path exists, (b) is guaranteed if (a) and (c) are true. Thus checking (b) is unnecessary. Similarly, when creating a new symlink during linking, we first check to see if the link already exists by checking the same three criteria. Again, checking (b) is unnecessary here. See also the expanded test coverage in b52b579b. Addendum: although we know that the source path exists during unlinking, it doesn't matter. If the source path does not exist, then we still know we have a broken symlink pointing into the keg we are unlinking, and removing that symlink is still safe.
2014-07-04onetime: further improve test, fix --devel.Mike McQuaid
2014-07-04liblas: add 1.7.0 bottle.BrewTestBot
Closes #30647. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-04liblas: fix gdal, libgeotiff defined type conflictLarry Shaffer
2014-07-04onetime: add 1.81 bottle.BrewTestBot
Closes #30643. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-04onetime: add better test.Mike McQuaid
2014-07-04onetime 1.8.1 (new formula)Dominyk Tiller
Assists users in creating one-time pads. Still actively supported upstream, and has gathered a lot of renewed interest thanks to Hak5 covering the tool recently.
2014-07-04the_silver_searcher: update 0.23.0 bottle.BrewTestBot
Closes #30655. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-04the_silver_searcher 0.23.0George Hickman