X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=rpm.macros;h=032ae47943f6c3fb6efb05e585881b2a70ef13d3;hb=89c2423fd02fe827b06a7ed746179076956215b2;hp=01e238a7c7aacd49b7e5b7c64f19fac592b1df3d;hpb=4bf34b55496bb637d1ac0255bbe9f37854e20d8f;p=packages%2Frpm-build-macros.git diff --git a/rpm.macros b/rpm.macros index 01e238a..032ae47 100644 --- a/rpm.macros +++ b/rpm.macros @@ -1,5 +1,9 @@ # $Revision$, $Date$ -# PLD Linux rpm macros +# PLD Linux rpm macros. +# + +# can be used by builder script to check for version +%rpm_build_macros %(R="$Revision$"; RR="${R##: }"; echo ${RR%%?}) %epoch 0 %x8664 x86_64 amd64 ia32e @@ -9,16 +13,28 @@ %kgcc_package gcc # compiler version -%cc_version %{expand:%%global cc_version %(%{__cc} -dumpversion || echo ERROR)}%cc_version +%cc_version %{expand:%%global cc_version %(%{__cc} -dumpversion || echo ERROR)}%cc_version %cxx_version %{expand:%%global cxx_version %(%{__cxx} -dumpversion || echo ERROR)}%cxx_version -%__rm /bin/rm --interactive=never +%__rm /bin/rm --interactive=never # Build system path macros. +%__autoconf autoconf %{?debug:-Wall} +%__automake automake -a -c -f --foreign +%__autopoint autopoint --force + +# add parallel build flags: -jN +# +# if you want to disable parallel build do: +# echo '%_smp_mflags %{nil}' >> ~/.rpmmacros # -%__autoconf autoconf %{?debug:-Wall} -%__automake automake -a -c -f --foreign -%__autopoint autopoint --force +%__make /usr/bin/make %{?_smp_mflags} +%__scons /usr/bin/scons %{?_smp_mflags} +%__waf /usr/bin/waf %{?_smp_mflags} +%__cmake /usr/bin/cmake + +%_smp_mflags %(_NCPUS=$(/usr/bin/getconf _NPROCESSORS_ONLN); \\\ + [ "$_NCPUS" -gt 1 ] && echo "-j$(($_NCPUS * 2))") %__gettextize { \ if grep -qs 'AM_GNU_GETTEXT.*external' configure.{ac,in} ; then \ @@ -38,8 +54,44 @@ %__intltoolize intltoolize --copy --force %__libtoolize libtoolize --copy --force --install -# Path to top of build area. -%_topdir %{expand:%%global _topdir %(test -d ../SPECS -a -d ../SOURCES && (cd ..; pwd) || echo $HOME/rpm)}%_topdir +# topdir is where builder script lives, +# fallback to old style if SPECS/SOURCES dirs were found. +%_topdir %{expand:%%global _topdir %( + if [ -d SPECS -a -d SOURCES ]; then + # old style rpmdir: in topdir + pwd + elif [ -d ../SPECS -a -d ../SOURCES ]; then + # old style rpmdir: in subdir + cd ..; pwd + elif [ -d $HOME/rpm/SPECS -a -d $HOME/rpm/SOURCES ]; then \ + # if old style rpm dir exist, go with it + echo $HOME/rpm; \ + elif [ -x ../builder -a ! -d ../builder ]; then + # relative new style rpmdir: in package dir + cd ..; pwd + elif [ -x builder -a ! -d builder ]; then + # relative new style rpmdir: in packages + pwd + elif [ -x packages/builder -a ! -d packages/builder ]; then + # relative new style rpmdir: packages dir in current dir + cd packages; pwd + else + # fallback to new style rpmdir + echo $HOME/rpm/packages + fi; \ +)}%_topdir + +# if %{_topdir}/SPECS exists, it's old style structure +%_specdir %{expand:%%global _specdir %([ ! -d %{_topdir}/SPECS ] && echo %{_topdir}/%{name} || echo %{_topdir}/SPECS)}%_specdir +%_sourcedir %{expand:%%global _sourcedir %([ ! -d %{_topdir}/SOURCES ] && echo %{_specdir} || echo %{_topdir}/SOURCES)}%_sourcedir + +# BUILD/RPMS/SRPMS are one same level by default as packages dir, if these exist +# if they don't exist assume we are having custom topdir (which is not named as +# "packages", i.e ~/rpm/kde/{kdelibs,BUILD/RPMS/SRPMS}) +# NOTE: readlink fails if some parent dir is not readable (/home/services/builder for example can't read /home/services), therfore the extra echo +%_builddir %{expand:%%global _builddir %(if [ -d %{_topdir}/BUILD ]; then echo %{_topdir}/BUILD; else readlink -m %{_topdir}/../BUILD || echo %{_topdir}/../BUILD; fi)}%_builddir +%_rpmdir %{expand:%%global _rpmdir %(if [ -d %{_topdir}/RPMS ]; then echo %{_topdir}/RPMS; else readlink -m %{_topdir}/../RPMS || echo readlink -m %{_topdir}/../RPMS; fi)}%_rpmdir +%_srcrpmdir %{expand:%%global _srcrpmdir %(if [ -d %{_topdir}/SRPMS ]; then echo %{_topdir}/SRPMS; else readlink -m %{_topdir}/../SRPMS || echo readlink -m %{_topdir}/../SRPMS; fi)}%_srcrpmdir # The number of cvs changelog entries kept when building package. %_buildchangelogtruncate 20 @@ -56,10 +108,6 @@ # and that both p and q are package names (i.e. no version/release). %_dependency_whiteout %{nil} -%_smp_mflags %([ -z "$RPM_BUILD_NCPUS" ] \\\ - && RPM_BUILD_NCPUS=$(/usr/bin/getconf _NPROCESSORS_ONLN); \\\ - [ "$RPM_BUILD_NCPUS" -gt 1 ] && echo "-j$(($RPM_BUILD_NCPUS * 2))") - #----------------------------------------------------------------- # # (re)definition of %{rpm*flags} with %filterout_* support @@ -129,32 +177,34 @@ # redefine %_preserve_env in following manner: # # # ADDITIONAL_VAR is required because [a good reason here] -# %define _preserve_env %_preserve_env_base ADDITIONAL_VAR +# %define _preserve_env ADDITIONAL_VAR -%_preserve_env_base PATH HOME TMP TMPDIR -%_preserve_env %_preserve_env_base +%_preserve_env_base PATH HOME TMP TMPDIR SSH_AUTH_SOCK -%_clean_env env -i %(awk -vq="'" -vqq="\\"'\\"" -vq2q="'\\"'" 'BEGIN { - split("%{?_preserve_env:%_preserve_env}", P); +# "env -i" must end in first line of expaned macros because it's used as first line of shell script (#! env...) +%_clean_env %{!?_preserve_env:%global _preserve_env %{nil}}%{expand:%%global _preserve_env %{_preserve_env} %_preserve_env_base} env -i %(awk -vq="'" -vqq="\\"'\\"" -vq2q="'\\"'" 'BEGIN { + split("%{?_preserve_env}", P); for (i in P) { p = P[i]; - if (ENVIRON[p]) { - split( ENVIRON[p], V, "" ); - val = p "="; - for ( j = 1; j in V; j++ ) { - v = V[j]; - if ( v == q ) - v = qq; - else if ( v == "\\"" ) - v = q2q; - else if ( v == "\\\\" ) - v = "\\\\\\\\"; - else - gsub( "[^a-zA-Z0-9/:._-]", "\\"&\\"", v ); - val = val "" v; - } - printf( val " " ); + if (!ENVIRON[p] || d[p]) { + continue; + } + d[p] = 1; + split(ENVIRON[p], V, ""); + val = p "="; + for (j = 1; j in V; j++) { + v = V[j]; + if (v == q) + v = qq; + else if (v == "\\"") + v = q2q; + else if (v == "\\\\") + v = "\\\\\\\\"; + else + gsub("[^a-zA-Z0-9/:._-]", "\\"&\\"", v); + val = val "" v; } + printf(val " "); } }') @@ -188,7 +238,6 @@ %{dependencytracking} \ } -%__cmake /usr/bin/cmake %cmake { \ CC="%{__cc}" \ CXX="%{__cxx}" \ @@ -198,8 +247,6 @@ LDFLAGS="%{rpmldflags}" \ %{__cmake} \ } -# override __scons to add -j4 in your ~/.rpmmacros for parallel make -%__scons /usr/bin/scons %scons { \ %{__scons} \ LDFLAGS="${LDFLAGS:-%rpmldflags}" \ @@ -214,8 +261,6 @@ LDFLAGS="%{rpmldflags}" \ } # waf. see waf.spec -# override __waf to add -j4 in your ~/.rpmmacros for parallel make -%__waf /usr/bin/waf %waf { \ CC="%{__cc}" \ CXX="%{__cxx}" \ @@ -258,6 +303,44 @@ CXXFLAGS="%{rpmcxxflags}" \ %{?configure_cache:--cache-file=%{configure_cache_file}} \ } +# Simple macros to simplify adding bconded options to configure scripts. +# Each macro requires bcond name and accepts optional option name, if option +# isn't specified bcond name is used as option name. Options returning +# --with and --enable also allow third argument which will be added as value +# ( --with-option=value or --enable-option=value ) in case or positive +# condition, but won't be added otherwise ( nothing or just --disable-option ). + +# Requirements: +# BuildRequires: rpmbuild(macros) >= 1.527 + +# Usage example: +# %{__enable bcond} - returns --enable-bcond iff build condition is set +# %{__disable bcond option} - returns --enable-option iff bcond is not set +# %{__enable_disable bcond option value} - returns --enable-option=value if +# bcond is set, returns --disable-option otherwise + +# expand bconds to --enable-something and --disable-something +%__enable() %{expand:%%{?with_%{1}:--enable-%{?2}%{!?2:%{1}}%{?3:=%{3}}}} +%__disable() %{expand:%%{!?with_%{1}:--disable-%{?2}%{!?2:%{1}}}} +%__enable_disable() %{expand:%%{?with_%{1}:--enable-%{?2}%{!?2:%{1}}%{?3:=%{3}}}%%{!?with_%{1}:--disable-%{?2}%{!?2:%{1}}}} + +# same as above, but condition inverted +%__enable_unless() %{expand:%%{!?with_%{1}:--enable-%{?2}%{!?2:%{1}}%{?3:=%{3}}}} +%__disable_if() %{expand:%%{?with_%{1}:--disable-%{?2}%{!?2:%{1}}}} +%__enable_disable_not() %{expand:%%{!?with_%{1}:--enable-%{?2}%{!?2:%{1}}%{?3:=%{3}}}%%{?with_%{1}:--disable-%{?2}%{!?2:%{1}}}} + +# expand bconds to --with-something and --without-something +%__with() %{expand:%%{?with_%{1}:--with-%{?2}%{!?2:%{1}}%{?3:=%{3}}}} +%__without() %{expand:%%{!?with_%{1}:--without-%{?2}%{!?2:%{1}}}} +%__with_without() %{expand:%%{?with_%{1}:--with-%{?2}%{!?2:%{1}}%{?3:=%{3}}}%%{!?with_%{1}:--without-%{?2}%{!?2:%{1}}}} + +# same as above, but condition inverted +%__with_unless() %{expand:%%{!?with_%{1}:--with-%{?2}%{!?2:%{1}}%{?3:=%{3}}}} +%__without_if() %{expand:%%{?with_%{1}:--without-%{?2}%{!?2:%{1}}}} +%__with_without_not() %{expand:%%{!?with_%{1}:--with-%{?2}%{!?2:%{1}}%{?3:=%{3}}}%%{?with_%{1}:--without-%{?2}%{!?2:%{1}}}} + +#----------------------------------------------------------------- + # overload to insert debuginfo package %prep \ %if 0%{?_enable_debug_packages}\ @@ -311,16 +394,21 @@ CXXFLAGS="%{rpmcxxflags}" \ # The directory holding Linux kernel sources %_kernelsrcdir /usr/src/linux%{_alt_kernel} +# SysV-style initscripts dir +%_initddir /etc/rc.d/init.d + # If non-empty "debug" macro defined, add "dbg" suffix to release number %_rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}%{?debug:dbg}.%%{ARCH}.rpm +# -n drm to generate kernel%{_alt_kernel}-drm dependency +%releq_kernel(n:) %{expand:%%global releq_kernel %(R=$(LC_ALL=C rpm -q --qf '%{N}%{?-n:-%{-n*}} = %|E?{%{E}:}|%{V}-%{R}' -f %{_kernelsrcdir}/include/linux/version.h 2>/dev/null | grep -v 'is not' | sed -e 's:-headers::;s:-config::'); echo ${R:-ERROR})}%releq_kernel +%releq_kernel_up(n:) %{expand:%%global releq_kernel_up %(R=$(LC_ALL=C rpm -q --qf '%{N}%{?-n:-%{-n*}}-up = %|E?{%{E}:}|%{V}-%{R}' -f %{_kernelsrcdir}/include/linux/version.h 2>/dev/null | grep -v 'is not' | sed -e 's:-headers::;s:-config::'); echo ${R:-ERROR})}%releq_kernel_up +%releq_kernel_smp(n:) %{expand:%%global releq_kernel_smp %(R=$(LC_ALL=C rpm -q --qf '%{N}%{?-n:-%{-n*}}-smp = %|E?{%{E}:}|%{V}-%{R}' -f %{_kernelsrcdir}/include/linux/version.h 2>/dev/null | grep -v 'is not' | sed -e 's:-headers::;s:-config::'); echo ${R:-ERROR})}%releq_kernel_smp -%releq_kernel %{expand:%%global releq_kernel %(R=$(LC_ALL=C rpm -q --qf '%{N} = %|E?{%{E}:}|%{V}-%{R}' -f %{_kernelsrcdir}/include/linux/version.h 2>/dev/null | grep -v 'is not' | sed -e 's:-headers::;s:-config::'); echo ${R:-ERROR})}%releq_kernel -%releq_kernel_up %{expand:%%global releq_kernel_up %(R=$(LC_ALL=C rpm -q --qf '%{N}-up = %|E?{%{E}:}|%{V}-%{R}' -f %{_kernelsrcdir}/include/linux/version.h 2>/dev/null | grep -v 'is not' | sed -e 's:-headers::;s:-config::'); echo ${R:-ERROR})}%releq_kernel_up -%releq_kernel_smp() %{expand:%%global releq_kernel_smp %(R=$(LC_ALL=C rpm -q --qf '%{N}-smp = %|E?{%{E}:}|%{V}-%{R}' -f %{_kernelsrcdir}/include/linux/version.h 2>/dev/null | grep -v 'is not' | sed -e 's:-headers::;s:-config::'); echo ${R:-ERROR})}%releq_kernel_smp -%requires_releq_kernel(s:) Requires%{-s:(%{-s*})}: %releq_kernel -%requires_releq_kernel_up(s:) Requires%{-s:(%{-s*})}: %releq_kernel_up -%requires_releq_kernel_smp(s:) Requires%{-s:(%{-s*})}: %releq_kernel_smp +# -s post to generate Requires(post) dependency +%requires_releq_kernel(s:n:) Requires%{-s:(%{-s*})}: %releq_kernel +%requires_releq_kernel_up(s:n:) Requires%{-s:(%{-s*})}: %releq_kernel_up +%requires_releq_kernel_smp(s:n:) Requires%{-s:(%{-s*})}: %releq_kernel_smp # Requires name = version-release %requires_releq() %{!?1:ERROR}%{?2:ERROR}%{?1:%{!?2:%{expand:%%requires_eq_to -r %1 %1}}} @@ -525,6 +613,8 @@ if [ -d "$RPM_BUILD_ROOT" ]; then \ fi; \ fi; }; __spec_install_post_chrpath } } } +# vim: " + #----------------------------------------------------------------- # Find all shared object files with unresolved symbols. Warn # and terminate if any found (termination can be turned off by define). @@ -700,6 +790,7 @@ fi; \ # extract php/zend api versions %php_major_version %{expand:%%global php_major_version %(awk '/#define PHP_MAJOR_VERSION/{print $3}' %{php_includedir}/main/php_version.h 2>/dev/null || echo ERROR)}%php_major_version +%php_minor_version %{expand:%%global php_minor_version %(awk '/#define PHP_MINOR_VERSION/{print $3}' %{php_includedir}/main/php_version.h 2>/dev/null || echo ERROR)}%php_minor_version %php_api_version %{expand:%%global php_api_version %(awk '/#define PHP_API_VERSION/{print $3}' %{php_includedir}/main/php.h 2>/dev/null || echo ERROR)}%php_api_version %php_pdo_api_version %{expand:%%global php_pdo_api_version %(awk '/#define PDO_DRIVER_API/{print $3}' %{php_includedir}/ext/pdo/php_pdo_driver.h 2>/dev/null || echo ERROR)}%php_pdo_api_version %php_debug %{expand:%%global php_debug %(awk '/#define ZEND_DEBUG/{print $3}' %{php_includedir}/main/php_config.h 2>/dev/null || echo ERROR)}%php_debug @@ -730,19 +821,22 @@ fi; \ %php_webserver_restart \ [ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart \ [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart \ -if [ -f /etc/rc.d/init.d/php-fcgi ]; then \ +if [ -x /etc/rc.d/init.d/php-fcgi ]; then \ PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \ if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php.fcgi* ]]; then \ %service -q php-fcgi restart \ fi \ fi \ +if [ -x /etc/rc.d/init.d/php-fpm ]; then \ + %service -q php-fpm restart \ +fi \ %{nil} # for using php post scripts. for PHP >= 4.0 && PHP < 5.0 %php4_webserver_restart \ [ ! -f /etc/apache/conf.d/??_mod_php4.conf ] || %service -q apache restart \ [ ! -f /etc/httpd/conf.d/??_mod_php4.conf ] || %service -q httpd restart \ -if [ -f /etc/rc.d/init.d/php-fcgi ]; then \ +if [ -x /etc/rc.d/init.d/php-fcgi ]; then \ PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \ if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php4.fcgi* ]]; then \ %service -q php-fcgi restart \ @@ -759,6 +853,7 @@ fi \ %xorg_xserver_font_abi %{expand:%%global xorg_xserver_font_abi %(awk '/#define ABI_FONT_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null | echo ERROR)}%xorg_xserver_font_abi %xorg_xserver_videodrv_abi %{expand:%%global xorg_xserver_videodrv_abi %(awk '/#define ABI_VIDEODRV_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null || echo ERROR)}%xorg_xserver_videodrv_abi %xorg_xserver_xinput_abi %{expand:%%global xorg_xserver_xinput_abi %(awk '/#define ABI_XINPUT_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null || echo ERROR)}%xorg_xserver_xinput_abi +# vim: ' %requires_xorg_xserver_extension \ %{__xorg_abi_requires_ge ansic xorg_xserver_ansic_abi} \ @@ -788,6 +883,12 @@ fi \ %{__xorg_abi_requires_lt videodrv xorg_xserver_videodrv_abi} \ %{nil} +# TCL specific macro definitions. +# TODO: when th tcl is fixed use tclsh to get version: %(echo 'puts $tcl_version' | tclsh) +%tcl_version %{expand:%%global tcl_version %(v=$(rpm -q --qf %{V} tcl | cut -d. -f1,2); echo ${v:-ERROR})}%tcl_version +%tcl_sitearch %{_libdir}/tcl%{tcl_version} +%tcl_sitelib %{_datadir}/tcl%{tcl_version} + # Python specific macro definitions. # python main version %py_ver %{expand:%%global py_ver %(%{__python} -c "import sys; print sys.version[:3]" 2>/dev/null || echo ERROR)}%py_ver @@ -811,7 +912,7 @@ fi \ # Python 3.x # python main version -%__python3 python3.0 +%__python3 python3 %py3_ver %{expand:%%global py3_ver %(%{__python3} -c "import sys; print(sys.version[:3])" 2>/dev/null || echo ERROR)}%py3_ver # directories @@ -886,7 +987,7 @@ fi; \ %xmms_effect_plugindir %{expand:%%global xmms_effect_plugindir %(xmms-config --effect-plugin-dir 2>/dev/null || echo ERROR)}%xmms_effect_plugindir %xmms_general_plugindir %{expand:%%global xmms_general_plugindir %(xmms-config --general-plugin-dir 2>/dev/null || echo ERROR)}%xmms_general_plugindir -%_target_base_arch %{expand:%%global _target_base_arch %(echo %{_target_cpu} | sed 's/i.86/i386/;s/athlon/i386/;s/pentium./i386/;s/amd64/x86_64/;s/ia32e/x86_64/')}%_target_base_arch +%_target_base_arch %{expand:%%global _target_base_arch %(echo %{_target_cpu} | sed 's/i.86/i386/;s/athlon/i386/;s/pentium./i386/;s/amd64/x86_64/;s/ia32e/x86_64/;s/sparcv./sparc/')}%_target_base_arch # user/group checking macros # @@ -909,9 +1010,14 @@ fi; \ # user group membership management macros # # Usage: -# %addusertogroup myuser agroup +# %addusertogroup [-q] myuser agroup +# +# -q if user or group don't exist, don't make big noise of it (MISSINGOK behaviour) # -%addusertogroup /usr/lib/rpm/user_group.sh user addtogroup +# Requirements: +# BuildRequires: rpmbuild(macros) >= 1.515 +%addusertogroup(q) quiet=%{-q:1} /usr/lib/rpm/user_group.sh user addtogroup %*; \ +%{nil} # banner support (useful in {pre,post}{,un} and triggers) # @@ -984,6 +1090,7 @@ else \ %{expand:%{%{#}}} 1>&2 || exit $? \ [ ! -x /usr/sbin/nscd ] || /usr/sbin/nscd -i passwd || : \ fi; +# vim: " # Usage: # %groupadd [-P package] [-g gid] group @@ -1020,11 +1127,11 @@ fi; # # Add package's webserver config to webserver webapps dir. # Usage: -# %webapp_register WEBSERVER WEBAPP +# %webapp_register [-f] WEBSERVER WEBAPP # -%webapp_register() \ +%webapp_register(f) \ %{?debug:set -x; echo "webapp_register: %{name}-%{version}-%{release} 1:[$1]; 2:[$2]"} \ -if [ "$1" = "1" ] && [ "$2" = "1" ]; then\ +if [ -n "%{-f:1}" ] || [ "$1" = "1" ] && [ "$2" = "1" ]; then\ /usr/sbin/webapp register %1 %2\ fi\ # reload webserver if the config symlink is there and skip reload if webserver is upgraded\ @@ -1191,6 +1298,24 @@ cat %{_mavendepmapfragdir}/* >> %{_mavendepmapdir}/maven2-depmap.xml\ fi\ echo -e "\\n" >> %{_mavendepmapdir}/maven2-depmap.xml +# JAVA macros specific for PLD + +# Directory for tomcat context configuration files +%_tomcatconfdir %{_sharedstatedir}/tomcat/conf/Catalina/localhost + +# Tomcat cache path +%_tomcatcachedir %{_sharedstatedir}/tomcat/work/Catalina/localhost + +# Clear tomcat cache +# Author: Paweł Zuzelski +# +# Usage: +# %%tomcat_clear_cache appname +# +# Call this script in %postun tomcat. It will remove compiled jsps related to +# given app. +# +%tomcat_clear_cache() %{!?1:ERROR}%{?2:ERROR} %{__rm} -rf %{_tomcatcachedir}/%1 # PEAR install macros # Author: Elan Ruusamäe @@ -1660,4 +1785,18 @@ else: \ }; __py_lint %* \ %{nil} -# vim:ts=4 sw=4 noet syn=spec +# Undos files +# +# Author: Paweł Zuzelski +# +# Usage: +# %undos list_of_files +# +# Requirements: +# BuildRequires: sed >= 4.0 +# BuildRequires: rpmbuild(macros) >= 1.533 + +%undos \ +%{__sed} -i -e 's,\\r$,,' + +# vim:ts=4 sw=4 noet ft=spec