Proper CRLF handling

Add proper CLRF-LF rules to .gitattributes.
Renormalize the bat files to LF in the repo and CRLF on disk.

Remove executable bit of files which shouldn't have it set
This commit is contained in:
Torsten Bögershausen
2021-05-05 08:55:48 +02:00
committed by Michael Davidsaver
parent 71a1ff1292
commit dc03d519fb
6 changed files with 231 additions and 212 deletions

19
.gitattributes vendored
View File

@ -4,3 +4,22 @@
.appveyor/ export-ignore .appveyor/ export-ignore
.appveyor.yml export-ignore .appveyor.yml export-ignore
README export-subst README export-subst
#Which files need CRLF handling
# default to automatic
* text=auto
# batch script parser on windows requires CRLF
*.bat text eol=crlf
# extensions for scripts which may be executable via. "#!..." must have LF
*.pl text eol=lf
*.plt text eol=lf
*.sh text eol=lf
*.cmd text eol=lf
# .cmd in unexpanded templates
*.cmd@* text eol=lf
# executable scripts w/o extensions
modules/ca/src/client/S99caRepeater@ text eol=lf
modules/libcom/src/log/S99logServer@ text eol=lf
startup/EpicsHostArch text eol=lf

0
modules/libcom/src/freeList/freeListLib.c Executable file → Normal file
View File

0
modules/libcom/src/valgrind/valgrind.h Executable file → Normal file
View File

0
modules/libcom/test/Makefile Executable file → Normal file
View File

View File

@ -1,106 +1,106 @@
@echo off @echo off
rem ************************************************************************* rem *************************************************************************
rem Copyright (c) 2017 UChicago Argonne LLC, as Operator of Argonne rem Copyright (c) 2017 UChicago Argonne LLC, as Operator of Argonne
rem National Laboratory. rem National Laboratory.
rem Copyright (c) 2002 The Regents of the University of California, as rem Copyright (c) 2002 The Regents of the University of California, as
rem Operator of Los Alamos National Laboratory. rem Operator of Los Alamos National Laboratory.
rem SPDX-License-Identifier: EPICS rem SPDX-License-Identifier: EPICS
rem EPICS BASE is distributed subject to a Software License Agreement found rem EPICS BASE is distributed subject to a Software License Agreement found
rem in file LICENSE that is included with this distribution. rem in file LICENSE that is included with this distribution.
rem ************************************************************************* rem *************************************************************************
rem rem
rem Site-specific EPICS environment settings rem Site-specific EPICS environment settings
rem rem
rem Sets EPICS_HOST_ARCH and the environment for Microsoft Visual Studio. rem Sets EPICS_HOST_ARCH and the environment for Microsoft Visual Studio.
rem Optionally, resets PATH, adds Strawberry Perl to PATH, and adds the rem Optionally, resets PATH, adds Strawberry Perl to PATH, and adds the
rem EPICS Base install host architecture bin directory to PATH. rem EPICS Base install host architecture bin directory to PATH.
rem rem
rem ---------------------------------------------------------------------- rem ----------------------------------------------------------------------
rem Site serviceable parts (These definitions may be modified) rem Site serviceable parts (These definitions may be modified)
rem ---------------------------------------------------------------------- rem ----------------------------------------------------------------------
rem The values of the definitions in this section must not contain rem The values of the definitions in this section must not contain
rem double-quotes. rem double-quotes.
rem rem
rem * Right: set _foo=C:\foo rem * Right: set _foo=C:\foo
rem * Right: set "_foo=C:\foo" rem * Right: set "_foo=C:\foo"
rem * Wrong: set _foo="C:\foo" rem * Wrong: set _foo="C:\foo"
rem Automatically set up the environment when possible ("yes" or "no"). rem Automatically set up the environment when possible ("yes" or "no").
rem If set to yes, as much of the environment will be set up as possible. rem If set to yes, as much of the environment will be set up as possible.
rem If set to no, just the minimum environment will be set up. More rem If set to no, just the minimum environment will be set up. More
rem specific _auto_* definitions take precedence over this definition. rem specific _auto_* definitions take precedence over this definition.
set _auto=no set _auto=no
rem Automatically reset PATH ("yes" or "no"). If set to yes, PATH will rem Automatically reset PATH ("yes" or "no"). If set to yes, PATH will
rem be reset to the value of _path_new. If set to no, PATH will not be rem be reset to the value of _path_new. If set to no, PATH will not be
rem reset. rem reset.
set _auto_path_reset=%_auto% set _auto_path_reset=%_auto%
rem Automatically append to PATH ("yes" or "no"). If set to yes, the rem Automatically append to PATH ("yes" or "no"). If set to yes, the
rem EPICS Base install host architecture bin directory will be added to rem EPICS Base install host architecture bin directory will be added to
rem PATH if possible. If set to no, the bin directory will not be added rem PATH if possible. If set to no, the bin directory will not be added
rem to PATH. rem to PATH.
set _auto_path_append=%_auto% set _auto_path_append=%_auto%
rem The new value for PATH. If _auto_path_reset is yes, PATH will be set rem The new value for PATH. If _auto_path_reset is yes, PATH will be set
rem to it. rem to it.
set _path_new=C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem set _path_new=C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem
rem The location of Strawberry Perl (pathname). If empty, Strawberry Perl rem The location of Strawberry Perl (pathname). If empty, Strawberry Perl
rem is assumed to already be in PATH and will not be added. If nonempty, rem is assumed to already be in PATH and will not be added. If nonempty,
rem Strawberry Perl will be added to PATH. rem Strawberry Perl will be added to PATH.
set _strawberry_perl_home=C:\Strawberry set _strawberry_perl_home=C:\Strawberry
rem The location of Microsoft Visual Studio (pathname). rem The location of Microsoft Visual Studio (pathname).
set _visual_studio_home=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community set _visual_studio_home=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community
rem The EPICS host architecture specification for EPICS_HOST_ARCH rem The EPICS host architecture specification for EPICS_HOST_ARCH
rem (<os>-<arch>[-<toolset>] as defined in configure/CONFIG_SITE). rem (<os>-<arch>[-<toolset>] as defined in configure/CONFIG_SITE).
set _epics_host_arch=win32-x86 set _epics_host_arch=win32-x86
rem The install location of EPICS Base (pathname). If nonempty and rem The install location of EPICS Base (pathname). If nonempty and
rem _auto_path_append is yes, it will be used to add the host architecture rem _auto_path_append is yes, it will be used to add the host architecture
rem bin directory to PATH. rem bin directory to PATH.
set _epics_base= set _epics_base=
rem ---------------------------------------------------------------------- rem ----------------------------------------------------------------------
rem Internal parts (There is typically no need to modify these) rem Internal parts (There is typically no need to modify these)
rem ---------------------------------------------------------------------- rem ----------------------------------------------------------------------
rem Reset PATH rem Reset PATH
if "%_auto_path_reset%" == "yes" ( if "%_auto_path_reset%" == "yes" (
set "PATH=%_path_new%" set "PATH=%_path_new%"
) )
rem Add Strawberry Perl to PATH rem Add Strawberry Perl to PATH
if "%_strawberry_perl_home%" == "" goto after_add_strawberry_perl if "%_strawberry_perl_home%" == "" goto after_add_strawberry_perl
rem Can't do this inside parentheses because PATH would be read only once rem Can't do this inside parentheses because PATH would be read only once
set "PATH=%PATH%;%_strawberry_perl_home%\c\bin" set "PATH=%PATH%;%_strawberry_perl_home%\c\bin"
set "PATH=%PATH%;%_strawberry_perl_home%\perl\site\bin" set "PATH=%PATH%;%_strawberry_perl_home%\perl\site\bin"
set "PATH=%PATH%;%_strawberry_perl_home%\perl\bin" set "PATH=%PATH%;%_strawberry_perl_home%\perl\bin"
:after_add_strawberry_perl :after_add_strawberry_perl
rem Set the environment for Microsoft Visual Studio rem Set the environment for Microsoft Visual Studio
call "%_visual_studio_home%\VC\Auxiliary\Build\vcvarsall.bat" x86 call "%_visual_studio_home%\VC\Auxiliary\Build\vcvarsall.bat" x86
rem Set the EPICS host architecture specification rem Set the EPICS host architecture specification
set "EPICS_HOST_ARCH=%_epics_host_arch%" set "EPICS_HOST_ARCH=%_epics_host_arch%"
rem Add the EPICS Base host architecture bin directory to PATH rem Add the EPICS Base host architecture bin directory to PATH
if "%_auto_path_append%" == "yes" ( if "%_auto_path_append%" == "yes" (
if not "%_epics_base%" == "" ( if not "%_epics_base%" == "" (
set "PATH=%PATH%;%_epics_base%\bin\%_epics_host_arch%" set "PATH=%PATH%;%_epics_base%\bin\%_epics_host_arch%"
) )
) )
rem Don't leak variables into the environment rem Don't leak variables into the environment
set _auto= set _auto=
set _auto_path_reset= set _auto_path_reset=
set _auto_path_append= set _auto_path_append=
set _path_new= set _path_new=
set _strawberry_perl_home= set _strawberry_perl_home=
set _visual_studio_home= set _visual_studio_home=
set _epics_host_arch= set _epics_host_arch=
set _epics_base= set _epics_base=

View File

@ -1,106 +1,106 @@
@echo off @echo off
rem ************************************************************************* rem *************************************************************************
rem Copyright (c) 2017 UChicago Argonne LLC, as Operator of Argonne rem Copyright (c) 2017 UChicago Argonne LLC, as Operator of Argonne
rem National Laboratory. rem National Laboratory.
rem Copyright (c) 2002 The Regents of the University of California, as rem Copyright (c) 2002 The Regents of the University of California, as
rem Operator of Los Alamos National Laboratory. rem Operator of Los Alamos National Laboratory.
rem SPDX-License-Identifier: EPICS rem SPDX-License-Identifier: EPICS
rem EPICS BASE is distributed subject to a Software License Agreement found rem EPICS BASE is distributed subject to a Software License Agreement found
rem in file LICENSE that is included with this distribution. rem in file LICENSE that is included with this distribution.
rem ************************************************************************* rem *************************************************************************
rem rem
rem Site-specific EPICS environment settings rem Site-specific EPICS environment settings
rem rem
rem Sets EPICS_HOST_ARCH and the environment for Microsoft Visual Studio. rem Sets EPICS_HOST_ARCH and the environment for Microsoft Visual Studio.
rem Optionally, resets PATH, adds Strawberry Perl to PATH, and adds the rem Optionally, resets PATH, adds Strawberry Perl to PATH, and adds the
rem EPICS Base install host architecture bin directory to PATH. rem EPICS Base install host architecture bin directory to PATH.
rem rem
rem ---------------------------------------------------------------------- rem ----------------------------------------------------------------------
rem Site serviceable parts (These definitions may be modified) rem Site serviceable parts (These definitions may be modified)
rem ---------------------------------------------------------------------- rem ----------------------------------------------------------------------
rem The values of the definitions in this section must not contain rem The values of the definitions in this section must not contain
rem double-quotes. rem double-quotes.
rem rem
rem * Right: set _foo=C:\foo rem * Right: set _foo=C:\foo
rem * Right: set "_foo=C:\foo" rem * Right: set "_foo=C:\foo"
rem * Wrong: set _foo="C:\foo" rem * Wrong: set _foo="C:\foo"
rem Automatically set up the environment when possible ("yes" or "no"). rem Automatically set up the environment when possible ("yes" or "no").
rem If set to yes, as much of the environment will be set up as possible. rem If set to yes, as much of the environment will be set up as possible.
rem If set to no, just the minimum environment will be set up. More rem If set to no, just the minimum environment will be set up. More
rem specific _auto_* definitions take precedence over this definition. rem specific _auto_* definitions take precedence over this definition.
set _auto=no set _auto=no
rem Automatically reset PATH ("yes" or "no"). If set to yes, PATH will rem Automatically reset PATH ("yes" or "no"). If set to yes, PATH will
rem be reset to the value of _path_new. If set to no, PATH will not be rem be reset to the value of _path_new. If set to no, PATH will not be
rem reset. rem reset.
set _auto_path_reset=%_auto% set _auto_path_reset=%_auto%
rem Automatically append to PATH ("yes" or "no"). If set to yes, the rem Automatically append to PATH ("yes" or "no"). If set to yes, the
rem EPICS Base install host architecture bin directory will be added to rem EPICS Base install host architecture bin directory will be added to
rem PATH if possible. If set to no, the bin directory will not be added rem PATH if possible. If set to no, the bin directory will not be added
rem to PATH. rem to PATH.
set _auto_path_append=%_auto% set _auto_path_append=%_auto%
rem The new value for PATH. If _auto_path_reset is yes, PATH will be set rem The new value for PATH. If _auto_path_reset is yes, PATH will be set
rem to it. rem to it.
set _path_new=C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem set _path_new=C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem
rem The location of Strawberry Perl (pathname). If empty, Strawberry Perl rem The location of Strawberry Perl (pathname). If empty, Strawberry Perl
rem is assumed to already be in PATH and will not be added. If nonempty, rem is assumed to already be in PATH and will not be added. If nonempty,
rem Strawberry Perl will be added to PATH. rem Strawberry Perl will be added to PATH.
set _strawberry_perl_home=C:\Strawberry set _strawberry_perl_home=C:\Strawberry
rem The location of Microsoft Visual Studio (pathname). rem The location of Microsoft Visual Studio (pathname).
set _visual_studio_home=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community set _visual_studio_home=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community
rem The EPICS host architecture specification for EPICS_HOST_ARCH rem The EPICS host architecture specification for EPICS_HOST_ARCH
rem (<os>-<arch>[-<toolset>] as defined in configure/CONFIG_SITE). rem (<os>-<arch>[-<toolset>] as defined in configure/CONFIG_SITE).
set _epics_host_arch=windows-x64 set _epics_host_arch=windows-x64
rem The install location of EPICS Base (pathname). If nonempty and rem The install location of EPICS Base (pathname). If nonempty and
rem _auto_path_append is yes, it will be used to add the host architecture rem _auto_path_append is yes, it will be used to add the host architecture
rem bin directory to PATH. rem bin directory to PATH.
set _epics_base= set _epics_base=
rem ---------------------------------------------------------------------- rem ----------------------------------------------------------------------
rem Internal parts (There is typically no need to modify these) rem Internal parts (There is typically no need to modify these)
rem ---------------------------------------------------------------------- rem ----------------------------------------------------------------------
rem Reset PATH rem Reset PATH
if "%_auto_path_reset%" == "yes" ( if "%_auto_path_reset%" == "yes" (
set "PATH=%_path_new%" set "PATH=%_path_new%"
) )
rem Add Strawberry Perl to PATH rem Add Strawberry Perl to PATH
if "%_strawberry_perl_home%" == "" goto after_add_strawberry_perl if "%_strawberry_perl_home%" == "" goto after_add_strawberry_perl
rem Can't do this inside parentheses because PATH would be read only once rem Can't do this inside parentheses because PATH would be read only once
set "PATH=%PATH%;%_strawberry_perl_home%\c\bin" set "PATH=%PATH%;%_strawberry_perl_home%\c\bin"
set "PATH=%PATH%;%_strawberry_perl_home%\perl\site\bin" set "PATH=%PATH%;%_strawberry_perl_home%\perl\site\bin"
set "PATH=%PATH%;%_strawberry_perl_home%\perl\bin" set "PATH=%PATH%;%_strawberry_perl_home%\perl\bin"
:after_add_strawberry_perl :after_add_strawberry_perl
rem Set the environment for Microsoft Visual Studio rem Set the environment for Microsoft Visual Studio
call "%_visual_studio_home%\VC\Auxiliary\Build\vcvarsall.bat" x64 call "%_visual_studio_home%\VC\Auxiliary\Build\vcvarsall.bat" x64
rem Set the EPICS host architecture specification rem Set the EPICS host architecture specification
set "EPICS_HOST_ARCH=%_epics_host_arch%" set "EPICS_HOST_ARCH=%_epics_host_arch%"
rem Add the EPICS Base host architecture bin directory to PATH rem Add the EPICS Base host architecture bin directory to PATH
if "%_auto_path_append%" == "yes" ( if "%_auto_path_append%" == "yes" (
if not "%_epics_base%" == "" ( if not "%_epics_base%" == "" (
set "PATH=%PATH%;%_epics_base%\bin\%_epics_host_arch%" set "PATH=%PATH%;%_epics_base%\bin\%_epics_host_arch%"
) )
) )
rem Don't leak variables into the environment rem Don't leak variables into the environment
set _auto= set _auto=
set _auto_path_reset= set _auto_path_reset=
set _auto_path_append= set _auto_path_append=
set _path_new= set _path_new=
set _strawberry_perl_home= set _strawberry_perl_home=
set _visual_studio_home= set _visual_studio_home=
set _epics_host_arch= set _epics_host_arch=
set _epics_base= set _epics_base=