diff options
75 files changed, 106 insertions, 106 deletions
| diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d447ee6c0..01dec2968 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ Reporting Bugs  Please read:  * `brew doctor` -* [Troubleshooting Checklist](https://github.com/mxcl/homebrew/wiki/troubleshooting) +* [Troubleshooting Checklist](https://github.com/Homebrew/homebrew/wiki/troubleshooting)  **If you don't read these it will take us far longer to help you with your problem.** @@ -14,7 +14,7 @@ Contributing  ------------  Please read: -* [Formula Cookbook](https://github.com/mxcl/homebrew/wiki/Formula-Cookbook) -* [Acceptable Formulae](https://github.com/mxcl/homebrew/wiki/Acceptable-Formulae) +* [Formula Cookbook](https://github.com/Homebrew/homebrew/wiki/Formula-Cookbook) +* [Acceptable Formulae](https://github.com/Homebrew/homebrew/wiki/Acceptable-Formulae)  Thanks! diff --git a/Library/Contributions/cmd/brew-dirty.rb b/Library/Contributions/cmd/brew-dirty.rb index c0c1167f1..acf9885f8 100755 --- a/Library/Contributions/cmd/brew-dirty.rb +++ b/Library/Contributions/cmd/brew-dirty.rb @@ -1,4 +1,4 @@ -# See: http://github.com/mxcl/homebrew/issues/issue/1359 +# See: http://github.com/Homebrew/homebrew/issues/issue/1359  require 'keg' diff --git a/Library/Contributions/example-formula.rb b/Library/Contributions/example-formula.rb index f3cbf5d2d..345544f55 100644 --- a/Library/Contributions/example-formula.rb +++ b/Library/Contributions/example-formula.rb @@ -3,7 +3,7 @@ require 'formula'  # This is a non-functional example formula to showcase all features and  # therefore, its overly complex and dupes stuff just to comment on it.  # You may want to use `brew create` to start your own new formula! -# Documentation: https://github.com/mxcl/homebrew/wiki/Formula-Cookbook +# Documentation: https://github.com/Homebrew/homebrew/wiki/Formula-Cookbook  ## Naming -- Every Homebrew formula is a class of the type `Formula`. @@ -73,7 +73,7 @@ class ExampleFormula < Formula    # Bottles are pre-built and added by the Homebrew maintainers for you.    # If you maintain your own repository, you can add your own bottle links.    # Read in the wiki about how to provide bottles: -  # <https://github.com/mxcl/homebrew/wiki/Bottles> +  # <https://github.com/Homebrew/homebrew/wiki/Bottles>    bottle do      root_url 'http://mikemcquaid.com' # Optional root to calculate bottle URLs      prefix '/opt/homebrew' # Optional HOMEBREW_PREFIX in which the bottles were built. @@ -396,7 +396,7 @@ end  class AdditionalStuff < Formula    # Often, a second formula is used to download some resource -  # NOTE: This is going to change when https://github.com/mxcl/homebrew/pull/21714 happens. +  # NOTE: This is going to change when https://github.com/Homebrew/homebrew/pull/21714 happens.    url 'https://example.com/additional-stuff.tar.gz'    sha1 'deadbeef7890123456789012345678901234567890'  end @@ -404,7 +404,7 @@ end  __END__  # Room for a patch after the `__END__`  # Read in the wiki about how to get a patch in here: -#    https://github.com/mxcl/homebrew/wiki/Formula-Cookbook +#    https://github.com/Homebrew/homebrew/wiki/Formula-Cookbook  # In short, `brew install --interactive --git <formula>` and make your edits.  # Then `git diff >> path/to/your/formula.rb`  # Note, that HOMEBREW_PREFIX will be replaced in the path before it is diff --git a/Library/Contributions/manpages/brew.1.md b/Library/Contributions/manpages/brew.1.md index 6b0317569..e64f9b34c 100644 --- a/Library/Contributions/manpages/brew.1.md +++ b/Library/Contributions/manpages/brew.1.md @@ -415,7 +415,7 @@ by default:  Documentation for the included external commands as well as instructions for  creating your own can be found on the wiki: -<http://wiki.github.com/mxcl/homebrew/External-Commands> +<http://wiki.github.com/Homebrew/homebrew/External-Commands>  ## SPECIFYING FORMULAE @@ -426,13 +426,13 @@ can take several different forms:      e.g. `git`, `node`, `wget`.    * The fully-qualified name of a tapped formula: -    Sometimes a formula from a tapped repository may conflict with one in mxcl/master. +    Sometimes a formula from a tapped repository may conflict with one in Homebrew/homebrew.      You can still access these formulae by using a special syntax, e.g.      `homebrew/dupes/vim` or `homebrew/versions/node4`.    * An arbitrary URL:      Homebrew can install formulae via URL, e.g. -    `https://raw.github.com/mxcl/homebrew/master/Library/Formula/git.rb`. +    `https://raw.github.com/Homebrew/homebrew/master/Library/Formula/git.rb`.      The formula file will be cached for later use.  ## ENVIRONMENT @@ -578,7 +578,7 @@ If your proxy requires authentication:  ## SEE ALSO -Homebrew Wiki: <http://wiki.github.com/mxcl/homebrew/> +Homebrew Wiki: <http://wiki.github.com/Homebrew/homebrew/>  `git`(1), `git-log`(1) @@ -588,5 +588,5 @@ Max Howell, a splendid chap.  ## BUGS -See Issues on GitHub: <http://github.com/mxcl/homebrew/issues> +See Issues on GitHub: <http://github.com/Homebrew/homebrew/issues> diff --git a/Library/Formula/aacgain.rb b/Library/Formula/aacgain.rb index 97d8e5b89..7546f5787 100644 --- a/Library/Formula/aacgain.rb +++ b/Library/Formula/aacgain.rb @@ -5,7 +5,7 @@ class Aacgain < Formula    # This server will autocorrect a 1.9 url back to this 1.8 tarball.    # The 1.9 version mentioned on the website is pre-release, so make    # sure 1.9 is actually out before updating. -  # See: https://github.com/mxcl/homebrew/issues/16838 +  # See: https://github.com/Homebrew/homebrew/issues/16838    url 'http://aacgain.altosdesign.com/alvarez/aacgain-1.8.tar.bz2'    sha1 '331039c4231e4d85ae878795ce3095dd96dcbfdb' diff --git a/Library/Formula/aircrack-ng.rb b/Library/Formula/aircrack-ng.rb index c99a3aff6..fcdcc02cf 100644 --- a/Library/Formula/aircrack-ng.rb +++ b/Library/Formula/aircrack-ng.rb @@ -6,7 +6,7 @@ class AircrackNg < Formula    sha1 '16eed1a8cf06eb8274ae382150b56589b23adf77'    # Remove root requirement from OUI update script. See: -  # https://github.com/mxcl/homebrew/pull/12755 +  # https://github.com/Homebrew/homebrew/pull/12755    def patches      DATA    end diff --git a/Library/Formula/alure.rb b/Library/Formula/alure.rb index 02d947fbe..269a42e6d 100644 --- a/Library/Formula/alure.rb +++ b/Library/Formula/alure.rb @@ -16,7 +16,7 @@ class Alure < Formula    def install      # fix a broken include flags line, which fixes a build error.      # Not reported upstream. -    # https://github.com/mxcl/homebrew/pull/6368 +    # https://github.com/Homebrew/homebrew/pull/6368      inreplace 'CMakeLists.txt', '${VORBISFILE_CFLAGS}',                                  %x[pkg-config --cflags vorbisfile].chomp diff --git a/Library/Formula/automake.rb b/Library/Formula/automake.rb index ee9b125cf..389d23604 100644 --- a/Library/Formula/automake.rb +++ b/Library/Formula/automake.rb @@ -26,7 +26,7 @@ class Automake < Formula      system "make install"      # Our aclocal must go first. See: -    # https://github.com/mxcl/homebrew/issues/10618 +    # https://github.com/Homebrew/homebrew/issues/10618      (share/"aclocal/dirlist").write <<-EOS.undent        #{HOMEBREW_PREFIX}/share/aclocal        /usr/share/aclocal diff --git a/Library/Formula/boost.rb b/Library/Formula/boost.rb index 43a5de149..514c26dbc 100644 --- a/Library/Formula/boost.rb +++ b/Library/Formula/boost.rb @@ -126,7 +126,7 @@ class Boost < Formula      # The context library is implemented as x86_64 ASM, so it      # won't build on PPC or 32-bit builds -    # see https://github.com/mxcl/homebrew/issues/17646 +    # see https://github.com/Homebrew/homebrew/issues/17646      if Hardware::CPU.ppc? || Hardware::CPU.is_32_bit? || build.universal?        without_libraries << "context"        # The coroutine library depends on the context library. diff --git a/Library/Formula/cfengine.rb b/Library/Formula/cfengine.rb index acbca85a2..8f1a92751 100644 --- a/Library/Formula/cfengine.rb +++ b/Library/Formula/cfengine.rb @@ -1,7 +1,7 @@  require 'formula'  # https version doesn't download with system curl on Snow Leopard -# https://github.com/mxcl/homebrew/issues/20339 +# https://github.com/Homebrew/homebrew/issues/20339  class Cfengine < Formula    homepage 'http://cfengine.com/'    url 'http://cfengine.com/source-code/download?file=cfengine-3.5.2.tar.gz' diff --git a/Library/Formula/clucene.rb b/Library/Formula/clucene.rb index 76044e494..3b101f843 100644 --- a/Library/Formula/clucene.rb +++ b/Library/Formula/clucene.rb @@ -31,7 +31,7 @@ class Clucene < Formula      end      # Serialize the install step. See: -    # https://github.com/mxcl/homebrew/issues/8712 +    # https://github.com/Homebrew/homebrew/issues/8712      ENV.j1      system "make install"    end diff --git a/Library/Formula/cmigemo.rb b/Library/Formula/cmigemo.rb index 71044123a..cc7aeddfd 100644 --- a/Library/Formula/cmigemo.rb +++ b/Library/Formula/cmigemo.rb @@ -7,7 +7,7 @@ class Cmigemo < Formula    depends_on 'nkf' => :build -  # Patch per discussion at: https://github.com/mxcl/homebrew/pull/7005 +  # Patch per discussion at: https://github.com/Homebrew/homebrew/pull/7005    def patches      DATA    end diff --git a/Library/Formula/contacts.rb b/Library/Formula/contacts.rb index 1ba4e6a98..9dc444c71 100644 --- a/Library/Formula/contacts.rb +++ b/Library/Formula/contacts.rb @@ -10,7 +10,7 @@ class Contacts < Formula    sha1 '79526dd96e5b5297daaae6327c79de9366f94c87'    # Yes, it requires both Xcode *and* the CLT to build on 10.8 and newer; -  # see https://github.com/mxcl/homebrew/issues/21408 +  # see https://github.com/Homebrew/homebrew/issues/21408    depends_on :xcode    depends_on :clt if MacOS.version > :lion diff --git a/Library/Formula/dc3dd.rb b/Library/Formula/dc3dd.rb index b2a2fbada..2cf91d152 100644 --- a/Library/Formula/dc3dd.rb +++ b/Library/Formula/dc3dd.rb @@ -12,7 +12,7 @@ class Dc3dd < Formula                --infodir=#{info}]      # Check for stpncpy is broken, and the replacement fails to compile -    # on Lion and newer; see https://github.com/mxcl/homebrew/issues/21510 +    # on Lion and newer; see https://github.com/Homebrew/homebrew/issues/21510      args << "gl_cv_func_stpncpy=yes" if MacOS.version >= :lion      system "./configure", *args      system "make" diff --git a/Library/Formula/emacs.rb b/Library/Formula/emacs.rb index c79574594..712c3d1ba 100644 --- a/Library/Formula/emacs.rb +++ b/Library/Formula/emacs.rb @@ -105,7 +105,7 @@ class Emacs < Formula        if build.include? "with-x"          # These libs are not specified in xft's .pc. See:          # https://trac.macports.org/browser/trunk/dports/editors/emacs/Portfile#L74 -        # https://github.com/mxcl/homebrew/issues/8156 +        # https://github.com/Homebrew/homebrew/issues/8156          ENV.append 'LDFLAGS', '-lfreetype -lfontconfig'          args << "--with-x"          args << "--with-gif=no" << "--with-tiff=no" << "--with-jpeg=no" diff --git a/Library/Formula/fsv.rb b/Library/Formula/fsv.rb index fec45b1a6..9aca33d77 100644 --- a/Library/Formula/fsv.rb +++ b/Library/Formula/fsv.rb @@ -3,7 +3,7 @@ require 'formula'  class Fsv < Formula    homepage 'http://fsv.sourceforge.net/'    url 'https://github.com/natritmeyer/fsv.git', :tag => 'v0.9.1' -  # See https://github.com/mxcl/homebrew/pull/19161 for discussion and +  # See https://github.com/Homebrew/homebrew/pull/19161 for discussion and    # reason about why we use this fork here. Eventually upstream at    # 'https://github.com/mcuelenaere/fsv.git' should add tags!    # Also note the sourceforge repo (but that seems no longer maintained.) diff --git a/Library/Formula/gfortran.rb b/Library/Formula/gfortran.rb index 52e8797bf..31032d13a 100644 --- a/Library/Formula/gfortran.rb +++ b/Library/Formula/gfortran.rb @@ -62,7 +62,7 @@ class Gfortran < Formula        '--disable-nls'      ] -    # https://github.com/mxcl/homebrew/issues/19584#issuecomment-19661219 +    # https://github.com/Homebrew/homebrew/issues/19584#issuecomment-19661219      if build.include? 'enable-multilib' and MacOS.prefer_64_bit?        args << '--enable-multilib'      else diff --git a/Library/Formula/ggobi.rb b/Library/Formula/ggobi.rb index 03bcae8ad..43ada8541 100644 --- a/Library/Formula/ggobi.rb +++ b/Library/Formula/ggobi.rb @@ -16,7 +16,7 @@ class Ggobi < Formula    depends_on :x11    # Several files reference "line 0", which gcc accepts but clang doesn't -  # See https://github.com/mxcl/homebrew/pull/13423 +  # See https://github.com/Homebrew/homebrew/pull/13423    def patches; DATA; end    def install diff --git a/Library/Formula/ghc.rb b/Library/Formula/ghc.rb index f66a7392f..75308bdc6 100644 --- a/Library/Formula/ghc.rb +++ b/Library/Formula/ghc.rb @@ -70,7 +70,7 @@ class Ghc < Formula      cd 'Ghcsource' do        # Fix an assertion when linking ghc with llvm-gcc -      # https://github.com/mxcl/homebrew/issues/13650 +      # https://github.com/Homebrew/homebrew/issues/13650        ENV['LD'] = 'ld'        if Hardware.is_64_bit? and not build.build_32_bit? diff --git a/Library/Formula/gmp.rb b/Library/Formula/gmp.rb index 86f05d6e9..886877f9c 100644 --- a/Library/Formula/gmp.rb +++ b/Library/Formula/gmp.rb @@ -31,7 +31,7 @@ class Gmp < Formula      if build.build_32_bit?        ENV.m32        ENV.append 'ABI', '32' -      # https://github.com/mxcl/homebrew/issues/20693 +      # https://github.com/Homebrew/homebrew/issues/20693        args << "--disable-assembly"      elsif build.bottle?        args << "--disable-assembly" diff --git a/Library/Formula/goffice.rb b/Library/Formula/goffice.rb index e9b27b118..517730de3 100644 --- a/Library/Formula/goffice.rb +++ b/Library/Formula/goffice.rb @@ -14,7 +14,7 @@ class Goffice < Formula    depends_on :x11    # Fix for goffice trying to use a retired pcre api. Reported/source = Macports -  # https://github.com/mxcl/homebrew/issues/15171 +  # https://github.com/Homebrew/homebrew/issues/15171    def patches      DATA    end diff --git a/Library/Formula/gst-plugins-ugly.rb b/Library/Formula/gst-plugins-ugly.rb index 425b4bbac..776bd4785 100644 --- a/Library/Formula/gst-plugins-ugly.rb +++ b/Library/Formula/gst-plugins-ugly.rb @@ -60,7 +60,7 @@ class GstPluginsUgly < Formula      if build.with? "opencore-amr"        # Fixes build error, missing includes. -      # https://github.com/mxcl/homebrew/issues/14078 +      # https://github.com/Homebrew/homebrew/issues/14078        nbcflags = `pkg-config --cflags opencore-amrnb`.chomp        wbcflags = `pkg-config --cflags opencore-amrwb`.chomp        ENV['AMRNB_CFLAGS'] = nbcflags + "-I#{HOMEBREW_PREFIX}/include/opencore-amrnb" diff --git a/Library/Formula/help2man.rb b/Library/Formula/help2man.rb index 192bce2b5..db5c7b35a 100644 --- a/Library/Formula/help2man.rb +++ b/Library/Formula/help2man.rb @@ -8,7 +8,7 @@ class Help2man < Formula    def install      # install is not parallel safe -    # see https://github.com/mxcl/homebrew/issues/12609 +    # see https://github.com/Homebrew/homebrew/issues/12609      ENV.j1      system "./configure", "--prefix=#{prefix}" diff --git a/Library/Formula/htmldoc.rb b/Library/Formula/htmldoc.rb index c47bc1732..88bccccec 100644 --- a/Library/Formula/htmldoc.rb +++ b/Library/Formula/htmldoc.rb @@ -6,7 +6,7 @@ class Htmldoc < Formula    sha1 '472908e0aafed1cedfbacd8ed3168734aebdec4b'    # Fixes building with libpng-1.5, from upstream svn r1668 via Fedora -  # Remove at version 1.8.28. cf. https://github.com/mxcl/homebrew/issues/15915 +  # Remove at version 1.8.28. cf. https://github.com/Homebrew/homebrew/issues/15915    def patches      { :p0 => 'http://pkgs.fedoraproject.org/cgit/htmldoc.git/plain/htmldoc-1.8.27-libpng15.patch?h=f18' }    end diff --git a/Library/Formula/icu4c.rb b/Library/Formula/icu4c.rb index e8c3c4f7e..8333b4df0 100644 --- a/Library/Formula/icu4c.rb +++ b/Library/Formula/icu4c.rb @@ -14,7 +14,7 @@ class Icu4c < Formula      sha1 'f09512efdb8b12edfe080492a5a1c0bafc5a2941' => :lion    end -  keg_only "Conflicts; see: https://github.com/mxcl/homebrew/issues/issue/167" +  keg_only "Conflicts; see: https://github.com/Homebrew/homebrew/issues/issue/167"    option :universal    option :cxx11 diff --git a/Library/Formula/iozone.rb b/Library/Formula/iozone.rb index 1bc0345fb..5b2f6dc51 100644 --- a/Library/Formula/iozone.rb +++ b/Library/Formula/iozone.rb @@ -6,7 +6,7 @@ class Iozone < Formula    sha1 '397c2aae67f74dc9d189912b2e72ca594b790101'    # Patch by @nijotz, adds O_DIRECT support when using -I flag. -  # See: https://github.com/mxcl/homebrew/pull/10585 +  # See: https://github.com/Homebrew/homebrew/pull/10585    def patches      DATA    end diff --git a/Library/Formula/irssi.rb b/Library/Formula/irssi.rb index 47f3729a3..ff6be885d 100644 --- a/Library/Formula/irssi.rb +++ b/Library/Formula/irssi.rb @@ -7,7 +7,7 @@ class Irssi < Formula    option "without-perl", "Build without perl support." -  depends_on :clt # See https://github.com/mxcl/homebrew/issues/20952 +  depends_on :clt # See https://github.com/Homebrew/homebrew/issues/20952    depends_on 'pkg-config' => :build    depends_on 'glib' diff --git a/Library/Formula/jack.rb b/Library/Formula/jack.rb index 9d573d16e..8d09711bd 100644 --- a/Library/Formula/jack.rb +++ b/Library/Formula/jack.rb @@ -6,7 +6,7 @@ require 'formula'  # JACKOSX, a pre-built binary form for which the source is not available.  # If you require JACKv2, you should use that. Otherwise, this formula should  # operate fine. -# Please see https://github.com/mxcl/homebrew/pull/22043 for more info +# Please see https://github.com/Homebrew/homebrew/pull/22043 for more info  class Jack < Formula    homepage 'http://jackaudio.org'    url 'http://jackaudio.org/downloads/jack-audio-connection-kit-0.121.3.tar.gz' diff --git a/Library/Formula/libcaca.rb b/Library/Formula/libcaca.rb index 99bc09ff7..2db350bb0 100644 --- a/Library/Formula/libcaca.rb +++ b/Library/Formula/libcaca.rb @@ -25,7 +25,7 @@ class Libcaca < Formula    def install      # Some people can't compile when Java is enabled. See: -    # https://github.com/mxcl/homebrew/issues/issue/2049 +    # https://github.com/Homebrew/homebrew/issues/issue/2049      # Don't build csharp bindings      # Don't build ruby bindings; fails for adamv w/ Homebrew Ruby 1.9.2 diff --git a/Library/Formula/libffi.rb b/Library/Formula/libffi.rb index c69ff4873..2f526e3d2 100644 --- a/Library/Formula/libffi.rb +++ b/Library/Formula/libffi.rb @@ -9,7 +9,7 @@ class Libffi < Formula    keg_only :provided_by_osx, "Some formulae require a newer version of libffi."    def install -    ENV.deparallelize # https://github.com/mxcl/homebrew/pull/19267 +    ENV.deparallelize # https://github.com/Homebrew/homebrew/pull/19267      ENV.universal_binary      system "./configure", "--disable-debug", "--disable-dependency-tracking",                            "--prefix=#{prefix}" diff --git a/Library/Formula/libsamplerate.rb b/Library/Formula/libsamplerate.rb index 1eb7bf14d..1206b4217 100644 --- a/Library/Formula/libsamplerate.rb +++ b/Library/Formula/libsamplerate.rb @@ -11,7 +11,7 @@ class Libsamplerate < Formula    # configure adds `/Developer/Headers/FlatCarbon` to the include, but this is    # very deprecated. Correct the use of Carbon.h to the non-flat location. -  # See: https://github.com/mxcl/homebrew/pull/10875 +  # See: https://github.com/Homebrew/homebrew/pull/10875    def patches; DATA; end    def install diff --git a/Library/Formula/libxml2.rb b/Library/Formula/libxml2.rb index 0f64ebd42..79133b5cb 100644 --- a/Library/Formula/libxml2.rb +++ b/Library/Formula/libxml2.rb @@ -8,7 +8,7 @@ class Libxml2 < Formula      mirror 'http://xmlsoft.org/sources/libxml2-2.9.1.tar.gz'      sha256 'fd3c64cb66f2c4ea27e934d275904d92cec494a8e8405613780cbc8a71680fdb' -    # 2.9.1 cannot build with Python 2.6: https://github.com/mxcl/homebrew/issues/20249 +    # 2.9.1 cannot build with Python 2.6: https://github.com/Homebrew/homebrew/issues/20249      if MacOS.version <= :snow_leopard        depends_on :python => ["2.7", :optional]      else diff --git a/Library/Formula/lua.rb b/Library/Formula/lua.rb index 970dafe41..060dfd001 100644 --- a/Library/Formula/lua.rb +++ b/Library/Formula/lua.rb @@ -17,7 +17,7 @@ class Lua < Formula    option 'without-sigaction', 'Revert to ANSI signal instead of improved POSIX sigaction'    # Be sure to build a dylib, or else runtime modules will pull in another static copy of liblua = crashy -  # See: https://github.com/mxcl/homebrew/pull/5043 +  # See: https://github.com/Homebrew/homebrew/pull/5043    def patches      p = [DATA]      # sigaction provided by posix signalling power patch from diff --git a/Library/Formula/macvim.rb b/Library/Formula/macvim.rb index 633f55311..4a5817ecc 100644 --- a/Library/Formula/macvim.rb +++ b/Library/Formula/macvim.rb @@ -78,7 +78,7 @@ class Macvim < Formula      # to wait until MacVim is really able to link against different Python's      # on the Mac. Note configure detects brewed python correctly, but that      # is ignored. -    # See https://github.com/mxcl/homebrew/issues/17908 +    # See https://github.com/Homebrew/homebrew/issues/17908      if python2 and python2.framework? and not build.with? "python3"        ENV.prepend 'LDFLAGS', "-L#{python2.libdir} -F#{python2.framework}"      end diff --git a/Library/Formula/mariadb.rb b/Library/Formula/mariadb.rb index a8434a859..e4f378274 100644 --- a/Library/Formula/mariadb.rb +++ b/Library/Formula/mariadb.rb @@ -45,7 +45,7 @@ class Mariadb < Formula    def install      # Don't hard-code the libtool path. See: -    # https://github.com/mxcl/homebrew/issues/20185 +    # https://github.com/Homebrew/homebrew/issues/20185      inreplace "cmake/libutils.cmake",        "COMMAND /usr/bin/libtool -static -o ${TARGET_LOCATION}",        "COMMAND libtool -static -o ${TARGET_LOCATION}" @@ -109,7 +109,7 @@ class Mariadb < Formula      unless build.include? 'client-only'        # Don't create databases inside of the prefix! -      # See: https://github.com/mxcl/homebrew/issues/4975 +      # See: https://github.com/Homebrew/homebrew/issues/4975        rm_rf prefix+'data'        (prefix+'mysql-test').rmtree unless build.with? 'tests' # save 121MB! diff --git a/Library/Formula/mongrel2.rb b/Library/Formula/mongrel2.rb index 7ac791386..8ecc6af90 100644 --- a/Library/Formula/mongrel2.rb +++ b/Library/Formula/mongrel2.rb @@ -18,7 +18,7 @@ class Mongrel2 < Formula    def install      # Build in serial. See: -    # https://github.com/mxcl/homebrew/issues/8719 +    # https://github.com/Homebrew/homebrew/issues/8719      ENV.j1      # Mongrel2 pulls from these ENV vars instead diff --git a/Library/Formula/mpfr.rb b/Library/Formula/mpfr.rb index 692281b2c..1fc0d1a05 100644 --- a/Library/Formula/mpfr.rb +++ b/Library/Formula/mpfr.rb @@ -23,7 +23,7 @@ class Mpfr < Formula      build 421      cause <<-EOS.undent        clang build 421 segfaults while building in superenv; -      see https://github.com/mxcl/homebrew/issues/15061 +      see https://github.com/Homebrew/homebrew/issues/15061        EOS    end diff --git a/Library/Formula/msdl.rb b/Library/Formula/msdl.rb index 15023f3bb..caf63e8fd 100644 --- a/Library/Formula/msdl.rb +++ b/Library/Formula/msdl.rb @@ -7,7 +7,7 @@ class Msdl < Formula    sha1 'd30a637fc8be4ea80ddd373e428542bef15297fb'    # Fixes linker error under clang; apparently reported upstream: -  # https://github.com/mxcl/homebrew/pull/13907 +  # https://github.com/Homebrew/homebrew/pull/13907    def patches      DATA    end diff --git a/Library/Formula/mysql-cluster.rb b/Library/Formula/mysql-cluster.rb index 488b1ce8a..7788a0395 100644 --- a/Library/Formula/mysql-cluster.rb +++ b/Library/Formula/mysql-cluster.rb @@ -96,7 +96,7 @@ class MysqlCluster < Formula      plist_path('mysqld').chmod 0644      # Don't create databases inside of the prefix! -    # See: https://github.com/mxcl/homebrew/issues/4975 +    # See: https://github.com/Homebrew/homebrew/issues/4975      rm_rf prefix+'data'      # Link the setup script into bin diff --git a/Library/Formula/mysql.rb b/Library/Formula/mysql.rb index 55be27461..3ba610dea 100644 --- a/Library/Formula/mysql.rb +++ b/Library/Formula/mysql.rb @@ -32,12 +32,12 @@ class Mysql < Formula    fails_with :llvm do      build 2326 -    cause "https://github.com/mxcl/homebrew/issues/issue/144" +    cause "https://github.com/Homebrew/homebrew/issues/issue/144"    end    def install      # Don't hard-code the libtool path. See: -    # https://github.com/mxcl/homebrew/issues/20185 +    # https://github.com/Homebrew/homebrew/issues/20185      inreplace "cmake/libutils.cmake",        "COMMAND /usr/bin/libtool -static -o ${TARGET_LOCATION}",        "COMMAND libtool -static -o ${TARGET_LOCATION}" @@ -102,7 +102,7 @@ class Mysql < Formula      system "make install"      # Don't create databases inside of the prefix! -    # See: https://github.com/mxcl/homebrew/issues/4975 +    # See: https://github.com/Homebrew/homebrew/issues/4975      rm_rf prefix+'data'      # Link the setup script into bin diff --git a/Library/Formula/ossp-uuid.rb b/Library/Formula/ossp-uuid.rb index bbe9b98d4..fafd14923 100644 --- a/Library/Formula/ossp-uuid.rb +++ b/Library/Formula/ossp-uuid.rb @@ -17,7 +17,7 @@ class OsspUuid < Formula    option :universal    option "32-bit" -  # see https://github.com/mxcl/homebrew/issues/16077 +  # see https://github.com/Homebrew/homebrew/issues/16077    keg_only "OS X provides a uuid.h which conflicts with ossp-uuid's header."    def install diff --git a/Library/Formula/percona-server.rb b/Library/Formula/percona-server.rb index 84ddda780..cbae5d6a0 100644 --- a/Library/Formula/percona-server.rb +++ b/Library/Formula/percona-server.rb @@ -27,7 +27,7 @@ class PerconaServer < Formula    fails_with :llvm do      build 2334 -    cause "https://github.com/mxcl/homebrew/issues/issue/144" +    cause "https://github.com/Homebrew/homebrew/issues/issue/144"    end    # Where the database files should be located. Existing installs have them @@ -39,14 +39,14 @@ class PerconaServer < Formula    def patches      # Fixes percona server 5.6 compilation on OS X 10.9, based on -    # https://github.com/mxcl/homebrew/commit/aad5d93f4fabbf69766deb83780d3a6eeab7061a +    # https://github.com/Homebrew/homebrew/commit/aad5d93f4fabbf69766deb83780d3a6eeab7061a      # for mysql 5.6      "https://gist.github.com/israelshirk/7cc640498cf264ebfce3/raw/846839c84647c4190ad683e4cbf0fabcd8931f97/gistfile1.txt"    end    def install      # Don't hard-code the libtool path. See: -    # https://github.com/mxcl/homebrew/issues/20185 +    # https://github.com/Homebrew/homebrew/issues/20185      inreplace "cmake/libutils.cmake",        "COMMAND /usr/bin/libtool -static -o ${TARGET_LOCATION}",        "COMMAND libtool -static -o ${TARGET_LOCATION}" @@ -108,7 +108,7 @@ class PerconaServer < Formula      system "make install"      # Don't create databases inside of the prefix! -    # See: https://github.com/mxcl/homebrew/issues/4975 +    # See: https://github.com/Homebrew/homebrew/issues/4975      rm_rf prefix+'data'      # Link the setup script into bin diff --git a/Library/Formula/physfs.rb b/Library/Formula/physfs.rb index 03bd556b6..47d557ac7 100644 --- a/Library/Formula/physfs.rb +++ b/Library/Formula/physfs.rb @@ -4,7 +4,7 @@ class Physfs < Formula    homepage 'http://icculus.org/physfs/'    url 'http://icculus.org/physfs/downloads/physfs-2.0.3.tar.bz2'    # Upstream not responding: -  # https://github.com/mxcl/homebrew/issues/17203 +  # https://github.com/Homebrew/homebrew/issues/17203    mirror 'https://dl.dropbox.com/u/3252883/Games/physfs-2.0.3.tar.bz2'    sha1 '327308c777009a41bbabb9159b18c4c0ac069537' diff --git a/Library/Formula/polygen.rb b/Library/Formula/polygen.rb index 399e2d645..bb7de0f08 100644 --- a/Library/Formula/polygen.rb +++ b/Library/Formula/polygen.rb @@ -10,7 +10,7 @@ class Polygen < Formula    def install      cd 'src' do        # BSD echo doesn't grok -e, which the makefile tries to use, -      # with weird results; see https://github.com/mxcl/homebrew/pull/21344 +      # with weird results; see https://github.com/Homebrew/homebrew/pull/21344        inreplace 'Makefile', '-e "open Absyn\n"', '"open Absyn"'        system 'make'        bin.install 'polygen' diff --git a/Library/Formula/postgres-xc.rb b/Library/Formula/postgres-xc.rb index 4c8e01495..6712aff22 100644 --- a/Library/Formula/postgres-xc.rb +++ b/Library/Formula/postgres-xc.rb @@ -22,7 +22,7 @@ class PostgresXc < Formula      cause 'Miscompilation resulting in segfault on queries'    end -  # Fix PL/Python build: https://github.com/mxcl/homebrew/issues/11162 +  # Fix PL/Python build: https://github.com/Homebrew/homebrew/issues/11162    # Fix uuid-ossp build issues: http://archives.postgresql.org/pgsql-general/2012-07/msg00654.php    def patches      DATA diff --git a/Library/Formula/postgresql.rb b/Library/Formula/postgresql.rb index 1194e7e16..beda1a322 100644 --- a/Library/Formula/postgresql.rb +++ b/Library/Formula/postgresql.rb @@ -84,7 +84,7 @@ class Postgresql < Formula      s = <<-EOS.undent      If builds of PostgreSQL 9 are failing and you have version 8.x installed,      you may need to remove the previous version first. See: -      https://github.com/mxcl/homebrew/issues/issue/2510 +      https://github.com/Homebrew/homebrew/issues/issue/2510      To migrate existing data from a previous major version (pre-9.3) of PostgreSQL, see:        http://www.postgresql.org/docs/9.3/static/upgrading.html diff --git a/Library/Formula/protobuf.rb b/Library/Formula/protobuf.rb index c7dd07c1f..bd49789a5 100644 --- a/Library/Formula/protobuf.rb +++ b/Library/Formula/protobuf.rb @@ -16,7 +16,7 @@ class Protobuf < Formula    def install      # Don't build in debug mode. See: -    # https://github.com/mxcl/homebrew/issues/9279 +    # https://github.com/Homebrew/homebrew/issues/9279      # http://code.google.com/p/protobuf/source/browse/trunk/configure.ac#61      ENV.prepend 'CXXFLAGS', '-DNDEBUG'      ENV.universal_binary if build.universal? diff --git a/Library/Formula/py2cairo.rb b/Library/Formula/py2cairo.rb index 1d545ac91..d7db92fbe 100644 --- a/Library/Formula/py2cairo.rb +++ b/Library/Formula/py2cairo.rb @@ -24,8 +24,8 @@ class Py2cairo < Formula      python do        # waf miscompiles py2cairo on >= lion with HB python, linking the wrong        # Python Library.  So add a LINKFLAG that sets the path. -      # https://github.com/mxcl/homebrew/issues/12893 -      # https://github.com/mxcl/homebrew/issues/14781 +      # https://github.com/Homebrew/homebrew/issues/12893 +      # https://github.com/Homebrew/homebrew/issues/14781        # https://bugs.freedesktop.org/show_bug.cgi?id=51544        ENV['LINKFLAGS'] = "-L#{python.libdir}"        system "./waf", "configure", "--prefix=#{prefix}", "--nopyc", "--nopyo" diff --git a/Library/Formula/pypy.rb b/Library/Formula/pypy.rb index 5ac30817a..8e0302232 100644 --- a/Library/Formula/pypy.rb +++ b/Library/Formula/pypy.rb @@ -21,7 +21,7 @@ class Pypy < Formula    def install      # Having PYTHONPATH set can cause the build to fail if another      # Python is present, e.g. a Homebrew-provided Python 2.x -    # See https://github.com/mxcl/homebrew/issues/24364 +    # See https://github.com/Homebrew/homebrew/issues/24364      ENV['PYTHONPATH'] = ''      rmtree 'site-packages' @@ -85,7 +85,7 @@ class Pypy < Formula          #{scripts_folder}/easy_install pip          #{scripts_folder}/pip install --upgrade setuptools -    See: https://github.com/mxcl/homebrew/wiki/Homebrew-and-Python +    See: https://github.com/Homebrew/homebrew/wiki/Homebrew-and-Python      EOS    end diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index f556195c0..5a69df73e 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -162,7 +162,7 @@ class Python < Formula        EOS        # Fixes setting Python build flags for certain software -      # See: https://github.com/mxcl/homebrew/pull/20182 +      # See: https://github.com/Homebrew/homebrew/pull/20182        # http://bugs.python.org/issue3588        inreplace "#{prefix}/Frameworks/Python.framework/Versions/2.7/lib/python2.7/config/Makefile" do |s|          s.change_make_var! "LINKFORSHARED", @@ -216,7 +216,7 @@ class Python < Formula      ENV.minimal_optimization      # We need to enable warnings because the configure.in uses -Werror to detect -    # "whether gcc supports ParseTuple" (https://github.com/mxcl/homebrew/issues/12194) +    # "whether gcc supports ParseTuple" (https://github.com/Homebrew/homebrew/issues/12194)      ENV.enable_warnings      if ENV.compiler == :clang        # http://docs.python.org/devguide/setup.html#id8 suggests to disable some Warnings. @@ -244,7 +244,7 @@ class Python < Formula        They will install into the site-package directory          #{site_packages} -      See: https://github.com/mxcl/homebrew/wiki/Homebrew-and-Python +      See: https://github.com/Homebrew/homebrew/wiki/Homebrew-and-Python      EOS    end diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb index 16c2aa4a9..7d14f6bad 100644 --- a/Library/Formula/python3.rb +++ b/Library/Formula/python3.rb @@ -168,7 +168,7 @@ class Python3 < Formula      # A fix, because python and python3 both want to install Python.framework      # and therefore we can't link both into HOMEBREW_PREFIX/Frameworks -    # https://github.com/mxcl/homebrew/issues/15943 +    # https://github.com/Homebrew/homebrew/issues/15943      ["Headers", "Python", "Resources"].each{ |f| rm(prefix/"Frameworks/Python.framework/#{f}") }      rm prefix/"Frameworks/Python.framework/Versions/Current"    end @@ -213,7 +213,7 @@ class Python3 < Formula      ENV.minimal_optimization      # We need to enable warnings because the configure.in uses -Werror to detect -    # "whether gcc supports ParseTuple" (https://github.com/mxcl/homebrew/issues/12194) +    # "whether gcc supports ParseTuple" (https://github.com/Homebrew/homebrew/issues/12194)      ENV.enable_warnings      if ENV.compiler == :clang        # http://docs.python.org/devguide/setup.html#id8 suggests to disable some Warnings. @@ -238,7 +238,7 @@ class Python3 < Formula        They will install into the site-package directory          #{site_packages} -      See: https://github.com/mxcl/homebrew/wiki/Homebrew-and-Python +      See: https://github.com/Homebrew/homebrew/wiki/Homebrew-and-Python      EOS      # Tk warning only for 10.6 diff --git a/Library/Formula/readline.rb b/Library/Formula/readline.rb index c03308e84..8aa71449f 100644 --- a/Library/Formula/readline.rb +++ b/Library/Formula/readline.rb @@ -30,11 +30,11 @@ EOS    #    # We are carrying an additional patch to add Darwin 13 as a build target.    # Presumably when 10.9 comes out this patch will move upstream. -  # https://github.com/mxcl/homebrew/pull/21625 +  # https://github.com/Homebrew/homebrew/pull/21625    def patches; DATA; end    def install -    # Always build universal, per https://github.com/mxcl/homebrew/issues/issue/899 +    # Always build universal, per https://github.com/Homebrew/homebrew/issues/issue/899      ENV.universal_binary      system "./configure", "--prefix=#{prefix}",                            "--mandir=#{man}", diff --git a/Library/Formula/ruby.rb b/Library/Formula/ruby.rb index 2a0a73414..d957be363 100644 --- a/Library/Formula/ruby.rb +++ b/Library/Formula/ruby.rb @@ -39,7 +39,7 @@ class Ruby < Formula      # OpenSSL is deprecated on OS X 10.8 and Ruby can't find the outdated      # version (0.9.8r 8 Feb 2011) that ships with the system.      # See discussion https://github.com/sstephenson/ruby-build/issues/304 -    # and https://github.com/mxcl/homebrew/pull/18054 +    # and https://github.com/Homebrew/homebrew/pull/18054      if MacOS.version >= :mountain_lion        args << "--with-opt-dir=#{Formula.factory('openssl').opt_prefix}"      end diff --git a/Library/Formula/signing-party.rb b/Library/Formula/signing-party.rb index c02460468..1c3fd8148 100644 --- a/Library/Formula/signing-party.rb +++ b/Library/Formula/signing-party.rb @@ -22,7 +22,7 @@ class SigningParty < Formula    depends_on 'GnuPG::Interface' => :perl    # gpgparticipants data on OS X behaves differently from linux version -  # https://github.com/mxcl/homebrew/pull/21628 +  # https://github.com/Homebrew/homebrew/pull/21628    def patches      DATA    end diff --git a/Library/Formula/skytools.rb b/Library/Formula/skytools.rb index 0750e4412..6aa3acf03 100644 --- a/Library/Formula/skytools.rb +++ b/Library/Formula/skytools.rb @@ -6,7 +6,7 @@ class Skytools < Formula    sha1 'c94eb1d86f9b33e49b929e02cefda95150e2fdcf'    # Works only with homebrew postgres: -  # https://github.com/mxcl/homebrew/issues/16024 +  # https://github.com/Homebrew/homebrew/issues/16024    depends_on 'postgresql'    def install diff --git a/Library/Formula/spatialite-tools.rb b/Library/Formula/spatialite-tools.rb index 83edf640f..5fa30aa1e 100644 --- a/Library/Formula/spatialite-tools.rb +++ b/Library/Formula/spatialite-tools.rb @@ -11,7 +11,7 @@ class SpatialiteTools < Formula    depends_on 'readosm'    def install -    # See: https://github.com/mxcl/homebrew/issues/3328 +    # See: https://github.com/Homebrew/homebrew/issues/3328      ENV.append 'LDFLAGS', '-liconv'      # Ensure Homebrew SQLite is found before system SQLite.      sqlite = Formula.factory 'sqlite' diff --git a/Library/Formula/squirrel.rb b/Library/Formula/squirrel.rb index e3fba8af1..f1850f828 100644 --- a/Library/Formula/squirrel.rb +++ b/Library/Formula/squirrel.rb @@ -12,7 +12,7 @@ class Squirrel < Formula      prefix.install %w[bin include lib]      doc.install Dir['doc/*.pdf']      doc.install %w[etc samples] -    # See: https://github.com/mxcl/homebrew/pull/9977 +    # See: https://github.com/Homebrew/homebrew/pull/9977      (lib+'pkgconfig/libsquirrel.pc').write pc_file    end diff --git a/Library/Formula/subversion.rb b/Library/Formula/subversion.rb index bbd96f82d..ae41e1242 100644 --- a/Library/Formula/subversion.rb +++ b/Library/Formula/subversion.rb @@ -94,7 +94,7 @@ class Subversion < Formula      if build.include? 'java'        # Java support doesn't build correctly in parallel: -      # https://github.com/mxcl/homebrew/issues/20415 +      # https://github.com/Homebrew/homebrew/issues/20415        ENV.deparallelize        unless build.universal? diff --git a/Library/Formula/v8.rb b/Library/Formula/v8.rb index 93fd85743..aa4c71575 100644 --- a/Library/Formula/v8.rb +++ b/Library/Formula/v8.rb @@ -13,7 +13,7 @@ class V8 < Formula    option 'with-readline', 'Use readline instead of libedit'    # not building on Snow Leopard: -  # https://github.com/mxcl/homebrew/issues/21426 +  # https://github.com/Homebrew/homebrew/issues/21426    depends_on :macos => :lion    # gyp currently depends on a full xcode install diff --git a/Library/Formula/w3m.rb b/Library/Formula/w3m.rb index c1a0b502c..72c6ba389 100644 --- a/Library/Formula/w3m.rb +++ b/Library/Formula/w3m.rb @@ -20,7 +20,7 @@ class W3m < Formula    def install      system "./configure", "--prefix=#{prefix}", "--disable-image"      # Race condition in build reported in: -    # https://github.com/mxcl/homebrew/issues/12854 +    # https://github.com/Homebrew/homebrew/issues/12854      ENV.j1 #      system "make install"    end diff --git a/Library/Formula/weechat.rb b/Library/Formula/weechat.rb index 8676bede6..36d3c9207 100644 --- a/Library/Formula/weechat.rb +++ b/Library/Formula/weechat.rb @@ -38,7 +38,7 @@ class Weechat < Formula      args << '-DENABLE_GUILE=OFF'  unless build.with? 'guile'      # NLS/gettext support disabled for now since it doesn't work in stdenv -    # see https://github.com/mxcl/homebrew/issues/18722 +    # see https://github.com/Homebrew/homebrew/issues/18722      args << "-DENABLE_NLS=OFF"      args << '..' diff --git a/Library/Formula/wxmac.rb b/Library/Formula/wxmac.rb index f82e1b885..c4b114095 100644 --- a/Library/Formula/wxmac.rb +++ b/Library/Formula/wxmac.rb @@ -72,7 +72,7 @@ class Wxmac < Formula        "--with-libtiff",        # Otherwise, even in superenv, the internal libtiff can pick        # up on a nonuniversal xz and fail -      # https://github.com/mxcl/homebrew/issues/22732 +      # https://github.com/Homebrew/homebrew/issues/22732        "--without-liblzma",        "--with-libpng",        "--with-zlib", diff --git a/Library/Formula/x264.rb b/Library/Formula/x264.rb index 7cd26e713..e0e3c2057 100644 --- a/Library/Formula/x264.rb +++ b/Library/Formula/x264.rb @@ -13,7 +13,7 @@ class X264 < Formula    option '10-bit', 'Build a 10-bit x264 (default: 8-bit)'    def install -    # https://github.com/mxcl/homebrew/pull/19594 +    # https://github.com/Homebrew/homebrew/pull/19594      ENV.deparallelize      if build.head?        ENV['GIT_DIR'] = cached_download/'.git' diff --git a/Library/Formula/xz.rb b/Library/Formula/xz.rb index 4b3fe73f9..08899063b 100644 --- a/Library/Formula/xz.rb +++ b/Library/Formula/xz.rb @@ -1,7 +1,7 @@  require 'formula'  # Upstream project has requested we use a mirror as the main URL -# https://github.com/mxcl/homebrew/pull/21419 +# https://github.com/Homebrew/homebrew/pull/21419  class Xz < Formula    homepage 'http://tukaani.org/xz/'    url 'http://fossies.org/linux/misc/xz-5.0.5.tar.gz' diff --git a/Library/Formula/yasm.rb b/Library/Formula/yasm.rb index fe3823555..9390404ec 100644 --- a/Library/Formula/yasm.rb +++ b/Library/Formula/yasm.rb @@ -17,7 +17,7 @@ class Yasm < Formula    depends_on 'Cython' => :python if build.with? 'python'    def install -    # https://github.com/mxcl/homebrew/pull/19593 +    # https://github.com/Homebrew/homebrew/pull/19593      ENV.deparallelize      args = %W[        --disable-debug diff --git a/Library/Formula/yaze-ag.rb b/Library/Formula/yaze-ag.rb index 4b46ccd16..454930c73 100644 --- a/Library/Formula/yaze-ag.rb +++ b/Library/Formula/yaze-ag.rb @@ -8,7 +8,7 @@ class YazeAg < Formula    # Fix missing sys header include for caddr_t on Mac OS    # Fix omission of creating bin directory by custom Makefile    # Upstream author is aware of this issue: -  # https://github.com/mxcl/homebrew/pull/16817 +  # https://github.com/Homebrew/homebrew/pull/16817    def patches      DATA    end diff --git a/Library/Homebrew/cmd/create.rb b/Library/Homebrew/cmd/create.rb index 06d45555d..daca31e8e 100644 --- a/Library/Homebrew/cmd/create.rb +++ b/Library/Homebrew/cmd/create.rb @@ -117,7 +117,7 @@ class FormulaCreator    def template; <<-EOS.undent      require 'formula' -    # Documentation: https://github.com/mxcl/homebrew/wiki/Formula-Cookbook +    # Documentation: https://github.com/Homebrew/homebrew/wiki/Formula-Cookbook      #                #{HOMEBREW_CONTRIB}/example-formula.rb      # PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index cd0f23a79..62c028f67 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -56,7 +56,7 @@ class Checks  ############# END HELPERS  # Sorry for the lack of an indent here, the diff would have been unreadable. -# See https://github.com/mxcl/homebrew/pull/9986 +# See https://github.com/Homebrew/homebrew/pull/9986  def check_path_for_trailing_slashes    bad_paths = ENV['PATH'].split(File::PATH_SEPARATOR).select { |p| p[-1..-1] == '/' }    return if bad_paths.empty? diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 5643064af..460b4bb47 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -343,7 +343,7 @@ class Formula    # Install python bindings inside of a block given to this method and/or    # call python so: `system python, "setup.py", "install", "--prefix=#{prefix}"    # Note that there are no quotation marks around python! -  # <https://github.com/mxcl/homebrew/wiki/Homebrew-and-Python> +  # <https://github.com/Homebrew/homebrew/wiki/Homebrew-and-Python>    def python(options={:allowed_major_versions => [2, 3]}, &block)      require 'python_helper'      python_helper(options, &block) diff --git a/Library/Homebrew/os/mac.rb b/Library/Homebrew/os/mac.rb index 316c7f68c..570bfefeb 100644 --- a/Library/Homebrew/os/mac.rb +++ b/Library/Homebrew/os/mac.rb @@ -180,9 +180,9 @@ module OS      end      # See these issues for some history: -    # http://github.com/mxcl/homebrew/issues/#issue/13 -    # http://github.com/mxcl/homebrew/issues/#issue/41 -    # http://github.com/mxcl/homebrew/issues/#issue/48 +    # http://github.com/Homebrew/homebrew/issues/13 +    # http://github.com/Homebrew/homebrew/issues/41 +    # http://github.com/Homebrew/homebrew/issues/48      def macports_or_fink        paths = [] diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb index ae01d8878..80f93ab8f 100644 --- a/Library/Homebrew/os/mac/xcode.rb +++ b/Library/Homebrew/os/mac/xcode.rb @@ -108,7 +108,7 @@ module OS        rescue          # For people who's xcode-select is unset, or who have installed          # xcode-gcc-installer or whatever other combinations we can try and -        # supprt. See https://github.com/mxcl/homebrew/wiki/Xcode +        # supprt. See https://github.com/Homebrew/homebrew/wiki/Xcode          case MacOS.llvm_build_version.to_i          when 1..2063 then "3.1.0"          when 2064..2065 then "3.1.4" @@ -121,7 +121,7 @@ module OS          when 2327..2333 then "3.2.5"          when 2335            # this build number applies to 3.2.6, 4.0 and 4.1 -          # https://github.com/mxcl/homebrew/wiki/Xcode +          # https://github.com/Homebrew/homebrew/wiki/Xcode            "4.0"          else            case (MacOS.clang_version.to_f * 10).to_i diff --git a/Library/Homebrew/requirements/python_dependency.rb b/Library/Homebrew/requirements/python_dependency.rb index 4ce9cd96f..0b9fa8bad 100644 --- a/Library/Homebrew/requirements/python_dependency.rb +++ b/Library/Homebrew/requirements/python_dependency.rb @@ -295,7 +295,7 @@ class PythonDependency < Requirement      <<-EOF.undent        # This file is created by Homebrew and is executed on each python startup.        # Don't print from here, or else python command line scripts may fail! -      # <https://github.com/mxcl/homebrew/wiki/Homebrew-and-Python> +      # <https://github.com/Homebrew/homebrew/wiki/Homebrew-and-Python>        import os        import sys diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index 87b91d6b9..75ce62e22 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -137,7 +137,7 @@ def curl *args    raise "#{curl} is not executable" unless curl.exist? and curl.executable?    args = [HOMEBREW_CURL_ARGS, HOMEBREW_USER_AGENT, *args] -  # See https://github.com/mxcl/homebrew/issues/6103 +  # See https://github.com/Homebrew/homebrew/issues/6103    args << "--insecure" if MacOS.version < "10.6"    args << "--verbose" if ENV['HOMEBREW_CURL_VERBOSE']    args << "--silent" unless $stdout.tty? @@ -22,8 +22,8 @@ License  Code is under the [BSD 2 Clause (NetBSD) license][license].  [home]:http://brew.sh -[wiki]:http://wiki.github.com/mxcl/homebrew +[wiki]:http://wiki.github.com/Homebrew/homebrew  [mxcl]:http://twitter.com/mxcl -[formula]:http://github.com/mxcl/homebrew/tree/master/Library/Formula/ +[formula]:http://github.com/Homebrew/homebrew/tree/master/Library/Formula/  [braumeister]:http://braumeister.org -[license]:https://github.com/mxcl/homebrew/tree/master/Library/Homebrew/LICENSE +[license]:https://github.com/Homebrew/homebrew/tree/master/Library/Homebrew/LICENSE diff --git a/share/man/man1/brew.1 b/share/man/man1/brew.1 index 5940ea7a5..89a73baac 100644 --- a/share/man/man1/brew.1 +++ b/share/man/man1/brew.1 @@ -453,7 +453,7 @@ $ ls $(brew \-\-repository)/Library/Contributions/cmd  .IP "" 0  .  .P -Documentation for the included external commands as well as instructions for creating your own can be found on the wiki: \fIhttp://wiki\.github\.com/mxcl/homebrew/External\-Commands\fR +Documentation for the included external commands as well as instructions for creating your own can be found on the wiki: \fIhttp://wiki\.github\.com/Homebrew/homebrew/External\-Commands\fR  .  .SH "SPECIFYING FORMULAE"  Many Homebrew commands accept one or more \fIformula\fR arguments\. These arguments can take several different forms: @@ -464,11 +464,11 @@ e\.g\. \fBgit\fR, \fBnode\fR, \fBwget\fR\.  .  .TP  The fully\-qualified name of a tapped formula -Sometimes a formula from a tapped repository may conflict with one in mxcl/master\. You can still access these formulae by using a special syntax, e\.g\. \fBhomebrew/dupes/vim\fR or \fBhomebrew/versions/node4\fR\. +Sometimes a formula from a tapped repository may conflict with one in Homebrew/homebrew\. You can still access these formulae by using a special syntax, e\.g\. \fBhomebrew/dupes/vim\fR or \fBhomebrew/versions/node4\fR\.  .  .TP  An arbitrary URL -Homebrew can install formulae via URL, e\.g\. \fBhttps://raw\.github\.com/mxcl/homebrew/master/Library/Formula/git\.rb\fR\. The formula file will be cached for later use\. +Homebrew can install formulae via URL, e\.g\. \fBhttps://raw\.github\.com/Homebrew/homebrew/master/Library/Formula/git\.rb\fR\. The formula file will be cached for later use\.  .  .SH "ENVIRONMENT"  . @@ -625,7 +625,7 @@ http_proxy=http://<user>:<password>@<host>:<port> brew install foo  .IP "" 0  .  .SH "SEE ALSO" -Homebrew Wiki: \fIhttp://wiki\.github\.com/mxcl/homebrew/\fR +Homebrew Wiki: \fIhttp://wiki\.github\.com/Homebrew/homebrew/\fR  .  .P  \fBgit\fR(1), \fBgit\-log\fR(1) @@ -634,4 +634,4 @@ Homebrew Wiki: \fIhttp://wiki\.github\.com/mxcl/homebrew/\fR  Max Howell, a splendid chap\.  .  .SH "BUGS" -See Issues on GitHub: \fIhttp://github\.com/mxcl/homebrew/issues\fR +See Issues on GitHub: \fIhttp://github\.com/Homebrew/homebrew/issues\fR | 
