├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── appveyor.yml ├── gitlog.txt ├── patches ├── .gitkeep ├── 0001-Utilize-AppVeyor.patch ├── 0002-appveyor-Change-build-message-on-tagged-builds.patch ├── 0003-win32-Detect-Cygwin-MSYS-PTY.patch ├── 0004-Exclude-iscygpty.-ch-from-formatting.patch ├── 0005-win32-Enable-UTF-8-mode-on-Windows-10-1903-or-later.patch ├── msys2-0001-lang-Allow-both-extensions-and-full-filenames.patch ├── msys2-0004-lang-Add-autotools-ac-am-in-m4-pc.patch ├── msys2-0005-lang-Add-to-make-Makefile-Makefile.Debug-Makefile.Re.patch ├── msys2-0006-lang-Add-makepkg-PKGBUILD-diff-patch-in-install.patch └── msys2-0007-lang-Add-cmake-CMakeLists.txt-CMakeCache.txt.patch └── scripts ├── appveyor.bat ├── ci-ag-win32.enc ├── install_sshkey_github.sh └── update-repo.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw? 2 | *~ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/appveyor.yml -------------------------------------------------------------------------------- /gitlog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/gitlog.txt -------------------------------------------------------------------------------- /patches/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patches/0001-Utilize-AppVeyor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/patches/0001-Utilize-AppVeyor.patch -------------------------------------------------------------------------------- /patches/0002-appveyor-Change-build-message-on-tagged-builds.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/patches/0002-appveyor-Change-build-message-on-tagged-builds.patch -------------------------------------------------------------------------------- /patches/0003-win32-Detect-Cygwin-MSYS-PTY.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/patches/0003-win32-Detect-Cygwin-MSYS-PTY.patch -------------------------------------------------------------------------------- /patches/0004-Exclude-iscygpty.-ch-from-formatting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/patches/0004-Exclude-iscygpty.-ch-from-formatting.patch -------------------------------------------------------------------------------- /patches/0005-win32-Enable-UTF-8-mode-on-Windows-10-1903-or-later.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/patches/0005-win32-Enable-UTF-8-mode-on-Windows-10-1903-or-later.patch -------------------------------------------------------------------------------- /patches/msys2-0001-lang-Allow-both-extensions-and-full-filenames.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/patches/msys2-0001-lang-Allow-both-extensions-and-full-filenames.patch -------------------------------------------------------------------------------- /patches/msys2-0004-lang-Add-autotools-ac-am-in-m4-pc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/patches/msys2-0004-lang-Add-autotools-ac-am-in-m4-pc.patch -------------------------------------------------------------------------------- /patches/msys2-0005-lang-Add-to-make-Makefile-Makefile.Debug-Makefile.Re.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/patches/msys2-0005-lang-Add-to-make-Makefile-Makefile.Debug-Makefile.Re.patch -------------------------------------------------------------------------------- /patches/msys2-0006-lang-Add-makepkg-PKGBUILD-diff-patch-in-install.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/patches/msys2-0006-lang-Add-makepkg-PKGBUILD-diff-patch-in-install.patch -------------------------------------------------------------------------------- /patches/msys2-0007-lang-Add-cmake-CMakeLists.txt-CMakeCache.txt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/patches/msys2-0007-lang-Add-cmake-CMakeLists.txt-CMakeCache.txt.patch -------------------------------------------------------------------------------- /scripts/appveyor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/scripts/appveyor.bat -------------------------------------------------------------------------------- /scripts/ci-ag-win32.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/scripts/ci-ag-win32.enc -------------------------------------------------------------------------------- /scripts/install_sshkey_github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/scripts/install_sshkey_github.sh -------------------------------------------------------------------------------- /scripts/update-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/the_silver_searcher-win32/HEAD/scripts/update-repo.sh --------------------------------------------------------------------------------