OpenPKG CVS Repository http://cvs.openpkg.org/ ____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: [EMAIL PROTECTED] Module: openpkg-src Date: 14-Mar-2005 18:47:52 Branch: HEAD Handle: 2005031417475200 Modified files: openpkg-src/openpkg HISTORY openpkg.spec rc Log: Fix rc env processing: do not assign to the variable "_" (which is read-only in some shells like zsh) Submitted by: Slawek Zak Summary: Revision Changes Path 1.253 +1 -0 openpkg-src/openpkg/HISTORY 1.405 +1 -1 openpkg-src/openpkg/openpkg.spec 1.60 +1 -1 openpkg-src/openpkg/rc ____________________________________________________________________________ patch -p0 <<'@@ .' Index: openpkg-src/openpkg/HISTORY ============================================================================ $ cvs diff -u -r1.252 -r1.253 HISTORY --- openpkg-src/openpkg/HISTORY 8 Mar 2005 18:47:20 -0000 1.252 +++ openpkg-src/openpkg/HISTORY 14 Mar 2005 17:47:52 -0000 1.253 @@ -2,6 +2,7 @@ 2005 ==== +20050314 fix rc env processing: do not assign to the variable "_" (which is read-only in some shells like zsh) 20050308 remove GNU gcc specific and unused stuff from <beecrypt/gnu.h>, because it breaks under non-GCC 20050305 upgrade to latest version of GNU config.* scripts 20050304 upgrade to cURL 7.13.1 @@ . patch -p0 <<'@@ .' Index: openpkg-src/openpkg/openpkg.spec ============================================================================ $ cvs diff -u -r1.404 -r1.405 openpkg.spec --- openpkg-src/openpkg/openpkg.spec 8 Mar 2005 18:47:20 -0000 1.404 +++ openpkg-src/openpkg/openpkg.spec 14 Mar 2005 17:47:52 -0000 1.405 @@ -39,7 +39,7 @@ # o any cc(1) # the package version/release -%define V_openpkg 20050308 +%define V_openpkg 20050314 # the used software versions %define V_rpm 4.2.1 @@ . patch -p0 <<'@@ .' Index: openpkg-src/openpkg/rc ============================================================================ $ cvs diff -u -r1.59 -r1.60 rc --- openpkg-src/openpkg/rc 20 Jan 2005 11:08:53 -0000 1.59 +++ openpkg-src/openpkg/rc 14 Mar 2005 17:47:52 -0000 1.60 @@ -604,7 +604,7 @@ echo "unset PWD SHLVL" >>$tmpfile echo "env |\\" >>$tmpfile echo "egrep '^[A-Z_][A-Z0-9_]*=.' |\\" >>$tmpfile - echo "sed -e 's/\\\\/\\\\\\\\/g' -e 's/\"/\\\\\"/g' \\" >>$tmpfile + echo "sed -e '/^_=/d' -e 's/\\\\/\\\\\\\\/g' -e 's/\"/\\\\\"/g' \\" >>$tmpfile case $SHELL in csh|*/csh|tcsh|*/tcsh ) echo "-e 's/^\\([^=]*\\)=\\(.*\\)\$/setenv \\1 \"\\2\"/'" >>$tmpfile @@ . ______________________________________________________________________ The OpenPKG Project www.openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org