[Pbuilder-maint] pbuilder CVS update: pbuilder ChangeLog pbuilder-satisfydepends-experimental

pbuilder CVS Commit pbuilder-maint at lists.alioth.debian.org
Sat Dec 9 15:53:16 CET 2006


  User: lool    
  Date: 06/12/09 15:53:16

  Modified:    .        ChangeLog pbuilder-satisfydepends-experimental
  Log:
  * pbuilder-satisfydepends-experimental: small optimization: move
    COMPARESTRING and DEPSVERSION computation out of the per-version loop;
    quote COMPARESTRING properly.
  
  Revision  Changes    Path
  1.423     +7 -1      pbuilder/ChangeLog
  
  CVSWEB Options: -------------------
  
  CVSWeb: Annotate this file:            http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pbuilder/pbuilder/ChangeLog?annotate=1.423&cvsroot=
  
  CVSWeb: View this file:             http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pbuilder/pbuilder/ChangeLog?rev=1.423&content-type=text/x-cvsweb-markup&cvsroot=
  
  CVSWeb: Diff to previous version:   http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pbuilder/pbuilder/ChangeLog.diff?r1=1.423&r2=1.422&cvsroot=
  
  -----------------------------------
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvsroot/pbuilder/pbuilder/ChangeLog,v
  retrieving revision 1.422
  retrieving revision 1.423
  diff -u -r1.422 -r1.423
  --- ChangeLog	14 Nov 2006 10:46:18 -0000	1.422
  +++ ChangeLog	9 Dec 2006 14:53:16 -0000	1.423
  @@ -1,3 +1,9 @@
  +2006-12-09
  +
  +	* pbuilder-satisfydepends-experimental: small optimization: move
  +	COMPARESTRING and DEPSVERSION computation out of the per-version loop;
  +	quote COMPARESTRING properly.
  +
   2006-11-14  Loic Minier <lool at dooz.org>
   
   	* testsuite/regression/run-test-satisfy-depends.sh: log error
  
  
  
  1.2       +3 -3      pbuilder/pbuilder-satisfydepends-experimental
  
  CVSWEB Options: -------------------
  
  CVSWeb: Annotate this file:            http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pbuilder/pbuilder/pbuilder-satisfydepends-experimental?annotate=1.2&cvsroot=
  
  CVSWeb: View this file:             http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pbuilder/pbuilder/pbuilder-satisfydepends-experimental?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot=
  
  CVSWeb: Diff to previous version:   http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/pbuilder/pbuilder/pbuilder-satisfydepends-experimental.diff?r1=1.2&r2=1.1&cvsroot=
  
  -----------------------------------
  
  Index: pbuilder-satisfydepends-experimental
  ===================================================================
  RCS file: /cvsroot/pbuilder/pbuilder/pbuilder-satisfydepends-experimental,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- pbuilder-satisfydepends-experimental	6 Nov 2006 20:55:12 -0000	1.1
  +++ pbuilder-satisfydepends-experimental	9 Dec 2006 14:53:16 -0000	1.2
  @@ -115,9 +115,9 @@
   	    CANDIDATE_VERSION="$( candidate_version "$PACKAGE" )"
   
   	    # try the candidate version, then all available versions (asc)
  +	    COMPARESTRING="$(echo "$INSTALLPKG" | tr "/" " " | sed 's/^.*([ ]*\(<<\|<=\|>=\|=\|<\|>>\|>\)[ ]*\(.*\)).*$/\1/')"
  +	    DEPSVERSION="$(echo "$INSTALLPKG" | tr "/" " " | sed 's/^.*([ ]*\(<<\|<=\|>=\|=\|<\|>>\|>\)[ ]*\(.*\)).*$/\2/')"
   	    for VERSION in $CANDIDATE_VERSION $PACKAGEVERSIONS; do
  -		COMPARESTRING=$(echo "$INSTALLPKG" | tr "/" " " | sed 's/^.*([ ]*\(<<\|<=\|>=\|=\|<\|>>\|>\)[ ]*\(.*\)).*$/\1/')
  -		DEPSVERSION="$(echo "$INSTALLPKG" | tr "/" " " | sed 's/^.*([ ]*\(<<\|<=\|>=\|=\|<\|>>\|>\)[ ]*\(.*\)).*$/\2/')"
   		if dpkg --compare-versions "$VERSION" "$COMPARESTRING" "$DEPSVERSION"; then
   		    if [ $VERSION != $CANDIDATE_VERSION ]; then
   			PACKAGE_WITHVERSION="$PACKAGE=$VERSION"
  
  
  



More information about the Pbuilder-maint mailing list