Re: [ptxdist] [PATCH 1/6] [ipkg] Fixed ipg versions for ipkg-push

2010-01-28 Thread Michael Olbrich
On Wed, Jan 27, 2010 at 07:01:17PM +0100, Marc Kleine-Budde wrote: yeah, you can delete some rules, but I don't don't which. But Michael knows. For now it's just prepare that can be deleted. And that's only a side effect. I'm working on a patch for that. Something like: PKG_SOURCE not defined -

[ptxdist] [PATCH 1/6] [ipkg] Fixed ipg versions for ipkg-push

2010-01-27 Thread Carsten Schlote
From: Carsten Schlote c.schl...@konzeptpark.de The ipkg-push script doesn't like '-1' or similiar postfixes at the end of an ipkg version. Packets like hackbench, mbw or zlib violate this rule. Added $(subst) to ptxd_make_install.sh to convert a version info containing '-' to a ipkg compatible

Re: [ptxdist] [PATCH 1/6] [ipkg] Fixed ipg versions for ipkg-push

2010-01-27 Thread Marc Kleine-Budde
Carsten Schlote wrote: From: Carsten Schlote c.schl...@konzeptpark.de The ipkg-push script doesn't like '-1' or similiar postfixes at the end of an ipkg version. Packets like hackbench, mbw or zlib violate this rule. Added $(subst) to ptxd_make_install.sh to convert a version info

Re: [ptxdist] [PATCH 1/6] [ipkg] Fixed ipg versions for ipkg-push

2010-01-27 Thread Carsten Schlote
;; VERSION) - replace_to=${replace_to}${PTXCONF_PROJECT_BUILD} + replace_to=`echo ${replace_to} | sed -e 's/- /./'`${PTXCONF_PROJECT_BUILD} please use bash magic for this: ${replace_to//-/.} (this actually is: s/-/./g, what about _ in the version string? Not

Re: [ptxdist] [PATCH 1/6] [ipkg] Fixed ipg versions for ipkg-push

2010-01-27 Thread Marc Kleine-Budde
Carsten Schlote wrote: ;; VERSION) - replace_to=${replace_to}${PTXCONF_PROJECT_BUILD} + replace_to=`echo ${replace_to} | sed -e 's/- /./'`${PTXCONF_PROJECT_BUILD} please use bash magic for this: ${replace_to//-/.} (this actually is: s/-/./g, what about _ in the

Re: [ptxdist] [PATCH 1/6] [ipkg] Fixed ipg versions for ipkg-push

2010-01-27 Thread Carsten Schlote
If ipkg is fine with the versions, IMHO we should fix the script. Or better said: ipkg should limit us here, not the ipkg-push script. Sorry, the script is in ipkg-utils and is called from ipkg-push. The python scripts is the problem here, it simply expects all ipkg files to follow a given

Re: [ptxdist] [PATCH 1/6] [ipkg] Fixed ipg versions for ipkg-push

2010-01-27 Thread Marc Kleine-Budde
Carsten Schlote wrote: If ipkg is fine with the versions, IMHO we should fix the script. Or better said: ipkg should limit us here, not the ipkg-push script. Sorry, the script is in ipkg-utils and is called from ipkg-push. The python scripts is the problem here, it simply expects all ipkg

Re: [ptxdist] [PATCH 1/6] [ipkg] Fixed ipg versions for ipkg-push

2010-01-27 Thread Marc Kleine-Budde
Marc Kleine-Budde wrote: Carsten Schlote wrote: If ipkg is fine with the versions, IMHO we should fix the script. Or better said: ipkg should limit us here, not the ipkg-push script. Sorry, the script is in ipkg-utils and is called from ipkg-push. The python scripts is the problem here, it

[ptxdist] [PATCH 1/6] [ipkg] Fixed ipg versions for ipkg-push

2010-01-27 Thread Carsten Schlote
From: Carsten Schlote c.schl...@konzeptpark.de The ipkg-push script doesn't like '-1' or similiar postfixes at the end of an ipkg version. Packets like hackbench, mbw or zlib violate this rule. Added bash-magic to ptxd_make_install.sh to convert a version info containing '-' or '_' to a ipkg

Re: [ptxdist] [PATCH 1/6] [ipkg] Fixed ipg versions for ipkg-push

2010-01-27 Thread Carsten Schlote
Added bash-magic to ptxd_make_install.sh to convert a version info containing '-' or '_' to a ipkg compatible format. Signed-off-by: Carsten Schlote c.schl...@konzeptpark.de what about project_build? should we fix that up, too? Just in case? +

Re: [ptxdist] [PATCH 1/6] [ipkg] Fixed ipg versions for ipkg-push

2010-01-27 Thread Carsten Schlote
The 'for-marc' branch holds the current set of ACKed pending patches for upstream. michael is working on device kit and is using the libuuid/libblkid patches with the virtual packages. at least for now. Yes, the empty .make 'virtual packet' stubs are not more than a hotfix. Ugly but

Re: [ptxdist] [PATCH 1/6] [ipkg] Fixed ipg versions for ipkg-push

2010-01-27 Thread Marc Kleine-Budde
Carsten Schlote wrote: michael is working on device kit and is using the libuuid/libblkid patches with the virtual packages. at least for now. Yes, the empty .make 'virtual packet' stubs are not more than a hotfix. Ugly but working. It would be better to get rid of the make fragments, or