Mailing List Archive

Re: svn commit: r1892988 - in /httpd/dev-tools/v2: README common-lib.sh make-candidate.sh update-branch.sh
On 9/6/21 1:35 PM, icing@apache.org wrote:
> Author: icing
> Date: Mon Sep 6 11:35:41 2021
> New Revision: 1892988
>
> URL: http://svn.apache.org/viewvc?rev=1892988&view=rev
> Log:
> * added 'update-branch.sh' to increase the patch level and all depending information after a release
>
>
> Added:
> httpd/dev-tools/v2/update-branch.sh (with props)
> Modified:
> httpd/dev-tools/v2/README
> httpd/dev-tools/v2/common-lib.sh
> httpd/dev-tools/v2/make-candidate.sh
>

> Modified: httpd/dev-tools/v2/common-lib.sh
> URL: http://svn.apache.org/viewvc/httpd/dev-tools/v2/common-lib.sh?rev=1892988&r1=1892987&r2=1892988&view=diff
> ==============================================================================
> --- httpd/dev-tools/v2/common-lib.sh (original)
> +++ httpd/dev-tools/v2/common-lib.sh Mon Sep 6 11:35:41 2021

> +
> +if test -d docs/manual; then
> + # Execute ./build.sh all convmap to ensure that the documentation transformations are up to date.
> + echo "rebuilding manuals"
> + pushd docs/manual >/dev/null
> + #See http://httpd.apache.org/docs-project/docsformat.html for these instructions
> + if test -d build; then
> + svn update

I guess this needs to be

svn update build

as build is a separate checkout.

Regards

RĂ¼diger
Re: svn commit: r1892988 - in /httpd/dev-tools/v2: README common-lib.sh make-candidate.sh update-branch.sh [ In reply to ]
> Am 06.09.2021 um 17:55 schrieb Ruediger Pluem <rpluem@apache.org>:
>
>
>
> On 9/6/21 1:35 PM, icing@apache.org wrote:
>> Author: icing
>> Date: Mon Sep 6 11:35:41 2021
>> New Revision: 1892988
>>
>> URL: http://svn.apache.org/viewvc?rev=1892988&view=rev
>> Log:
>> * added 'update-branch.sh' to increase the patch level and all depending information after a release
>>
>>
>> Added:
>> httpd/dev-tools/v2/update-branch.sh (with props)
>> Modified:
>> httpd/dev-tools/v2/README
>> httpd/dev-tools/v2/common-lib.sh
>> httpd/dev-tools/v2/make-candidate.sh
>>
>
>> Modified: httpd/dev-tools/v2/common-lib.sh
>> URL: http://svn.apache.org/viewvc/httpd/dev-tools/v2/common-lib.sh?rev=1892988&r1=1892987&r2=1892988&view=diff
>> ==============================================================================
>> --- httpd/dev-tools/v2/common-lib.sh (original)
>> +++ httpd/dev-tools/v2/common-lib.sh Mon Sep 6 11:35:41 2021
>
>> +
>> +if test -d docs/manual; then
>> + # Execute ./build.sh all convmap to ensure that the documentation transformations are up to date.
>> + echo "rebuilding manuals"
>> + pushd docs/manual >/dev/null
>> + #See http://httpd.apache.org/docs-project/docsformat.html for these instructions
>> + if test -d build; then
>> + svn update
>
> I guess this needs to be
>
> svn update build
>
> as build is a separate checkout.

Thanks, will fix. These very late scripts are tricky to test without actually doing a release.
>
> Regards
>
> RĂ¼diger