mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Subject: Re: [ptxdist] [PATCH] ptxdist-2011.01.0 bug in make ipkg-push
Date: Fri, 9 Dec 2011 11:09:08 +0100	[thread overview]
Message-ID: <20111209100908.GB28173@pengutronix.de> (raw)
In-Reply-To: <3944866A166FC34A948C72DD5EDDCA2A1DC7CF77@HQ0SBS01.airtag.local>

On Thu, Dec 08, 2011 at 05:38:26PM +0000, Benoît BURNICHON wrote:
> 
> 
> > -----Original Message-----
> > From: ptxdist-bounces@pengutronix.de [mailto:ptxdist-
> > bounces@pengutronix.de] On Behalf Of Michael Olbrich
> > Sent: Thursday, December 08, 2011 4:56 PM
> > To: ptxdist@pengutronix.de
> > Subject: Re: [ptxdist] [PATCH] ptxdist-2011.01.0 bug in make ipkg-push
> >
> > On Thu, Dec 08, 2011 at 10:45:00AM -0500, Jon Ringle wrote:
> > > On Thu, Dec 8, 2011 at 10:37 AM, Michael Olbrich
> > > <m.olbrich@pengutronix.de>wrote:
> > >
> > > > Hi,
> > > >
> > > > so I accidentally pushed it before I could really review it...
> > > > I had some time today and I think it's at least better than before.
> > > >
> > > > On Tue, Nov 29, 2011 at 03:59:41PM +0000, Benoît BURNICHON wrote:
> > > > > Now, ptxd_ipkg_rev_smaller does not enforce a revision to be
> > > > > 1.2.3-4 but allows everything debian like.
> > > >
> > > > Well, not everything debian like, '~' is not handled correctly, right?
> 
> The possibly prepended ':' also is not taken into account.

True, but that's not realy something we care about right now. An since it's
not part of the upstream version, it should be split off in ptxd_ipkg_split
anyways, right?

Hmmm, but the current check fails for versions that do not start with a
number. ptxd_ipkg_rev_decimal_convert returns something starting with '.'.
I'm running a possible fix through a test script right now. It calls
ptxdist quite often, so it'll take a few hours....

> > > > Maybe something like this:
> > > > ------------------------------------------------------------------------
> > > > --- libptxdist.sh       2011-12-08 16:11:21.143970557 +0100
> > > > +++ libptxdist.sh       2011-12-08 16:15:00.300421956 +0100
> > > > @@ -741,13 +741,14 @@
> > > >  #
> > > >  ptxd_ipkg_rev_decimal_convert() {
> > > >        local ver=$*
> > > > -       while echo $ver | grep -q '[^0-9.]'
> > > > +       while echo $ver | grep -q '[^0-9.~]'
> > > >        do
> > > > -               local char=`echo -n $ver | sed 's/.*\([^0-9.]\).*/\1/'`
> > > > +               local char=`echo -n $ver | sed
> > > > + 's/.*\([^0-9.~]\).*/\1/'`
> > > >                 local char_dec=`echo -n $char | od -b | head -n 1 |
> > > > awk '{print $2}'`
> > > >                 ver=`echo $ver | sed "s/$char/.$char_dec/g"`
> > > >         done
> > > >
> > > > +       ver=`echo $ver | sed -r "s/\.?~/.-1/g"`
> > > >         ver=`echo $ver | sed 's/\.\./.0/g'`
> > > >
> > > >         echo "$ver"
> > > > --------------------------------------------------------------------
> > > > ----
> > > >
> > > > So I've been thinking about this whole version issue. The next step
> > > > would be all versions with '-'. Maybe we should always add '-1' as
> > > > packages revision. That would solve the problem for most of the
> > > > packages is the list, you posted some time ago.
> >
> > Or we could add '-1' if the version contains a '-'.
> 
> Couldn't we just replace '-' by '+' in versions? There is not much
> difference in ASCII between the 2, only the ',' comes in between the 2.

I don't really care. Any other opinions?

> >
> > > > What remains are 'broken' versions. For those few we could do, e.g.:
> > > >
> > > > MYSQL_VERSION           := 5.1.14-beta
> > > > MYSQL_XPKG_VERSION      := 5.1.14~beta
> > > >
> > > > Sounds like a good idea.
> > > Seems like the pkg_XPKG_VERSION could be autogenerated based on the
> > > pkg_VERSION so you wouldn't have to update all the package files. If
> > > there is no '-' character in the version then pkg_XPKG_VERSION would
> > > be equal to pkg_VERSION
> >
> > Yes, for most packages I want to reuse <PKG>_VERSION.
> > <PKG>_XPKG_VERSION should just be a way to overwrite the default if
> > necessary.
> >
> So replacements would be as follows:
> 
> CANFESTIVAL_VERSION := 3-20081204-1
> MYSQL_VERSION := 5.1.14-beta
> SPEEX_VERSION  := 1.2rc1
> 
> Detection of pre-versions: s/-?\(alpha|beta|gamma|rc\)/~\1/g
> tr/-/+/

And the tr/_/./ we have right now, right? (ptxd_make_xpkg_common).
I'll probably just add it there.

Michael

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

-- 
ptxdist mailing list
ptxdist@pengutronix.de

  reply	other threads:[~2011-12-09 10:09 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-29 15:59 Benoît BURNICHON
2011-12-02 15:26 ` Michael Olbrich
2011-12-03  4:46   ` [ptxdist] [PATCH] ptxd_ipkg_rev_smaller: fix compare Jon Ringle
2011-12-05 10:35   ` [ptxdist] [PATCH] ptxdist-2011.01.0 bug in make ipkg-push Benoît BURNICHON
2011-12-08 15:37 ` Michael Olbrich
2011-12-08 15:41   ` Michael Olbrich
2011-12-08 15:45   ` Jon Ringle
2011-12-08 15:55     ` Michael Olbrich
2011-12-08 17:38       ` Benoît BURNICHON
2011-12-09 10:09         ` Michael Olbrich [this message]
2011-12-09 14:20         ` [ptxdist] [PATCH] more pkg_xpkg_version sanitizing Michael Olbrich
2011-12-12 16:51           ` Jon Ringle

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=20111209100908.GB28173@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --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