From b293948fb759a8edd5bf4ccce29baa991a1ee04d Mon Sep 17 00:00:00 2001 From: Raja R Harinath Date: Sun, 25 Jul 2010 20:09:25 +0530 Subject: EOL handling This set of .gitattributes was automatically generated from the list of files that GIT tried to normalize when I enabled automatic EOL conversion. With this set of attributes, we prevent automated EOL conversion on files that we know will cause trouble down the road. --- .../ICSharpCode.SharpZipLib/.gitattributes | 2 ++ .../ICSharpCode.SharpZipLib/BZip2/.gitattributes | 4 ++++ .../ICSharpCode.SharpZipLib/Checksums/.gitattributes | 4 ++++ .../ICSharpCode.SharpZipLib/GZip/.gitattributes | 3 +++ .../ICSharpCode.SharpZipLib/Tar/.gitattributes | 7 +++++++ .../ICSharpCode.SharpZipLib/Zip/.gitattributes | 5 +++++ .../ICSharpCode.SharpZipLib/Zip/Compression/.gitattributes | 9 +++++++++ .../Zip/Compression/Streams/.gitattributes | 4 ++++ 8 files changed, 38 insertions(+) create mode 100644 mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/.gitattributes create mode 100644 mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/BZip2/.gitattributes create mode 100644 mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Checksums/.gitattributes create mode 100644 mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/GZip/.gitattributes create mode 100644 mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Tar/.gitattributes create mode 100644 mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/.gitattributes create mode 100644 mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/Compression/.gitattributes create mode 100644 mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/Compression/Streams/.gitattributes (limited to 'mcs/class/Compat.ICSharpCode.SharpZipLib') diff --git a/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/.gitattributes b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/.gitattributes new file mode 100644 index 00000000000..f1d6a1673fc --- /dev/null +++ b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/.gitattributes @@ -0,0 +1,2 @@ +/AssemblyInfo.cs -crlf +/ZipException.cs -crlf diff --git a/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/BZip2/.gitattributes b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/BZip2/.gitattributes new file mode 100644 index 00000000000..1f19c61711c --- /dev/null +++ b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/BZip2/.gitattributes @@ -0,0 +1,4 @@ +/BZip2.cs -crlf +/BZip2Constants.cs -crlf +/BZip2InputStream.cs -crlf +/BZip2OutputStream.cs -crlf diff --git a/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Checksums/.gitattributes b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Checksums/.gitattributes new file mode 100644 index 00000000000..743be01ebe8 --- /dev/null +++ b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Checksums/.gitattributes @@ -0,0 +1,4 @@ +/Adler32.cs -crlf +/Crc32.cs -crlf +/IChecksum.cs -crlf +/StrangeCrc.cs -crlf diff --git a/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/GZip/.gitattributes b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/GZip/.gitattributes new file mode 100644 index 00000000000..def28966b57 --- /dev/null +++ b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/GZip/.gitattributes @@ -0,0 +1,3 @@ +/GZipConstants.cs -crlf +/GZipInputStream.cs -crlf +/GZipOutputStream.cs -crlf diff --git a/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Tar/.gitattributes b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Tar/.gitattributes new file mode 100644 index 00000000000..d9fd9c76167 --- /dev/null +++ b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Tar/.gitattributes @@ -0,0 +1,7 @@ +/InvalidHeaderException.cs -crlf +/TarArchive.cs -crlf +/TarBuffer.cs -crlf +/TarEntry.cs -crlf +/TarHeader.cs -crlf +/TarInputStream.cs -crlf +/TarOutputStream.cs -crlf diff --git a/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/.gitattributes b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/.gitattributes new file mode 100644 index 00000000000..3d149fcc53a --- /dev/null +++ b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/.gitattributes @@ -0,0 +1,5 @@ +/ZipConstants.cs -crlf +/ZipEntry.cs -crlf +/ZipFile.cs -crlf +/ZipInputStream.cs -crlf +/ZipOutputStream.cs -crlf diff --git a/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/Compression/.gitattributes b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/Compression/.gitattributes new file mode 100644 index 00000000000..aff9741fdc9 --- /dev/null +++ b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/Compression/.gitattributes @@ -0,0 +1,9 @@ +/Deflater.cs -crlf +/DeflaterConstants.cs -crlf +/DeflaterEngine.cs -crlf +/DeflaterHuffman.cs -crlf +/DeflaterPending.cs -crlf +/Inflater.cs -crlf +/InflaterDynHeader.cs -crlf +/InflaterHuffmanTree.cs -crlf +/PendingBuffer.cs -crlf diff --git a/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/Compression/Streams/.gitattributes b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/Compression/Streams/.gitattributes new file mode 100644 index 00000000000..3a7c5974e08 --- /dev/null +++ b/mcs/class/Compat.ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/Compression/Streams/.gitattributes @@ -0,0 +1,4 @@ +/DeflaterOutputStream.cs -crlf +/InflaterInputStream.cs -crlf +/OutputWindow.cs -crlf +/StreamManipulator.cs -crlf -- cgit v1.2.3