You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2016/01/01 19:59:49 UTC

[math] Updated released howto after change from people to home.apache.org.

Repository: commons-math
Updated Branches:
  refs/heads/MATH_3_X 77f0f2025 -> 445f091bc


Updated released howto after change from people to home.apache.org.

Shell access is not possible anymore on home.apache.org, so the site
uplaoding must be done using sftp only.

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/445f091b
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/445f091b
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/445f091b

Branch: refs/heads/MATH_3_X
Commit: 445f091bcd93d76559279032865b26ffb46aa749
Parents: 77f0f20
Author: Luc Maisonobe <lu...@apache.org>
Authored: Fri Jan 1 19:59:33 2016 +0100
Committer: Luc Maisonobe <lu...@apache.org>
Committed: Fri Jan 1 19:59:33 2016 +0100

----------------------------------------------------------------------
 doc/release/release.howto.txt | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/445f091b/doc/release/release.howto.txt
----------------------------------------------------------------------
diff --git a/doc/release/release.howto.txt b/doc/release/release.howto.txt
index b620e55..a667aa2 100644
--- a/doc/release/release.howto.txt
+++ b/doc/release/release.howto.txt
@@ -313,18 +313,19 @@ edit README.html with released version number
 (13)
 As the web site staging area is shared among all commons components and therefore
 can be published before vote ends, it is not recommended to use the standard staging
-area for the release candidate. So you will just archive the site and transfer it on
-your apache personal area for review:
+area for the release candidate. So you will just archive the transfer the site it on
+your apache personal area for review. Here is how to do this using lftp to initiate
+the sftp transfer (lftp supports a mirror command for recursive transfers, don't
+forget the -R flag for uploading instead of downloading the site):
 
   $ mvn site
   $ cd target
-  $ tar czf site.tar.gz site
-  $ scp site.tar.gz __Your_apache_login__@people.apache.org:~/
-  $ ssh __Your_apache_login__@people.apache.org
-     you@minotaur:~$ tar xzf site.tar.gz
-     you@minotaur:~$ mv site public_html/commons-math-3.4-RC1-site
-     you@minotaur:~$ rm site.tar.gz
-     you@minotaur:~$ logout
+  $ mv site commons-math-3.4-RC1-site
+  $ lftp sftp://__Your_apache_login__@home.apache.org/
+     lftp you@home.apache.org:~> cd public_html
+     lftp you@home.apache.org:~/public_html> mirror -R commons-math-3.4-RC1-site
+     lftp you@home.apache.org:~/public_html> bye
+
 
 (14)
 Call to vote by sending a message to the "dev" ML with subject
@@ -343,7 +344,7 @@ Commit ID the tag points at:
   cf4a9d70c9ac24dd7196995390171150e4e56451
 
 Site:
-  <http://people.apache.org/~__Your_apache_login__/commons-math-3.4-RC1-site>
+  <http://home.apache.org/~__Your_apache_login__/commons-math-3.4-RC1-site>
 
 Distribution files:
   https://dist.apache.org/repos/dist/dev/commons/math/


Re: [math] Updated released howto after change from people to home.apache.org.

Posted by Luc Maisonobe <lu...@spaceroots.org>.
Le 01/01/2016 21:28, Phil Steitz a écrit :
> On 1/1/16 11:59 AM, luc@apache.org wrote:
>> Repository: commons-math
>> Updated Branches:
>>   refs/heads/MATH_3_X 77f0f2025 -> 445f091bc
>>
>>
>> Updated released howto after change from people to home.apache.org.
>>
>> Shell access is not possible anymore on home.apache.org, so the site
>> uplaoding must be done using sftp only.
> 
> Given the painfulness of that and the fact that the site is not what
> we are releasing, I think we should drop the site staging from the
> release process.  

I would be happy to drop it too!
Uploading the site is also painfully slow. I think it took about
two hours, for the 7081 files in the site.

best regards,
Luc

> 
> Phil
>>
>> Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
>> Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/445f091b
>> Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/445f091b
>> Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/445f091b
>>
>> Branch: refs/heads/MATH_3_X
>> Commit: 445f091bcd93d76559279032865b26ffb46aa749
>> Parents: 77f0f20
>> Author: Luc Maisonobe <lu...@apache.org>
>> Authored: Fri Jan 1 19:59:33 2016 +0100
>> Committer: Luc Maisonobe <lu...@apache.org>
>> Committed: Fri Jan 1 19:59:33 2016 +0100
>>
>> ----------------------------------------------------------------------
>>  doc/release/release.howto.txt | 21 +++++++++++----------
>>  1 file changed, 11 insertions(+), 10 deletions(-)
>> ----------------------------------------------------------------------
>>
>>
>> http://git-wip-us.apache.org/repos/asf/commons-math/blob/445f091b/doc/release/release.howto.txt
>> ----------------------------------------------------------------------
>> diff --git a/doc/release/release.howto.txt b/doc/release/release.howto.txt
>> index b620e55..a667aa2 100644
>> --- a/doc/release/release.howto.txt
>> +++ b/doc/release/release.howto.txt
>> @@ -313,18 +313,19 @@ edit README.html with released version number
>>  (13)
>>  As the web site staging area is shared among all commons components and therefore
>>  can be published before vote ends, it is not recommended to use the standard staging
>> -area for the release candidate. So you will just archive the site and transfer it on
>> -your apache personal area for review:
>> +area for the release candidate. So you will just archive the transfer the site it on
>> +your apache personal area for review. Here is how to do this using lftp to initiate
>> +the sftp transfer (lftp supports a mirror command for recursive transfers, don't
>> +forget the -R flag for uploading instead of downloading the site):
>>  
>>    $ mvn site
>>    $ cd target
>> -  $ tar czf site.tar.gz site
>> -  $ scp site.tar.gz __Your_apache_login__@people.apache.org:~/
>> -  $ ssh __Your_apache_login__@people.apache.org
>> -     you@minotaur:~$ tar xzf site.tar.gz
>> -     you@minotaur:~$ mv site public_html/commons-math-3.4-RC1-site
>> -     you@minotaur:~$ rm site.tar.gz
>> -     you@minotaur:~$ logout
>> +  $ mv site commons-math-3.4-RC1-site
>> +  $ lftp sftp://__Your_apache_login__@home.apache.org/
>> +     lftp you@home.apache.org:~> cd public_html
>> +     lftp you@home.apache.org:~/public_html> mirror -R commons-math-3.4-RC1-site
>> +     lftp you@home.apache.org:~/public_html> bye
>> +
>>  
>>  (14)
>>  Call to vote by sending a message to the "dev" ML with subject
>> @@ -343,7 +344,7 @@ Commit ID the tag points at:
>>    cf4a9d70c9ac24dd7196995390171150e4e56451
>>  
>>  Site:
>> -  <http://people.apache.org/~__Your_apache_login__/commons-math-3.4-RC1-site>
>> +  <http://home.apache.org/~__Your_apache_login__/commons-math-3.4-RC1-site>
>>  
>>  Distribution files:
>>    https://dist.apache.org/repos/dist/dev/commons/math/
>>
>>
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
> For additional commands, e-mail: dev-help@commons.apache.org
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
For additional commands, e-mail: dev-help@commons.apache.org


Re: [math] Updated released howto after change from people to home.apache.org.

Posted by Phil Steitz <ph...@gmail.com>.
On 1/1/16 11:59 AM, luc@apache.org wrote:
> Repository: commons-math
> Updated Branches:
>   refs/heads/MATH_3_X 77f0f2025 -> 445f091bc
>
>
> Updated released howto after change from people to home.apache.org.
>
> Shell access is not possible anymore on home.apache.org, so the site
> uplaoding must be done using sftp only.

Given the painfulness of that and the fact that the site is not what
we are releasing, I think we should drop the site staging from the
release process.  

Phil
>
> Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
> Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/445f091b
> Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/445f091b
> Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/445f091b
>
> Branch: refs/heads/MATH_3_X
> Commit: 445f091bcd93d76559279032865b26ffb46aa749
> Parents: 77f0f20
> Author: Luc Maisonobe <lu...@apache.org>
> Authored: Fri Jan 1 19:59:33 2016 +0100
> Committer: Luc Maisonobe <lu...@apache.org>
> Committed: Fri Jan 1 19:59:33 2016 +0100
>
> ----------------------------------------------------------------------
>  doc/release/release.howto.txt | 21 +++++++++++----------
>  1 file changed, 11 insertions(+), 10 deletions(-)
> ----------------------------------------------------------------------
>
>
> http://git-wip-us.apache.org/repos/asf/commons-math/blob/445f091b/doc/release/release.howto.txt
> ----------------------------------------------------------------------
> diff --git a/doc/release/release.howto.txt b/doc/release/release.howto.txt
> index b620e55..a667aa2 100644
> --- a/doc/release/release.howto.txt
> +++ b/doc/release/release.howto.txt
> @@ -313,18 +313,19 @@ edit README.html with released version number
>  (13)
>  As the web site staging area is shared among all commons components and therefore
>  can be published before vote ends, it is not recommended to use the standard staging
> -area for the release candidate. So you will just archive the site and transfer it on
> -your apache personal area for review:
> +area for the release candidate. So you will just archive the transfer the site it on
> +your apache personal area for review. Here is how to do this using lftp to initiate
> +the sftp transfer (lftp supports a mirror command for recursive transfers, don't
> +forget the -R flag for uploading instead of downloading the site):
>  
>    $ mvn site
>    $ cd target
> -  $ tar czf site.tar.gz site
> -  $ scp site.tar.gz __Your_apache_login__@people.apache.org:~/
> -  $ ssh __Your_apache_login__@people.apache.org
> -     you@minotaur:~$ tar xzf site.tar.gz
> -     you@minotaur:~$ mv site public_html/commons-math-3.4-RC1-site
> -     you@minotaur:~$ rm site.tar.gz
> -     you@minotaur:~$ logout
> +  $ mv site commons-math-3.4-RC1-site
> +  $ lftp sftp://__Your_apache_login__@home.apache.org/
> +     lftp you@home.apache.org:~> cd public_html
> +     lftp you@home.apache.org:~/public_html> mirror -R commons-math-3.4-RC1-site
> +     lftp you@home.apache.org:~/public_html> bye
> +
>  
>  (14)
>  Call to vote by sending a message to the "dev" ML with subject
> @@ -343,7 +344,7 @@ Commit ID the tag points at:
>    cf4a9d70c9ac24dd7196995390171150e4e56451
>  
>  Site:
> -  <http://people.apache.org/~__Your_apache_login__/commons-math-3.4-RC1-site>
> +  <http://home.apache.org/~__Your_apache_login__/commons-math-3.4-RC1-site>
>  
>  Distribution files:
>    https://dist.apache.org/repos/dist/dev/commons/math/
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
For additional commands, e-mail: dev-help@commons.apache.org