mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Jon Ringle <jon@ringle.org>
To: ptxdist@pengutronix.de
Subject: [ptxdist] [PATCH] ptxd_ipkg_rev_smaller: fix compare using dpkg --compare-versions
Date: Tue, 18 Oct 2011 04:48:44 -0400	[thread overview]
Message-ID: <1318927724-11103-1-git-send-email-jon@ringle.org> (raw)

ptxd_ipkg_rev_smaller will return the wrong value if the version number
does not include a $micro component.

For example:
	pkgd_ipkg_rev_smaller foo_1.0-2_armel.ipk foo_1.0-1_armel.ipk
will incorrectly return 0

pkgd_ipkg_rev_smaller will also fail if version components has non-numeric
characters.

Signed-off-by: Jon Ringle <jon@ringle.org>
---
 scripts/libptxdist.sh |   25 +------------------------
 1 files changed, 1 insertions(+), 24 deletions(-)

diff --git a/scripts/libptxdist.sh b/scripts/libptxdist.sh
index 48dbd64..d26171f 100644
--- a/scripts/libptxdist.sh
+++ b/scripts/libptxdist.sh
@@ -740,28 +740,5 @@ ptxd_ipkg_arch() {
 #
 #
 ptxd_ipkg_rev_smaller() {
-
-	local first=`ptxd_ipkg_split $1`
-	local first_rev_upstream=`ptxd_ipkg_rev_upstream $first`
-	local first_rev_packet=`ptxd_ipkg_rev_package $first`
-	local second=`ptxd_ipkg_split $2`
-	local second_rev_upstream=`ptxd_ipkg_rev_upstream $second`
-	local second_rev_packet=`ptxd_ipkg_rev_package $second`
-	local first_major=`echo $first_rev_upstream | awk -F. '{print $1}'`
-	local first_minor=`echo $first_rev_upstream | awk -F. '{print $2}'`
-	local first_micro=`echo $first_rev_upstream | awk -F. '{print $3}'`
-	local second_major=`echo $second_rev_upstream | awk -F. '{print $1}'`
-	local second_minor=`echo $second_rev_upstream | awk -F. '{print $2}'`
-	local second_micro=`echo $second_rev_upstream | awk -F. '{print $3}'`
-
-	[ $first_major -lt $second_major ] && return 0
-	[ $first_major -gt $second_major ] && return 1
-	[ $first_minor -lt $second_minor ] && return 0
-	[ $first_minor -gt $second_minor ] && return 1
-	[ $first_micro -lt $second_micro ] && return 0
-	[ $first_micro -gt $second_micro ] && return 1
-	[ $first_rev_packet -lt $second_rev_packet ] && return 0
-	[ $first_rev_packet -gt $second_rev_packet ] && return 1
-
-	ptxd_error "packets $1 and $2 have the same revision"
+	dpkg --compare-versions $1 lt $2
 }
-- 
1.7.0.4


-- 
ptxdist mailing list
ptxdist@pengutronix.de

                 reply	other threads:[~2011-10-18  8:48 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1318927724-11103-1-git-send-email-jon@ringle.org \
    --to=jon@ringle.org \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox