OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Thomas Lotterer
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-re Date: 17-Jul-2003 20:56:58
Branch: HEAD Handle: 2003071719565700
Modified files:
openpkg-re openpkg-dev
Log:
Disable use of -p option for scp because in case the user does not have
permisson to change things (mtime, mod etc.) on the remote side the cvs
server starts to print warnings on stderr. These warnings are not pulled
off the communication channel (don't ask me who should do it) and the
upload freezes. Sorry, no more background information, yet.
Summary:
Revision Changes Path
1.125 +6 -6 openpkg-re/openpkg-dev
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-re/openpkg-dev
============================================================================
$ cvs diff -u -r1.124 -r1.125 openpkg-dev
--- openpkg-re/openpkg-dev 14 Jul 2003 12:46:29 -0000 1.124
+++ openpkg-re/openpkg-dev 17 Jul 2003 18:56:57 -0000 1.125
@@ -1155,10 +1155,10 @@
bundle_srpms="${bundle_srpms}
${OPENPKG_WORK}/pkg/src/${rpmfile}.${ext}"
elif [ ${dry} -eq 0 ]; then
chmod 664 ${OPENPKG_WORK}/pkg/src/${rpmfile}.${ext}
- scp -o "Compression no" -o "Cipher blowfish" -p
${OPENPKG_WORK}/pkg/src/${rpmfile}.${ext} ${OPENPKG_DIST}/${upload}
+ scp -o "Compression no" -o "Cipher blowfish"
${OPENPKG_WORK}/pkg/src/${rpmfile}.${ext} ${OPENPKG_DIST}/${upload}
else
echo chmod 664 ${OPENPKG_WORK}/pkg/src/${rpmfile}.${ext}
- echo scp -o "Compression no" -o "Cipher blowfish" -p
${OPENPKG_WORK}/pkg/src/${rpmfile}.${ext} ${OPENPKG_DIST}/${upload}
+ echo scp -o "Compression no" -o "Cipher blowfish"
${OPENPKG_WORK}/pkg/src/${rpmfile}.${ext} ${OPENPKG_DIST}/${upload}
fi
if [ ".${name}" = .openpkg ]; then
@@ -1169,7 +1169,7 @@
scp -o "Compression no" -o "Cipher blowfish"
${OPENPKG_WORK}/pkg/src/${rpmfile}.src.sh ${OPENPKG_DIST}/${upload}
else
echo chmod 664 ${OPENPKG_WORK}/pkg/src/${rpmfile}.src.sh
- echo scp -o "Compression no" -o "Cipher blowfish" -p
${OPENPKG_WORK}/pkg/src/${rpmfile}.src.sh ${OPENPKG_DIST}/${upload}
+ echo scp -o "Compression no" -o "Cipher blowfish"
${OPENPKG_WORK}/pkg/src/${rpmfile}.src.sh ${OPENPKG_DIST}/${upload}
fi
else
die "required file ${OPENPKG_WORK}/pkg/src/${rpmfile}.src.sh
missing"
@@ -1304,12 +1304,12 @@
if [ ${bundle} -eq 1 ]; then
cd "${OPENPKG_WORK}" || die "cannot cd to ${OPENPKG_WORK}"
if [ ${dry} -eq 1 ]; then
- echo scp -o "Compression no" -o "Cipher blowfish" -p ${bundle_srpms}
${OPENPKG_DIST}/${upload}
+ echo scp -o "Compression no" -o "Cipher blowfish" ${bundle_srpms}
${OPENPKG_DIST}/${upload}
echo "cvs -d ${OPENPKG_REPO} commit ${bundle_msg} ${bundle_files}"
cvs -d ${OPENPKG_REPO} diff ${bundle_files} | ${cvs_diff_colorize}
else
- chmod 664 ${bundle_srpms}
- scp -o "Compression no" -o "Cipher blowfish" -p ${bundle_srpms}
${OPENPKG_DIST}/${upload}
+ echo chmod 664 ${bundle_srpms}
+ echo scp -o "Compression no" -o "Cipher blowfish" ${bundle_srpms}
${OPENPKG_DIST}/${upload}
eval "cvs -d ${OPENPKG_REPO} commit ${bundle_msg} ${bundle_files}"
fi
fi
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]