Re: Port version difficulties (maybe one for the Python crowd)

2009-12-11 Thread Peter Pentchev
On Mon, Dec 07, 2009 at 05:12:03PM -0500, Greg Larkin wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kevin Golding wrote: In article 4b1d617a.6020...@freebsd.org, Greg Larkin glar...@freebsd.org writes This might get you further: fbsd70# make -V \

Re: Port version difficulties (maybe one for the Python crowd)

2009-12-07 Thread Greg Larkin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kevin Golding wrote: I've had a bit of a poke around and no real joy in figuring this out so let's see just how obvious the thing I'm missing is. I'm trying to create a new port and I'm getting in a tangle with the version number. Basically,

Re: Port version difficulties (maybe one for the Python crowd)

2009-12-07 Thread Kevin Golding
In article 4b1d516d.2060...@freebsd.org, Greg Larkin glar...@freebsd.org writes Kevin Golding wrote: I'm trying to create a new port and I'm getting in a tangle with the version number. Basically, the author of this software has given it a version number 0.1_0 which is incompatible with ports.

Re: Port version difficulties (maybe one for the Python crowd)

2009-12-07 Thread Greg Larkin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kevin Golding wrote: In article 4b1d516d.2060...@freebsd.org, Greg Larkin glar...@freebsd.org writes Kevin Golding wrote: I'm trying to create a new port and I'm getting in a tangle with the version number. Basically, the author of this software

Re: Port version difficulties (maybe one for the Python crowd)

2009-12-07 Thread Kevin Golding
In article 4b1d617a.6020...@freebsd.org, Greg Larkin glar...@freebsd.org writes This might get you further: fbsd70# make -V \ PYDISTUTILS_PKGVERSION:C/\(\[\[:digit:\]\]\.\[\[:digit:\]\]\)\./\\1_/g 0.1_0 fbsd70# Well that does indeed work in that context, but I have no idea why it appears to do

Re: Port version difficulties (maybe one for the Python crowd)

2009-12-07 Thread Kevin Golding
In article 4b1d7db3.60...@freebsd.org, Greg Larkin glar...@freebsd.org writes There's a lot more backslash escaping required in the :C suffix above when running the make command directly in the shell. If you remove some of the backslashes in the equivalent line in the Makefile, should be all set.