aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dos2unix.rb
AgeCommit message (Collapse)Author
2015-02-20dos2unix: update 7.2 bottle.BrewTestBot
2015-02-20dos2unix 7.2asaph
Closes #37006. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-10-31dos2unix: update 7.1 bottle.BrewTestBot
2014-10-31dos2unix 7.1asaph
Closes #33786. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-09-27dos2unix: add 7.0 bottle.BrewTestBot
2014-09-27dos2unix 7.0Brett Koonce
2014-09-02dos2unix devel 6.1-beta5Jack Nagel
2014-09-02dos2unix: add mirrorJack Nagel
Closes #32052.
2014-08-21dos2unix 6.0.6/devel 6.1-beta1Brett Koonce
Closes #31790.
2014-06-11dos2unix devel 6.0.6-beta1asaph
Closes #30064. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-05-02dos2unix remove patch that was for 6.0.4asaph
According to @jiefoxi's comment, the patch is only relevant for version 6.0.4. https://github.com/Homebrew/homebrew/pull/28647#issuecomment-41487843 Closes #28751. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-04-23dos2unix 6.0.5asaph
Closes #28647. Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-04-12dos2unix: apply upstream language patchjiefoxi
Closes #28322. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-04-09dos2unix: add tests for all executablesMike Naberezny
Closes #28283. Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-04-08dos2unix: improve test by reusing pathname and checking all outputMike Naberezny
Closes #28254. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-21dos2unix 6.0.5-beta11 (devel)asaph
Closes #27764. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-03-13dos2unix --devel 6.0.5-beta7asaph
Closes #27535. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-07dos2unix --devel 6.0.5-beta6asaph
Closes #27301. Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-02-27dos2unix: use Formula[]Adam Vandenberg
2014-02-25dos2unix --devel 6.0.5-beta5asaph
Closes #27002. Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-02-06dos2unix --devel 6.0.5-beta4asaph
Closes #26476. Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-02-01dos2unix --devel 6.0.5-beta3asaph
Closes #26322. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-01-15dos2unix: a testTed Pennings
Closes #25887. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-14dos2unix --devel 6.0.5-beta1asaph
Closes #25889. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-13dos2unix 6.0.4asaph
Closes #25859. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-02-19dos2unix 6.0.3Brett Koonce
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-19dos2unix 6.0.2Brett Koonce
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-13dos2unix: always use gettextJack Nagel
gettext is now bottled on three of the platforms we support, so remove the hackery and just depend on it. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-05dos2unix 6.0.1Brett Koonce
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-05-07dos2unix 6.0nibbles 2bits
Upgrade dos2unix to version 6.0. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-01-04dos2unix: specify Homebrew's CC, CPP, and CFLAGSJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-08dos2unix: use new homepageJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-08dos2unix 5.3.1Justin Hahn
This change upgrades dos2unix to release 5.3.1, eliminating the now duplicate unix2dos formula. This also introduces optional NLS support for dos2unix through the --enable-nls option. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-04-11Updated to dos2unix 3.2Sebastian Staudt
The source for dos2unix 3.1 wasn't available anymore. I switched to this slightly updated version. There are already newer versions on SourceForge, but I wanted to make it work again first. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-12Use ruby style for inheritance.Adam Vandenberg
2010-08-10Update formulae to use ENV.cflagsAdam Vandenberg
2010-08-07Update formulae for version 0.7Adam Vandenberg
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
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-23Added small DSL for formulasClinton R. Nixon
You can now use "url", "version", "homepage", and any checksums as class methods, like so: class Dos2unix <Formula url 'http://www.sfr-fresh.com/linux/misc/old/dos2unix-3.1.tar.gz' md5 '25ff56bab202de63ea6f6c211c416e96' homepage 'http://www.sfr-fresh.com/linux/misc/' end The previous usage ("@url = 'http://example.com/tarball.tgz'") still works, maintaining compatibility with previous formulas. "dos2unix.rb" is translated into the new format as an example.
2009-09-21ENV.cc; returns the compiler we useMax Howell
2009-09-21Don't hardcode 'gcc' in manual formulas.Adam Vandenberg
2009-08-12Updated dos2unix download URL.Adeel Ahmad Khan
Signed-off-by: Max Howell <max@methylblue.com>
2009-07-31Use our CFLAGS for dos2unixMax Howell
2009-07-23Fix issues with Pathname.install and arraysMax Howell
2009-06-15Rename mv_from to installMax Howell
2009-06-08dos2unix formulaMax Howell