Re: Tag Tomcat 7

2021-03-31 Thread Violeta Georgieva
На ср, 31.03.2021 г. в 11:46 ч. Mark Thomas  написа:
>
> On 31/03/2021 08:36, Konstantin Kolinko wrote:
> > ср, 31 мар. 2021 г. в 08:25, Violeta Georgieva :
> >>
> >> Hi,
> >>
> >> Later today I'm going to prepare Tomcat 7 for a release/vote.
> >> Please reply here if you need more time for additional fixes.
> >
> > There is a bug introduced in Tomcat Native 1.2.27 (regression in
> > handling of a configuration error).
> > https://bz.apache.org/bugzilla/show_bug.cgi?id=65181#c8
> >
> > I wonder whether we want or can reroll a Tomcat Native release now, or
> > will wait for the next update of OpenSSL in a few months as usual.
>
> I could re-roll a Tomcat Native release now. I don't think it is
> necessary for 10.0.x, 9.0.x or 8.5.x but I can see the benefit in fixing
> it for what is likely to be the final 7.0.x release.
>

Yep if you can do that it will be great.
I'll postpone the release.

Thanks,
Violeta


Re: Tag Tomcat 7

2021-03-31 Thread Mark Thomas

On 31/03/2021 08:36, Konstantin Kolinko wrote:

ср, 31 мар. 2021 г. в 08:25, Violeta Georgieva :


Hi,

Later today I'm going to prepare Tomcat 7 for a release/vote.
Please reply here if you need more time for additional fixes.


There is a bug introduced in Tomcat Native 1.2.27 (regression in
handling of a configuration error).
https://bz.apache.org/bugzilla/show_bug.cgi?id=65181#c8

I wonder whether we want or can reroll a Tomcat Native release now, or
will wait for the next update of OpenSSL in a few months as usual.


I could re-roll a Tomcat Native release now. I don't think it is 
necessary for 10.0.x, 9.0.x or 8.5.x but I can see the benefit in fixing 
it for what is likely to be the final 7.0.x release.


Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2021-03-31 Thread Konstantin Kolinko
ср, 31 мар. 2021 г. в 08:25, Violeta Georgieva :
>
> Hi,
>
> Later today I'm going to prepare Tomcat 7 for a release/vote.
> Please reply here if you need more time for additional fixes.

There is a bug introduced in Tomcat Native 1.2.27 (regression in
handling of a configuration error).
https://bz.apache.org/bugzilla/show_bug.cgi?id=65181#c8

I wonder whether we want or can reroll a Tomcat Native release now, or
will wait for the next update of OpenSSL in a few months as usual.

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-12-11 Thread Violeta Georgieva
На ср, 11.12.2019 г. в 13:40 Konstantin Kolinko 
написа:
>
> вт, 10 дек. 2019 г. в 13:04, Violeta Georgieva :
> >
> > Hi,
> >
> > I'm going of prepare Tomcat 7 for a release/vote tomorrow.
> > Please reply here if you need more time for additional fixes.
>
> I think it is OK to go.

Thanks a lot
I'm gonna tag Tomcat 7

>
> Best regards,
> Konstantin Kolinko
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org


Re: Tag Tomcat 7

2019-12-11 Thread Konstantin Kolinko
вт, 10 дек. 2019 г. в 13:04, Violeta Georgieva :
>
> Hi,
>
> I'm going of prepare Tomcat 7 for a release/vote tomorrow.
> Please reply here if you need more time for additional fixes.

I think it is OK to go.

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-12-11 Thread Konstantin Kolinko
вт, 10 дек. 2019 г. в 20:34, Mark Thomas :
>
> On 10/12/2019 15:23, Mark Thomas wrote:
> > On 10/12/2019 15:20, Konstantin Kolinko wrote:
>
>
> 
>
>  There is a typo in daemon.sh
> 
>  -Dcatalina.base="\"$CATALINA_BASE"\" \
> >
> > Good catch.
> >
> > I've just fixed it. Next task is to figure out how badly it breaks things.
>
> I think I might have got away with this (in terms of impact on the
> current releases).
>
> I did a quick test with the typo in place and a basic test of script
> works as does running in a directory with spaces.
>
> I'm sure there will be some edge cases that are still broken but my
> current plan is to pick up that fix in the next release.

I did a quick test using bash that comes with Git for Windows and
calling the following simple script that prints its arguments (instead
of calling jsvc):

[[[
#!/bin/sh
echo "Arguments:"
while [ $# -gt 0 ]
do
  echo "[$1]"
  shift
done
]]]

I was running with
JSVC=./args.sh
CATALINA_BASE="catalina base"
CATALINA_HOME="catalina home"
etc.

Both variants of quoting result in the same value being printed:
[-Dcatalina.base=catalina base]
[-Dcatalina.home=catalina home]

Thus that typo does not have any consequences.

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-12-10 Thread Mark Thomas
On 10/12/2019 15:23, Mark Thomas wrote:
> On 10/12/2019 15:20, Konstantin Kolinko wrote:




 There is a typo in daemon.sh

 -Dcatalina.base="\"$CATALINA_BASE"\" \
> 
> Good catch.
> 
> I've just fixed it. Next task is to figure out how badly it breaks things.

I think I might have got away with this (in terms of impact on the
current releases).

I did a quick test with the typo in place and a basic test of script
works as does running in a directory with spaces.

I'm sure there will be some edge cases that are still broken but my
current plan is to pick up that fix in the next release.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-12-10 Thread Mark Thomas
On 10/12/2019 15:20, Konstantin Kolinko wrote:
> вт, 10 дек. 2019 г. в 18:10, Violeta Georgieva :
>>
>>
>>
>> На вт, 10.12.2019 г. в 16:45 Konstantin Kolinko  
>> написа:
>>>
 Re: c06674e09e9f3f43dc0e5c022dc8c311a4285cfd
 I'll fix it in a few minutes.
>>>
>>> Fixed.
>>>
>>> Another one noted:
>>>
>>> Re 6ef27808e499d5b84f9789e56dc0e846ef388005
 Partial fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=63815
>>>
>>> There is a typo in daemon.sh
>>>
>>> -Dcatalina.base="\"$CATALINA_BASE"\" \

Good catch.

I've just fixed it. Next task is to figure out how badly it breaks things.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-12-10 Thread Konstantin Kolinko
вт, 10 дек. 2019 г. в 18:10, Violeta Georgieva :
>
>
>
> На вт, 10.12.2019 г. в 16:45 Konstantin Kolinko  
> написа:
> >
> > > Re: c06674e09e9f3f43dc0e5c022dc8c311a4285cfd
> > > I'll fix it in a few minutes.
> >
> > Fixed.
> >
> > Another one noted:
> >
> > Re 6ef27808e499d5b84f9789e56dc0e846ef388005
> > > Partial fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=63815
> >
> > There is a typo in daemon.sh
> >
> > -Dcatalina.base="\"$CATALINA_BASE"\" \
>
> Which is the line exactly?
>
>
> I see two types only
>
> -Dcatalina.base="$CATALINA_BASE" \
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L363
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L372
>
> -Dcatalina.base="\"$CATALINA_BASE\"" \
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L392
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L400
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L460
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L470
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L523
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L610

It is daemon.sh line 231. It is in the code that implements "start"
command for daemon.
https://github.com/apache/tomcat/blob/7.0.x/bin/daemon.sh#L231

In 9.0.x as well:
https://github.com/apache/tomcat/blob/master/bin/daemon.sh#L231

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-12-10 Thread Violeta Georgieva
На вт, 10.12.2019 г. в 17:10 Violeta Georgieva 
написа:
>
>
>
> На вт, 10.12.2019 г. в 16:45 Konstantin Kolinko 
написа:
> >
> > > Re: c06674e09e9f3f43dc0e5c022dc8c311a4285cfd
> > > I'll fix it in a few minutes.
> >
> > Fixed.
> >
> > Another one noted:
> >
> > Re 6ef27808e499d5b84f9789e56dc0e846ef388005
> > > Partial fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=63815
> >
> > There is a typo in daemon.sh
> >
> > -Dcatalina.base="\"$CATALINA_BASE"\" \
>
> Which is the line exactly?

ops it is daemon.sh

sorry for the noise


>
>
> I see two types only
>
> -Dcatalina.base="$CATALINA_BASE" \
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L363
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L372
>
> -Dcatalina.base="\"$CATALINA_BASE\"" \
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L392
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L400
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L460
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L470
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L523
> https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L610
>
>
> >
> > The right double quotes on other lines are quoted differently,
> > slash+dquote+dquote e.g:
> > -Dcatalina.home="\"$CATALINA_HOME\"" \
> >
> > It is hard for me to test whether there are visible consequences of
> > this typo. It affects 8.5 and 9.0 as well.
> >
> >
> >
> > вт, 10 дек. 2019 г. в 13:04, Violeta Georgieva :
> > >
> > > Hi,
> > >
> > > I'm going of prepare Tomcat 7 for a release/vote tomorrow.
> > > Please reply here if you need more time for additional fixes.
> > >
> > > Thanks,
> > > Violeta
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> > For additional commands, e-mail: dev-h...@tomcat.apache.org

>


Re: Tag Tomcat 7

2019-12-10 Thread Violeta Georgieva
На вт, 10.12.2019 г. в 16:45 Konstantin Kolinko 
написа:
>
> > Re: c06674e09e9f3f43dc0e5c022dc8c311a4285cfd
> > I'll fix it in a few minutes.
>
> Fixed.
>
> Another one noted:
>
> Re 6ef27808e499d5b84f9789e56dc0e846ef388005
> > Partial fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=63815
>
> There is a typo in daemon.sh
>
> -Dcatalina.base="\"$CATALINA_BASE"\" \

Which is the line exactly?


I see two types only

-Dcatalina.base="$CATALINA_BASE" \
https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L363
https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L372

-Dcatalina.base="\"$CATALINA_BASE\"" \
https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L392
https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L400
https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L460
https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L470
https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L523
https://github.com/apache/tomcat/blob/7.0.x/bin/catalina.sh#L610


>
> The right double quotes on other lines are quoted differently,
> slash+dquote+dquote e.g:
> -Dcatalina.home="\"$CATALINA_HOME\"" \
>
> It is hard for me to test whether there are visible consequences of
> this typo. It affects 8.5 and 9.0 as well.
>
>
>
> вт, 10 дек. 2019 г. в 13:04, Violeta Georgieva :
> >
> > Hi,
> >
> > I'm going of prepare Tomcat 7 for a release/vote tomorrow.
> > Please reply here if you need more time for additional fixes.
> >
> > Thanks,
> > Violeta
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org


Re: Tag Tomcat 7

2019-12-10 Thread Konstantin Kolinko
> Re: c06674e09e9f3f43dc0e5c022dc8c311a4285cfd
> I'll fix it in a few minutes.

Fixed.

Another one noted:

Re 6ef27808e499d5b84f9789e56dc0e846ef388005
> Partial fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=63815

There is a typo in daemon.sh

-Dcatalina.base="\"$CATALINA_BASE"\" \

The right double quotes on other lines are quoted differently,
slash+dquote+dquote e.g:
-Dcatalina.home="\"$CATALINA_HOME\"" \

It is hard for me to test whether there are visible consequences of
this typo. It affects 8.5 and 9.0 as well.



вт, 10 дек. 2019 г. в 13:04, Violeta Georgieva :
>
> Hi,
>
> I'm going of prepare Tomcat 7 for a release/vote tomorrow.
> Please reply here if you need more time for additional fixes.
>
> Thanks,
> Violeta

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-12-10 Thread Konstantin Kolinko
Re: c06674e09e9f3f43dc0e5c022dc8c311a4285cfd

It added a reference to a message
sm.getString("coyoteRequest.changeSessionId"));

but there is no such message in LocalStrings.properties

I'll fix it in a few minutes.


вт, 10 дек. 2019 г. в 13:04, Violeta Georgieva :
>
> Hi,
>
> I'm going of prepare Tomcat 7 for a release/vote tomorrow.
> Please reply here if you need more time for additional fixes.
>
> Thanks,
> Violeta

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-11-21 Thread Mark Thomas
On 21/11/2019 09:22, Violeta Georgieva wrote:
> Hi,
> 
> I'm thinking of preparing Tomcat 7 for a release/vote tomorrow.
> Please reply here if you need more time for that release.

Cool.

I have nothing sat locally that needs to be committed.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-10-02 Thread Violeta Georgieva
На ср, 2.10.2019 г. в 18:12 ч. Mark Thomas  написа:
>
> On 01/10/2019 12:18, Mark Thomas wrote:
> > On 01/10/2019 12:17, Violeta Georgieva wrote:
> >> Hi Mark,
> >>
> >> На вт, 1.10.2019 г. в 13:58 ч. Mark Thomas  >> > написа:
> >>>
> >>> On 01/10/2019 11:09, Violeta Georgieva wrote:
>  Hi,
> 
>  I'm planning to tag Tomcat 7 later today.
>  If you want to include something please reply here.
> >>>
> >>> I am just looking at PR #170 that should backport to 7.0.x. I should
be
> >>> done in less than an hour.
> >>>
> >>> If you could delay the tag until after I have completed the back-port
> >>> that would be great. Don't worry if not.
> >>
> >> Ok
> >> Just let me know when you are ready.
> >
> > Thanks. I'm done.
>
> Actually...
>
> Do you want to wait for the Commons Daemon 1.2.2 release?
>

Ok
When will this be available?

Regards,
Violeta


Re: Tag Tomcat 7

2019-10-02 Thread Mark Thomas
On 01/10/2019 12:18, Mark Thomas wrote:
> On 01/10/2019 12:17, Violeta Georgieva wrote:
>> Hi Mark,
>>
>> На вт, 1.10.2019 г. в 13:58 ч. Mark Thomas > > написа:
>>>
>>> On 01/10/2019 11:09, Violeta Georgieva wrote:
 Hi,

 I'm planning to tag Tomcat 7 later today.
 If you want to include something please reply here.
>>>
>>> I am just looking at PR #170 that should backport to 7.0.x. I should be
>>> done in less than an hour.
>>>
>>> If you could delay the tag until after I have completed the back-port
>>> that would be great. Don't worry if not.
>>
>> Ok
>> Just let me know when you are ready.
> 
> Thanks. I'm done.

Actually...

Do you want to wait for the Commons Daemon 1.2.2 release?

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-10-01 Thread Mark Thomas
On 01/10/2019 12:17, Violeta Georgieva wrote:
> Hi Mark,
> 
> На вт, 1.10.2019 г. в 13:58 ч. Mark Thomas  > написа:
>>
>> On 01/10/2019 11:09, Violeta Georgieva wrote:
>> > Hi,
>> >
>> > I'm planning to tag Tomcat 7 later today.
>> > If you want to include something please reply here.
>>
>> I am just looking at PR #170 that should backport to 7.0.x. I should be
>> done in less than an hour.
>>
>> If you could delay the tag until after I have completed the back-port
>> that would be great. Don't worry if not.
> 
> Ok
> Just let me know when you are ready.

Thanks. I'm done.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-10-01 Thread Violeta Georgieva
Hi Mark,

На вт, 1.10.2019 г. в 13:58 ч. Mark Thomas  написа:
>
> On 01/10/2019 11:09, Violeta Georgieva wrote:
> > Hi,
> >
> > I'm planning to tag Tomcat 7 later today.
> > If you want to include something please reply here.
>
> I am just looking at PR #170 that should backport to 7.0.x. I should be
> done in less than an hour.
>
> If you could delay the tag until after I have completed the back-port
> that would be great. Don't worry if not.

Ok
Just let me know when you are ready.

Regards,
Violeta


Re: Tag Tomcat 7

2019-10-01 Thread Mark Thomas
On 01/10/2019 11:09, Violeta Georgieva wrote:
> Hi,
> 
> I'm planning to tag Tomcat 7 later today.
> If you want to include something please reply here.

I am just looking at PR #170 that should backport to 7.0.x. I should be
done in less than an hour.

If you could delay the tag until after I have completed the back-port
that would be great. Don't worry if not.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-07-24 Thread Violeta Georgieva
На ср, 24.07.2019 г. в 0:05 ч. Mark Thomas  написа:
>
> On 23/07/2019 21:22, Violeta Georgieva wrote:
> > Hi Mark,
> >
> > На вт, 23.07.2019 г. в 23:17 ч. Mark Thomas  > > написа:
> >>
> >> On 23/07/2019 21:06, Violeta Georgieva wrote:
> >> > Hi,
> >> >
> >> > I'm planning to tag Tomcat 7 tomorrow morning (CET).
> >> > If you want to include something please reply here.
> >>
> >> I'll make sure that the CI is running cleanly with the recent enabling
> >> of parallel test execution before then.
> >
> > If you need more time I can postpone it.
>
> Thanks but all looks good. It runs without errors locally me for on OSX
> and the CI run completed without errors as well - and in only 14 mins :)
>
> All good to go from my PoV.


Thanks


Re: Tag Tomcat 7

2019-07-23 Thread Mark Thomas
On 23/07/2019 21:22, Violeta Georgieva wrote:
> Hi Mark,
> 
> На вт, 23.07.2019 г. в 23:17 ч. Mark Thomas  > написа:
>>
>> On 23/07/2019 21:06, Violeta Georgieva wrote:
>> > Hi,
>> >
>> > I'm planning to tag Tomcat 7 tomorrow morning (CET).
>> > If you want to include something please reply here.
>>
>> I'll make sure that the CI is running cleanly with the recent enabling
>> of parallel test execution before then.
> 
> If you need more time I can postpone it.

Thanks but all looks good. It runs without errors locally me for on OSX
and the CI run completed without errors as well - and in only 14 mins :)

All good to go from my PoV.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-07-23 Thread Violeta Georgieva
Hi Mark,

На вт, 23.07.2019 г. в 23:17 ч. Mark Thomas  написа:
>
> On 23/07/2019 21:06, Violeta Georgieva wrote:
> > Hi,
> >
> > I'm planning to tag Tomcat 7 tomorrow morning (CET).
> > If you want to include something please reply here.
>
> I'll make sure that the CI is running cleanly with the recent enabling
> of parallel test execution before then.

If you need more time I can postpone it.

Regards,
Violeta


Re: Tag Tomcat 7

2019-07-23 Thread Mark Thomas
On 23/07/2019 21:06, Violeta Georgieva wrote:
> Hi,
> 
> I'm planning to tag Tomcat 7 tomorrow morning (CET).
> If you want to include something please reply here.

I'll make sure that the CI is running cleanly with the recent enabling
of parallel test execution before then.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-07-10 Thread Violeta Georgieva
На ср, 10.07.2019 г. в 12:34 ч. Mark Thomas  написа:
>
> On 10/07/2019 10:28, Mark Thomas wrote:
> > On 10/07/2019 10:23, Mark Thomas wrote:
> >> On 10/07/2019 09:24, Violeta Georgieva wrote:
> >>> Hi Mark,
> >>>
> >>> На ср, 10.07.2019 г. в 10:53 ч. Mark Thomas  >>> > написа:
> 
>  On 10/07/2019 06:40, Violeta Georgieva wrote:
> > Hi,
> >
> > I'm planning to tag Tomcat 7 later today.
> > If you want to include something please reply here.
> 
>  I have some clean-up I am working on but it should be all
non-functional
>  changes so it doesn't really matter if it gets committed before tag
or
>  after tag. Feel free to ignore me unless I am getting in the way in
>  which case just let me know.
> >>>
> >>> I can wait, so go ahead and tell me when you are ready. Ok?
> >>
> >> I'm done for now. Feel free to go ahead when you are ready.
> >
> > Scratch that. My clean-up broke stuff and I missed it as the problems
> > were masked by an IDE config error.
> >
> > Working on fixing this now...
>
> Phew...
>
> That wasn't as bad as I feared when I saw the errors. All fixed. Over to
> you...

Thanks


Re: Tag Tomcat 7

2019-07-10 Thread Mark Thomas
On 10/07/2019 10:28, Mark Thomas wrote:
> On 10/07/2019 10:23, Mark Thomas wrote:
>> On 10/07/2019 09:24, Violeta Georgieva wrote:
>>> Hi Mark,
>>>
>>> На ср, 10.07.2019 г. в 10:53 ч. Mark Thomas >> > написа:

 On 10/07/2019 06:40, Violeta Georgieva wrote:
> Hi,
>
> I'm planning to tag Tomcat 7 later today.
> If you want to include something please reply here.

 I have some clean-up I am working on but it should be all non-functional
 changes so it doesn't really matter if it gets committed before tag or
 after tag. Feel free to ignore me unless I am getting in the way in
 which case just let me know.
>>>
>>> I can wait, so go ahead and tell me when you are ready. Ok?
>>
>> I'm done for now. Feel free to go ahead when you are ready.
> 
> Scratch that. My clean-up broke stuff and I missed it as the problems
> were masked by an IDE config error.
> 
> Working on fixing this now...

Phew...

That wasn't as bad as I feared when I saw the errors. All fixed. Over to
you...

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-07-10 Thread Mark Thomas
On 10/07/2019 10:23, Mark Thomas wrote:
> On 10/07/2019 09:24, Violeta Georgieva wrote:
>> Hi Mark,
>>
>> На ср, 10.07.2019 г. в 10:53 ч. Mark Thomas > > написа:
>>>
>>> On 10/07/2019 06:40, Violeta Georgieva wrote:
 Hi,

 I'm planning to tag Tomcat 7 later today.
 If you want to include something please reply here.
>>>
>>> I have some clean-up I am working on but it should be all non-functional
>>> changes so it doesn't really matter if it gets committed before tag or
>>> after tag. Feel free to ignore me unless I am getting in the way in
>>> which case just let me know.
>>
>> I can wait, so go ahead and tell me when you are ready. Ok?
> 
> I'm done for now. Feel free to go ahead when you are ready.

Scratch that. My clean-up broke stuff and I missed it as the problems
were masked by an IDE config error.

Working on fixing this now...

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-07-10 Thread Mark Thomas
On 10/07/2019 09:24, Violeta Georgieva wrote:
> Hi Mark,
> 
> На ср, 10.07.2019 г. в 10:53 ч. Mark Thomas  > написа:
>>
>> On 10/07/2019 06:40, Violeta Georgieva wrote:
>> > Hi,
>> >
>> > I'm planning to tag Tomcat 7 later today.
>> > If you want to include something please reply here.
>>
>> I have some clean-up I am working on but it should be all non-functional
>> changes so it doesn't really matter if it gets committed before tag or
>> after tag. Feel free to ignore me unless I am getting in the way in
>> which case just let me know.
> 
> I can wait, so go ahead and tell me when you are ready. Ok?

I'm done for now. Feel free to go ahead when you are ready.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-07-10 Thread Violeta Georgieva
Hi Mark,

На ср, 10.07.2019 г. в 10:53 ч. Mark Thomas  написа:
>
> On 10/07/2019 06:40, Violeta Georgieva wrote:
> > Hi,
> >
> > I'm planning to tag Tomcat 7 later today.
> > If you want to include something please reply here.
>
> I have some clean-up I am working on but it should be all non-functional
> changes so it doesn't really matter if it gets committed before tag or
> after tag. Feel free to ignore me unless I am getting in the way in
> which case just let me know.

I can wait, so go ahead and tell me when you are ready. Ok?

Regards,
Violeta


Re: Tag Tomcat 7

2019-07-10 Thread Mark Thomas
On 10/07/2019 06:40, Violeta Georgieva wrote:
> Hi,
> 
> I'm planning to tag Tomcat 7 later today.
> If you want to include something please reply here.

I have some clean-up I am working on but it should be all non-functional
changes so it doesn't really matter if it gets committed before tag or
after tag. Feel free to ignore me unless I am getting in the way in
which case just let me know.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-02-16 Thread Violeta Georgieva
На сб, 16.02.2019 г. в 16:14 ч. Konstantin Kolinko 
написа:
>
> сб, 16 февр. 2019 г. в 11:20, Violeta Georgieva :
> >
> > На пт, 15.02.2019 г. в 22:29 ч. Christopher Schultz <
> > ch...@christopherschultz.net> написа:
> > >
> > > -BEGIN PGP SIGNED MESSAGE-
> > > Hash: SHA256
> > >
> > > Violetta,
> > >
> > > I think there might be one more item to back-port from Konstantin, who
> > > has not yet committed his changes to trunk/8.5. Given the time between
> > > Tomcat 7 releases, can you maybe delay another 24-48 hours to see if
> > > he wants to get his patch into Tomcat 7?
> >
> > Ok, n.p.
>
> I committed all that I planned for today.
> OK to go.

Thanks


Re: Tag Tomcat 7

2019-02-16 Thread Konstantin Kolinko
сб, 16 февр. 2019 г. в 11:20, Violeta Georgieva :
>
> На пт, 15.02.2019 г. в 22:29 ч. Christopher Schultz <
> ch...@christopherschultz.net> написа:
> >
> > -BEGIN PGP SIGNED MESSAGE-
> > Hash: SHA256
> >
> > Violetta,
> >
> > I think there might be one more item to back-port from Konstantin, who
> > has not yet committed his changes to trunk/8.5. Given the time between
> > Tomcat 7 releases, can you maybe delay another 24-48 hours to see if
> > he wants to get his patch into Tomcat 7?
>
> Ok, n.p.

I committed all that I planned for today.
OK to go.

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-02-16 Thread Violeta Georgieva
На пт, 15.02.2019 г. в 22:29 ч. Christopher Schultz <
ch...@christopherschultz.net> написа:
>
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA256
>
> Violetta,
>
> On 2/15/19 05:37, Violeta Georgieva wrote:
> > На пт, 15.02.2019 г. в 10:24 ч. Mark Thomas 
> > написа:
> >>
> >>
> >>
> >> On 15/02/2019 07:02, Violeta Georgieva wrote:
> >>> На вт, 12.02.2019 г. в 7:30 ч. Violeta Georgieva
> >>>  написа:
> 
> 
> 
>  На вт, 12.02.2019 г. в 1:11 ч. Konstantin Kolinko <
> > knst.koli...@gmail.com>
> >>> написа:
> >
> > пн, 11 февр. 2019 г. в 18:33, Violeta Georgieva
> >  >> :
> >>>
> >>> I did what I planned for today. I think it is OK to
> >>> go.
> >>
> >> Thanks I'll tag it in the next hours
> >
> > There is a regression in catalina.sh script. It does not
> > create a correct PID file. This is discussed in
> > https://bz.apache.org/bugzilla/show_bug.cgi?id=63041
> 
>  Ok as I didn't upload any binaries, I'll just drop the tag
>  and retag
> >>> again when there is a fix for this issue.
> >>>
> >>>
> >>> Are we OK with the current changes so that I can restart the
> >>> release process?
> >>
> >> Essentially the changes have been reverted so yes, I think we are
> >> good to go.
>
> I think there might be one more item to back-port from Konstantin, who
> has not yet committed his changes to trunk/8.5. Given the time between
> Tomcat 7 releases, can you maybe delay another 24-48 hours to see if
> he wants to get his patch into Tomcat 7?

Ok, n.p.
Violeta


Re: Tag Tomcat 7

2019-02-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Violetta,

On 2/15/19 05:37, Violeta Georgieva wrote:
> На пт, 15.02.2019 г. в 10:24 ч. Mark Thomas 
> написа:
>> 
>> 
>> 
>> On 15/02/2019 07:02, Violeta Georgieva wrote:
>>> На вт, 12.02.2019 г. в 7:30 ч. Violeta Georgieva
>>>  написа:
 
 
 
 На вт, 12.02.2019 г. в 1:11 ч. Konstantin Kolinko <
> knst.koli...@gmail.com>
>>> написа:
> 
> пн, 11 февр. 2019 г. в 18:33, Violeta Georgieva
> > :
>>> 
>>> I did what I planned for today. I think it is OK to
>>> go.
>> 
>> Thanks I'll tag it in the next hours
> 
> There is a regression in catalina.sh script. It does not
> create a correct PID file. This is discussed in 
> https://bz.apache.org/bugzilla/show_bug.cgi?id=63041
 
 Ok as I didn't upload any binaries, I'll just drop the tag
 and retag
>>> again when there is a fix for this issue.
>>> 
>>> 
>>> Are we OK with the current changes so that I can restart the
>>> release process?
>> 
>> Essentially the changes have been reverted so yes, I think we are
>> good to go.

I think there might be one more item to back-port from Konstantin, who
has not yet committed his changes to trunk/8.5. Given the time between
Tomcat 7 releases, can you maybe delay another 24-48 hours to see if
he wants to get his patch into Tomcat 7?

- -chris
-BEGIN PGP SIGNATURE-
Comment: Using GnuPG with Thunderbird - https://www.enigmail.net/

iQIzBAEBCAAdFiEEMmKgYcQvxMe7tcJcHPApP6U8pFgFAlxnITwACgkQHPApP6U8
pFjcdQ//W9Kg29c2ND0Z4TQhdiJyf3xF9B3dpvRX43m61HlO9MCCdxJlYlq3v3ud
4xWMpdPQboyJhRj8y2M+RKXdO+0l0igy2e9e1huCMmkLI8uuHuqLBZ0pWGqisGuL
I/tQwG67BKDTUK1qoBbBe0QEl3fertrC3dZm4hQkity6KsNrYDuf7hoMRv9XQVtm
6957g2R2KfRzNnpySkkjuJgyqGkTsc9Be0yxPFKsr2YhlN+e1v6JxCApq9S+NBrT
TLrcZags0TabYL40ewxV4K/nw22w+Cea6i4/z8GF2rnmoMJ8R0h2ksBSJ8RLe6y9
IKLyn2aBbGaMt8fRe4eJNVi34XiVRn8ecWLhkEf9uFW5VsqeDxpveC3W/Rgtl0Sc
FSlwjTGDq96KiUIgCyWf+g0emLfv5azBjE2VTY7QV9PlIcRiBl9VUBv2KNs6jMoK
o5xO0nTKrEcrCBHYnbNCxFbDWY+An70GPEPlp2xIuTatlOP62dS6dlwGlikWfnTd
DNYLGYnJhLc94ULWXfdY1MvQnxrxDcGmNBoYpJF6G3+g9xYE8Z61RVYYJMcjSh+d
7H9qbRUaH8If++7PHx8fVJ8ONZKHkzQmkPk+Y6jk0NlMi1pjlrb4tc6/0WaU2Y9J
d4A/Wz3k3o6vb3miQCToq/xaz1+87VAXB3SRdMx/YEOBLtAHLjg=
=+m/2
-END PGP SIGNATURE-

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-02-15 Thread Violeta Georgieva
На пт, 15.02.2019 г. в 10:24 ч. Mark Thomas  написа:
>
>
>
> On 15/02/2019 07:02, Violeta Georgieva wrote:
> > На вт, 12.02.2019 г. в 7:30 ч. Violeta Georgieva 
> > написа:
> >>
> >>
> >>
> >> На вт, 12.02.2019 г. в 1:11 ч. Konstantin Kolinko <
knst.koli...@gmail.com>
> > написа:
> >>>
> >>> пн, 11 февр. 2019 г. в 18:33, Violeta Georgieva :
> >
> > I did what I planned for today. I think it is OK to go.
> 
>  Thanks I'll tag it in the next hours
> >>>
> >>> There is a regression in catalina.sh script. It does not create a
> >>> correct PID file.
> >>> This is discussed in
> >>> https://bz.apache.org/bugzilla/show_bug.cgi?id=63041
> >>
> >> Ok as I didn't upload any binaries, I'll just drop the tag and retag
> > again when there is a fix for this issue.
> >
> >
> > Are we OK with the current changes so that I can restart the release
> > process?
>
> Essentially the changes have been reverted so yes, I think we are good
> to go.

Thanks


Re: Tag Tomcat 7

2019-02-15 Thread Mark Thomas




On 15/02/2019 07:02, Violeta Georgieva wrote:

На вт, 12.02.2019 г. в 7:30 ч. Violeta Georgieva 
написа:




На вт, 12.02.2019 г. в 1:11 ч. Konstantin Kolinko 

написа:


пн, 11 февр. 2019 г. в 18:33, Violeta Georgieva :


I did what I planned for today. I think it is OK to go.


Thanks I'll tag it in the next hours


There is a regression in catalina.sh script. It does not create a
correct PID file.
This is discussed in
https://bz.apache.org/bugzilla/show_bug.cgi?id=63041


Ok as I didn't upload any binaries, I'll just drop the tag and retag

again when there is a fix for this issue.


Are we OK with the current changes so that I can restart the release
process?


Essentially the changes have been reverted so yes, I think we are good 
to go.


Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-02-14 Thread Violeta Georgieva
На вт, 12.02.2019 г. в 7:30 ч. Violeta Georgieva 
написа:
>
>
>
> На вт, 12.02.2019 г. в 1:11 ч. Konstantin Kolinko 
написа:
> >
> > пн, 11 февр. 2019 г. в 18:33, Violeta Georgieva :
> > > >
> > > > I did what I planned for today. I think it is OK to go.
> > >
> > > Thanks I'll tag it in the next hours
> >
> > There is a regression in catalina.sh script. It does not create a
> > correct PID file.
> > This is discussed in
> > https://bz.apache.org/bugzilla/show_bug.cgi?id=63041
>
> Ok as I didn't upload any binaries, I'll just drop the tag and retag
again when there is a fix for this issue.


Are we OK with the current changes so that I can restart the release
process?

Thanks,
Violeta


Re: Tag Tomcat 7

2019-02-11 Thread Violeta Georgieva
На вт, 12.02.2019 г. в 1:11 ч. Konstantin Kolinko 
написа:
>
> пн, 11 февр. 2019 г. в 18:33, Violeta Georgieva :
> > >
> > > I did what I planned for today. I think it is OK to go.
> >
> > Thanks I'll tag it in the next hours
>
> There is a regression in catalina.sh script. It does not create a
> correct PID file.
> This is discussed in
> https://bz.apache.org/bugzilla/show_bug.cgi?id=63041

Ok as I didn't upload any binaries, I'll just drop the tag and retag again
when there is a fix for this issue.

Violeta


Re: Tag Tomcat 7

2019-02-11 Thread Konstantin Kolinko
пн, 11 февр. 2019 г. в 18:33, Violeta Georgieva :
> >
> > I did what I planned for today. I think it is OK to go.
>
> Thanks I'll tag it in the next hours

There is a regression in catalina.sh script. It does not create a
correct PID file.
This is discussed in
https://bz.apache.org/bugzilla/show_bug.cgi?id=63041

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-02-11 Thread Violeta Georgieva
Hi,

На пн, 11.02.2019 г. в 16:45 ч. Konstantin Kolinko 
написа:
>
> пт, 8 февр. 2019 г. в 15:59, Violeta Georgieva :
> >
> > Hi,
> >
> > I'm planning to tag Tomcat 7 later today or tomorrow.
> > If you want to include something please reply here.
>
> I did what I planned for today. I think it is OK to go.

Thanks I'll tag it in the next hours

Violeta


Re: Tag Tomcat 7

2019-02-11 Thread Konstantin Kolinko
пт, 8 февр. 2019 г. в 15:59, Violeta Georgieva :
>
> Hi,
>
> I'm planning to tag Tomcat 7 later today or tomorrow.
> If you want to include something please reply here.

I did what I planned for today. I think it is OK to go.

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7/8.0

2018-06-29 Thread Violeta Georgieva
Hi Konstantin,

2018-06-29 13:48 GMT+03:00 Konstantin Kolinko :
>
> 2018-06-28 23:54 GMT+03:00 Konstantin Kolinko :
> > 2018-06-28 23:11 GMT+03:00 Violeta Georgieva :
> >> Hi,
> >>
> >> 2018-06-26 21:16 GMT+03:00 Violeta Georgieva :
> >>>
> >>> Hi,
> >>>
> >>> I'm planning to tag Tomcat 7/8.0 tomorrow.
> >>> If you want to include something please reply here.
> >>> Please note that this will be the last Tomcat 8.0 release.
> >>
> >> I'm currently not able to build Tomcat 7/8.0 when there are no
dependencies.
> >>
> >> BUILD FAILED
> >> C:\TOMCAT_7_0_89\build.xml:2761: The following error occurred while
> >> executing th
> >> is line:
> >> C:\TOMCAT_7_0_89\build.xml:3088: Failed to download
> >> [C:/temp/libs/tomcat-native-
> >> 1.2.17/tomcat-native.tar.gz]. All download sources are unavailable.
> >>
> >>
> >> Ant installation is 1.9.12.
> >> I am able to download from the browser.
> >>
> >> Do I miss something from the latest changes in the Tomcat's build?
> >
> > See
> > https://bz.apache.org/bugzilla/show_bug.cgi?id=62164
> >
> > It is not possible to download dependencies when your preferred ASF
> > mirror (as auto-selected by closer.lua page) uses HTTP.
> >
> > This is solved by setting the property "base-apache.loc.1" in
> > build.properties to the root address of your preferred mirror.
> >
> > In my case (see error message in comment 6 in that bug) such value is:
> > base-apache.loc.1=http://apache-mirror.rbc.ru/pub/apache
> >
> >
> > It may be that similar setting will be necessary for SourceForce, the
> > property "base-sf.loc".
> >
> > I recently added checksum checks for downloaded files, so downloading
> > over http: should be OK.
>
> One more: the version of Java 6 that I am using is not able to
> download anything over HTTPS from modern sites, due to outdated
> ciphers. I have to download everything using Java 8 as a separate step
> before stating a build.
>
> For Tomcat 7.0 the command is:
> ant -Dno.build.dbcp=true -Dtest.cobertura=true -Dexecute.validate=true
>
download-compile,download-test-compile,download-dist,download-validate,download-cobertura,extras-commons-logging-prepare,extras-webservices-prepare
>
> For Tomcat 8.0 the command is:
> ant -Dtest.cobertura=true -Dexecute.validate=true
> -Dexecute.findbugs=true
>
download-compile,download-test-compile,download-dist,download-validate,download-cobertura,download-findbugs,extras-commons-logging-prepare,extras-webservices-prepare
>
> For Tomcat 8.5:
> ant -Dtest.cobertura=true -Dexecute.validate=true
> -Dexecute.findbugs=true
>
download-compile,download-test-compile,download-dist,download-validate,download-cobertura,download-findbugs,extras-webservices-prepare
>
> For Tomcat 9.0:
> ant -Dtest.cobertura=true -Dexecute.validate=true
> -Dexecute.findbugs=true
>
download-compile,download-test-compile,download-dist,download-validate,download-cobertura,download-findbugs,extras-webservices-prepare,download-bnd


Thanks a lot,
Violeta

>
> Best regards,
> Konstantin Kolinko
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org
>


Re: Tag Tomcat 7/8.0

2018-06-29 Thread Konstantin Kolinko
2018-06-28 23:54 GMT+03:00 Konstantin Kolinko :
> 2018-06-28 23:11 GMT+03:00 Violeta Georgieva :
>> Hi,
>>
>> 2018-06-26 21:16 GMT+03:00 Violeta Georgieva :
>>>
>>> Hi,
>>>
>>> I'm planning to tag Tomcat 7/8.0 tomorrow.
>>> If you want to include something please reply here.
>>> Please note that this will be the last Tomcat 8.0 release.
>>
>> I'm currently not able to build Tomcat 7/8.0 when there are no dependencies.
>>
>> BUILD FAILED
>> C:\TOMCAT_7_0_89\build.xml:2761: The following error occurred while
>> executing th
>> is line:
>> C:\TOMCAT_7_0_89\build.xml:3088: Failed to download
>> [C:/temp/libs/tomcat-native-
>> 1.2.17/tomcat-native.tar.gz]. All download sources are unavailable.
>>
>>
>> Ant installation is 1.9.12.
>> I am able to download from the browser.
>>
>> Do I miss something from the latest changes in the Tomcat's build?
>
> See
> https://bz.apache.org/bugzilla/show_bug.cgi?id=62164
>
> It is not possible to download dependencies when your preferred ASF
> mirror (as auto-selected by closer.lua page) uses HTTP.
>
> This is solved by setting the property "base-apache.loc.1" in
> build.properties to the root address of your preferred mirror.
>
> In my case (see error message in comment 6 in that bug) such value is:
> base-apache.loc.1=http://apache-mirror.rbc.ru/pub/apache
>
>
> It may be that similar setting will be necessary for SourceForce, the
> property "base-sf.loc".
>
> I recently added checksum checks for downloaded files, so downloading
> over http: should be OK.

One more: the version of Java 6 that I am using is not able to
download anything over HTTPS from modern sites, due to outdated
ciphers. I have to download everything using Java 8 as a separate step
before stating a build.

For Tomcat 7.0 the command is:
ant -Dno.build.dbcp=true -Dtest.cobertura=true -Dexecute.validate=true
download-compile,download-test-compile,download-dist,download-validate,download-cobertura,extras-commons-logging-prepare,extras-webservices-prepare

For Tomcat 8.0 the command is:
ant -Dtest.cobertura=true -Dexecute.validate=true
-Dexecute.findbugs=true
download-compile,download-test-compile,download-dist,download-validate,download-cobertura,download-findbugs,extras-commons-logging-prepare,extras-webservices-prepare

For Tomcat 8.5:
ant -Dtest.cobertura=true -Dexecute.validate=true
-Dexecute.findbugs=true
download-compile,download-test-compile,download-dist,download-validate,download-cobertura,download-findbugs,extras-webservices-prepare

For Tomcat 9.0:
ant -Dtest.cobertura=true -Dexecute.validate=true
-Dexecute.findbugs=true
download-compile,download-test-compile,download-dist,download-validate,download-cobertura,download-findbugs,extras-webservices-prepare,download-bnd


Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7/8.0

2018-06-28 Thread Konstantin Kolinko
2018-06-28 23:11 GMT+03:00 Violeta Georgieva :
> Hi,
>
> 2018-06-26 21:16 GMT+03:00 Violeta Georgieva :
>>
>> Hi,
>>
>> I'm planning to tag Tomcat 7/8.0 tomorrow.
>> If you want to include something please reply here.
>> Please note that this will be the last Tomcat 8.0 release.
>
> I'm currently not able to build Tomcat 7/8.0 when there are no dependencies.
>
> BUILD FAILED
> C:\TOMCAT_7_0_89\build.xml:2761: The following error occurred while
> executing th
> is line:
> C:\TOMCAT_7_0_89\build.xml:3088: Failed to download
> [C:/temp/libs/tomcat-native-
> 1.2.17/tomcat-native.tar.gz]. All download sources are unavailable.
>
>
> Ant installation is 1.9.12.
> I am able to download from the browser.
>
> Do I miss something from the latest changes in the Tomcat's build?

See
https://bz.apache.org/bugzilla/show_bug.cgi?id=62164

It is not possible to download dependencies when your preferred ASF
mirror (as auto-selected by closer.lua page) uses HTTP.

This is solved by setting the property "base-apache.loc.1" in
build.properties to the root address of your preferred mirror.

In my case (see error message in comment 6 in that bug) such value is:
base-apache.loc.1=http://apache-mirror.rbc.ru/pub/apache


It may be that similar setting will be necessary for SourceForce, the
property "base-sf.loc".

I recently added checksum checks for downloaded files, so downloading
over http: should be OK.

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7/8.0

2018-06-28 Thread Violeta Georgieva
Hi,

2018-06-26 21:16 GMT+03:00 Violeta Georgieva :
>
> Hi,
>
> I'm planning to tag Tomcat 7/8.0 tomorrow.
> If you want to include something please reply here.
> Please note that this will be the last Tomcat 8.0 release.

I'm currently not able to build Tomcat 7/8.0 when there are no dependencies.

BUILD FAILED
C:\TOMCAT_7_0_89\build.xml:2761: The following error occurred while
executing th
is line:
C:\TOMCAT_7_0_89\build.xml:3088: Failed to download
[C:/temp/libs/tomcat-native-
1.2.17/tomcat-native.tar.gz]. All download sources are unavailable.


Ant installation is 1.9.12.
I am able to download from the browser.

Do I miss something from the latest changes in the Tomcat's build?

Regards,
Violeta