zsh-workers
 help / color / mirror / code / Atom feed
* zsh-5.0.7-dev-4
@ 2015-05-27 19:06 Peter Stephenson
  2015-05-27 19:33 ` zsh-5.0.7-dev-4 Martijn Dekker
  2015-05-28 13:03 ` zsh-5.0.7-dev-4 Axel Beckert
  0 siblings, 2 replies; 6+ messages in thread
From: Peter Stephenson @ 2015-05-27 19:06 UTC (permalink / raw)
  To: Zsh hackers list

You can get another test release of 5.0.8 from

http://www.zsh.org/pub/development

I'm hoping I can release this within a couple of days.

pws


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: zsh-5.0.7-dev-4
  2015-05-27 19:06 zsh-5.0.7-dev-4 Peter Stephenson
@ 2015-05-27 19:33 ` Martijn Dekker
  2015-05-27 19:50   ` zsh-5.0.7-dev-4 Peter Stephenson
  2015-05-28 13:03 ` zsh-5.0.7-dev-4 Axel Beckert
  1 sibling, 1 reply; 6+ messages in thread
From: Martijn Dekker @ 2015-05-27 19:33 UTC (permalink / raw)
  To: zsh-workers

Peter Stephenson schreef op 27-05-15 om 21:06:
> You can get another test release of 5.0.8 from
> 
> http://www.zsh.org/pub/development
> 
> I'm hoping I can release this within a couple of days.

Unfortunately, it has the 'test' bug I posted about just now.

$ Src/zsh
% test -n '('
test: too many arguments
% [ -n ')' ]
[: too many arguments
%

- M.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: zsh-5.0.7-dev-4
  2015-05-27 19:33 ` zsh-5.0.7-dev-4 Martijn Dekker
@ 2015-05-27 19:50   ` Peter Stephenson
  2015-05-27 20:46     ` zsh-5.0.7-dev-4 Martijn Dekker
  0 siblings, 1 reply; 6+ messages in thread
From: Peter Stephenson @ 2015-05-27 19:50 UTC (permalink / raw)
  To: zsh-workers

On Wed, 27 May 2015 21:33:52 +0200
Martijn Dekker <martijn@inlv.org> wrote:
> Peter Stephenson schreef op 27-05-15 om 21:06:
> > You can get another test release of 5.0.8 from
> > 
> > http://www.zsh.org/pub/development
> > 
> > I'm hoping I can release this within a couple of days.
> 
> Unfortunately, it has the 'test' bug I posted about just now.

That's very minor and has been there for ages --- I hope I'll get a
chance to fix it (suspect it's easy) but it's not going to block the release
anyway.

pws


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: zsh-5.0.7-dev-4
  2015-05-27 19:50   ` zsh-5.0.7-dev-4 Peter Stephenson
@ 2015-05-27 20:46     ` Martijn Dekker
  2015-05-27 21:17       ` zsh-5.0.7-dev-4 Mikael Magnusson
  0 siblings, 1 reply; 6+ messages in thread
From: Martijn Dekker @ 2015-05-27 20:46 UTC (permalink / raw)
  To: zsh-workers

Peter Stephenson schreef op 27-05-15 om 21:50:
> On Wed, 27 May 2015 21:33:52 +0200
> Martijn Dekker <martijn@inlv.org> wrote:
>> Peter Stephenson schreef op 27-05-15 om 21:06:
>>> You can get another test release of 5.0.8 from
>>>
>>> http://www.zsh.org/pub/development
>>>
>>> I'm hoping I can release this within a couple of days.
>>
>> Unfortunately, it has the 'test' bug I posted about just now.
> 
> That's very minor and has been there for ages --- I hope I'll get a
> chance to fix it (suspect it's easy) but it's not going to block the release
> anyway.

The spurious error message is not the real problem. Because of the
incorrect exit status, this causes any POSIX script that uses 'test -n
$stuff' or '[ -n $stuff ]' on arbitrary input (i.e. which might include
'(' or ')') to take the wrong action, so I would hardly call this minor.

- M.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: zsh-5.0.7-dev-4
  2015-05-27 20:46     ` zsh-5.0.7-dev-4 Martijn Dekker
@ 2015-05-27 21:17       ` Mikael Magnusson
  0 siblings, 0 replies; 6+ messages in thread
From: Mikael Magnusson @ 2015-05-27 21:17 UTC (permalink / raw)
  To: Martijn Dekker; +Cc: zsh workers

On Wed, May 27, 2015 at 10:46 PM, Martijn Dekker <martijn@inlv.org> wrote:
> Peter Stephenson schreef op 27-05-15 om 21:50:
>> On Wed, 27 May 2015 21:33:52 +0200
>> Martijn Dekker <martijn@inlv.org> wrote:
>>> Peter Stephenson schreef op 27-05-15 om 21:06:
>>>> You can get another test release of 5.0.8 from
>>>>
>>>> http://www.zsh.org/pub/development
>>>>
>>>> I'm hoping I can release this within a couple of days.
>>>
>>> Unfortunately, it has the 'test' bug I posted about just now.
>>
>> That's very minor and has been there for ages --- I hope I'll get a
>> chance to fix it (suspect it's easy) but it's not going to block the release
>> anyway.
>
> The spurious error message is not the real problem. Because of the
> incorrect exit status, this causes any POSIX script that uses 'test -n
> $stuff' or '[ -n $stuff ]' on arbitrary input (i.e. which might include
> '(' or ')') to take the wrong action, so I would hardly call this minor.

The important factor is that it is not a regression.

-- 
Mikael Magnusson


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: zsh-5.0.7-dev-4
  2015-05-27 19:06 zsh-5.0.7-dev-4 Peter Stephenson
  2015-05-27 19:33 ` zsh-5.0.7-dev-4 Martijn Dekker
@ 2015-05-28 13:03 ` Axel Beckert
  1 sibling, 0 replies; 6+ messages in thread
From: Axel Beckert @ 2015-05-28 13:03 UTC (permalink / raw)
  To: zsh-workers

Hi,

On Wed, May 27, 2015 at 08:06:31PM +0100, Peter Stephenson wrote:
> You can get another test release of 5.0.8 from
> 
> http://www.zsh.org/pub/development
> 
> I'm hoping I can release this within a couple of days.

Builds and works fine as Debian package so far.

And thanks to Jun T. I could also drop our own patch to support
texinfo-5. Yay!

		Kind regards, Axel
-- 
/~\  Plain Text Ribbon Campaign                   | Axel Beckert
\ /  Say No to HTML in E-Mail and News            | abe@deuxchevaux.org  (Mail)
 X   See http://www.nonhtmlmail.org/campaign.html | abe@noone.org (Mail+Jabber)
/ \  I love long mails: http://email.is-not-s.ms/ | http://abe.noone.org/ (Web)


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-05-28 13:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-27 19:06 zsh-5.0.7-dev-4 Peter Stephenson
2015-05-27 19:33 ` zsh-5.0.7-dev-4 Martijn Dekker
2015-05-27 19:50   ` zsh-5.0.7-dev-4 Peter Stephenson
2015-05-27 20:46     ` zsh-5.0.7-dev-4 Martijn Dekker
2015-05-27 21:17       ` zsh-5.0.7-dev-4 Mikael Magnusson
2015-05-28 13:03 ` zsh-5.0.7-dev-4 Axel Beckert

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).