aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/subversion.rb
AgeCommit message (Collapse)Author
2011-06-07subversion: compile against system sqliteAdam Vandenberg
2011-06-03Subversion 1.6.17Birger J. Nordølum
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-04-23Use ARGV.build_universal?Adam Vandenberg
2011-04-09Normalize use of MACOS_VERSIONAdam Vandenberg
2011-04-01subversion - safer caveatsAdam Vandenberg
2011-03-12Use ruby style for inheritance.Adam Vandenberg
2011-03-09subversion 1.6.16Adam Vandenberg
2011-03-09subversion - warn if JAVA_HOME is setDaniel Tang
Subversion's JavaHL library depends on JNI headers that are only available by installing Developer Tools. Setting JAVA_HOME to something in /System/Library breaks because JNI headers aren't symlinked into the framework directories here. I believe the proper JAVA_HOME setting, if necessary, is the output of /usr/libexec/java_home, but the same effect can be achieved by not setting JAVA_HOME at all. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-12-02updated formula to subversion 1.6.15Gerolf Seitz
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-11-18Use https for all GitHub URLsTianyi Cui
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-31Subversion - patch Java detectionAdam Vandenberg
Patch taken from MacPorts. Fixes #2976
2010-10-12Mark scons, cmake & pkg-config as build-time depsAdam Vandenberg
2010-10-02Update Subversion to 1.6.13Emmanuel Blot
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-17Fix Subversion + Perl compile on 10.5 [mkroehnert]Adam Vandenberg
2010-09-06subversion - fix audit warningAdam Vandenberg
2010-09-01Build the Ruby bindings.Graham Hughes
Signed-off-by: David Höppner <0xffea@gmail.com> * remove testing leftovers
2010-08-13Don't need +x on theseAdam Vandenberg
2010-08-10Document all existing install options.Adam Vandenberg
2010-08-07Use new symlink aliasesMax Howell
2010-07-21svn - build perl bindings with j1 for git-svn to workAdam Vandenberg
2010-07-03Adding a --unicode-path option to subversionSimon COURTOIS
Inspired from the +unicode_path variant of the Macports subversion package. This option activates a patch to enable Mac OS X unicode paths handling. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-28Subversion - neon arch check was inverted.Adam Vandenberg
2010-06-28Subversion - fix --with-zlib pathAdam Vandenberg
2010-06-28Subversion checks for pkg-config, so add dep.Adam Vandenberg
2010-06-21Update Subversion to 1.6.12Emmanuel Blot
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-16Subversion: enable perl bindingsAdam Vandenberg
"brew install subversion --perl" will now also build new Perl bindings. Fixes #1526
2010-06-01Subversion: flag for building Python bindingsAugie Fackler
Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Added caveats and cleaned up a bit.
2010-05-13subversion - add note about linking Java libsAdam Vandenberg
2010-05-10Subversion: --universal for Java-based IDE bindingsAdam Vandenberg
* Warn if Java bindings are built non-Universal
2010-05-10Subversion - Fix typo in java switch.Adam Vandenberg
2010-05-06Subversion - enable Java bindingsAdam Vandenberg
2010-04-18Subversion 1.6.11Adam Vandenberg
2010-03-02Update Subversion to 1.6.9Adam Vandenberg
2009-11-19Add alias support to formulaeAdam Vandenberg
* brew install will find an aliased formula * aliases are searched against * warn when creating a new formula that has an existing alias. If Subversion has an alias "svn", then warn when the user tries to create a new formula "svn". The formula can still be created, though the user should make sure it's not a duplicate of the existing aliased one. Subversion and Objective-Caml formulas get some alises here, so we have something to test against.
2009-11-07Remove Snow Leopard Subversion tweaksMax Howell
The tweaks didn't help for me, but making neon build a dylib rather than static lib did help. So remove them now.
2009-11-04disable neon version check to enable checkout of http/https reposJeremy Carbaugh
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2009-10-30Update Subversion to 1.6.6 and fix on Leopard.Adam Vandenberg
The "fixes" to this formula for 10.6 completely broke it on 10.5. The formula now has separate setup / deps handling for 10.5 and 10.6, which should work until Subversion 1.7 comes out some day and the Snow Leopard system deps break again.
2009-10-15s/require 'brewkit'/require 'formula'/gMax Howell
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
2009-09-30Force Subversion to link to Homebrew neonJacob Harris
Closes #59 Signed-off-by: Max Howell <max@methylblue.com> As I understand it, this is not required on 10.6. But then again this formula isn't really required on 10.6.
2009-09-21Dependency resolution with fancy syntaxMax Howell
Is it a DSL? No. But people call it that apparently. To add a dependency: class Doe <Formula depends_on 'ray' depends_on 'mee' => :optional depends_on 'far' => :recommended depends_on Sew.new end Sew would be a formula you have defined in this Formula file. This is useful, eg. see Python's formula. Formula specified in this fashion cannot be linked into the HOMEBREW_PREFIX, they are considered private libraries. This allows you to create custom installations that are very specific to your formula. More features to come, like specifying versions
2009-09-02Update Subersion to 1.6.5, add SSL support, turn off BDB support.Adam Vandenberg
2009-08-10RefactorMax Howell
Large refactor to Formula, mostly improving reliability and error handling but also layout and readability. General improvements so testing can be more complete. Patches are automatically downloaded and applied for Formula that return a list of urls from Formula::patches. Split out the brew command logic to facilitate testing. Facility from Adam Vandenberg to allow selective cleaning of files, added because Python doesn't work when stripped.
2009-08-02Add subversion formula.Adam Vandenberg