You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by Leonardo Uribe <lu...@apache.org> on 2014/09/16 20:53:35 UTC

[VOTE] Release of MyFaces Core 2.2.5

Hi,

I was running the needed tasks to get the 2.2.5 release of Apache
MyFaces core out.

The artifacts passed the TCK test of Feb 2013 (jsftck-2.2_26-Feb-2013.zip).

Please note that this vote concerns all of the following parts:
 1. Maven artifact group "org.apache.myfaces.shared" v4.2.4  [1]
 2. Maven artifact group "org.apache.myfaces.core" v2.2.5  [1]

The artifacts were deployed on nexus repo [1] and to my private
Apache account [3] for binary and source packages.

The release notes could be found at [4].

Also the clirr test does not show binary incompatibilities with myfaces-api.

Please take a look at the "2.2.5" artifacts and vote!

Please note: This vote is "majority approval" with a minimum of three
+1 votes (see [3]).

------------------------------------------------
[ ] +1 for community members who have reviewed the bits
[ ] +0
[ ] -1 for fatal flaws that should cause these bits not to be released,
 and why..............
------------------------------------------------

Thanks,
Leonardo Uribe

[1] https://repository.apache.org/content/repositories/orgapachemyfaces-1031/org/apache/myfaces/
[2] http://www.apache.org/foundation/voting.html#ReleaseVotes
[3] http://people.apache.org/~lu4242/myfaces225binsrc
[4] https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10600&version=12327190

Re: [VOTE] Release of MyFaces Core 2.2.5

Posted by Grant Smith <gr...@marathonpm.com>.
+1

On Sat, Sep 20, 2014 at 1:41 PM, Mike Kienenberger <mk...@gmail.com>
wrote:

> - signatures and checksums match
> - source builds
> - apache rat passes
>
> +1
>
>
>
>
>
>
> Below are the linux commands I used to verify the release of the
> myfaces-core-assembly-2.2.5-src files:
>
> =============================================
>
> # check checksums
> find . -name '*.md5' -exec cat {} \; -printf '  %f\n' | sed
> 's|\.md5$||' | md5sum -c
> find . -name '*.sha1' -exec cat {} \; -printf '  %f\n' | sed
> 's|\.sha1$||' | sha1sum -c
>
> # check signatures
> wget http://www.apache.org/dist/myfaces/KEYS
> gpg --import KEYS
> find . -name '*.asc' -exec gpg --verify {} \;
>
> # verify tar.gz and zip sources are identical
> mkdir src
> cd src
> tar xvf ../myfaces-core-assembly-2.2.5-src.tar.gz
> mv myfaces-core-2.2.5-src/ myfaces-core-2.2.5-src-tar-gz
> unzip ../myfaces-core-assembly-2.2.5-src.zip
> # should be no output
> diff -rq myfaces-core-2.2.5-src*
> # should be "are identical" output
> diff -srq myfaces-core-2.2.5-src*
>
> # build source
> cd myfaces-core-2.2.5-src/src
> find \( -name '*.jar' -o -name '*.zip' \) -exec unzip -n {} \;
> cd myfaces-core-module-2.2.5/
> mvn install
>
> mvn apache-rat:check
> # To check for all errors, if more than one project is affected
> #   mvn apache-rat:check -Drat.numUnapprovedLicenses=9999
> # To see details of rat failure, including location of rat report
> #   mvn -e -X apache-rat:check
>
>
> On Tue, Sep 16, 2014 at 2:53 PM, Leonardo Uribe <lu...@apache.org> wrote:
> > Hi,
> >
> > I was running the needed tasks to get the 2.2.5 release of Apache
> > MyFaces core out.
> >
> > The artifacts passed the TCK test of Feb 2013
> (jsftck-2.2_26-Feb-2013.zip).
> >
> > Please note that this vote concerns all of the following parts:
> >  1. Maven artifact group "org.apache.myfaces.shared" v4.2.4  [1]
> >  2. Maven artifact group "org.apache.myfaces.core" v2.2.5  [1]
> >
> > The artifacts were deployed on nexus repo [1] and to my private
> > Apache account [3] for binary and source packages.
> >
> > The release notes could be found at [4].
> >
> > Also the clirr test does not show binary incompatibilities with
> myfaces-api.
> >
> > Please take a look at the "2.2.5" artifacts and vote!
> >
> > Please note: This vote is "majority approval" with a minimum of three
> > +1 votes (see [3]).
> >
> > ------------------------------------------------
> > [ ] +1 for community members who have reviewed the bits
> > [ ] +0
> > [ ] -1 for fatal flaws that should cause these bits not to be released,
> >  and why..............
> > ------------------------------------------------
> >
> > Thanks,
> > Leonardo Uribe
> >
> > [1]
> https://repository.apache.org/content/repositories/orgapachemyfaces-1031/org/apache/myfaces/
> > [2] http://www.apache.org/foundation/voting.html#ReleaseVotes
> > [3] http://people.apache.org/~lu4242/myfaces225binsrc
> > [4]
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10600&version=12327190
>



-- 
Grant Smith - V.P. Information Technology
Marathon Computer Systems, LLC.

Re: [VOTE] Release of MyFaces Core 2.2.5

Posted by Mike Kienenberger <mk...@gmail.com>.
- signatures and checksums match
- source builds
- apache rat passes

+1






Below are the linux commands I used to verify the release of the
myfaces-core-assembly-2.2.5-src files:

=============================================

# check checksums
find . -name '*.md5' -exec cat {} \; -printf '  %f\n' | sed
's|\.md5$||' | md5sum -c
find . -name '*.sha1' -exec cat {} \; -printf '  %f\n' | sed
's|\.sha1$||' | sha1sum -c

# check signatures
wget http://www.apache.org/dist/myfaces/KEYS
gpg --import KEYS
find . -name '*.asc' -exec gpg --verify {} \;

# verify tar.gz and zip sources are identical
mkdir src
cd src
tar xvf ../myfaces-core-assembly-2.2.5-src.tar.gz
mv myfaces-core-2.2.5-src/ myfaces-core-2.2.5-src-tar-gz
unzip ../myfaces-core-assembly-2.2.5-src.zip
# should be no output
diff -rq myfaces-core-2.2.5-src*
# should be "are identical" output
diff -srq myfaces-core-2.2.5-src*

# build source
cd myfaces-core-2.2.5-src/src
find \( -name '*.jar' -o -name '*.zip' \) -exec unzip -n {} \;
cd myfaces-core-module-2.2.5/
mvn install

mvn apache-rat:check
# To check for all errors, if more than one project is affected
#   mvn apache-rat:check -Drat.numUnapprovedLicenses=9999
# To see details of rat failure, including location of rat report
#   mvn -e -X apache-rat:check


On Tue, Sep 16, 2014 at 2:53 PM, Leonardo Uribe <lu...@apache.org> wrote:
> Hi,
>
> I was running the needed tasks to get the 2.2.5 release of Apache
> MyFaces core out.
>
> The artifacts passed the TCK test of Feb 2013 (jsftck-2.2_26-Feb-2013.zip).
>
> Please note that this vote concerns all of the following parts:
>  1. Maven artifact group "org.apache.myfaces.shared" v4.2.4  [1]
>  2. Maven artifact group "org.apache.myfaces.core" v2.2.5  [1]
>
> The artifacts were deployed on nexus repo [1] and to my private
> Apache account [3] for binary and source packages.
>
> The release notes could be found at [4].
>
> Also the clirr test does not show binary incompatibilities with myfaces-api.
>
> Please take a look at the "2.2.5" artifacts and vote!
>
> Please note: This vote is "majority approval" with a minimum of three
> +1 votes (see [3]).
>
> ------------------------------------------------
> [ ] +1 for community members who have reviewed the bits
> [ ] +0
> [ ] -1 for fatal flaws that should cause these bits not to be released,
>  and why..............
> ------------------------------------------------
>
> Thanks,
> Leonardo Uribe
>
> [1] https://repository.apache.org/content/repositories/orgapachemyfaces-1031/org/apache/myfaces/
> [2] http://www.apache.org/foundation/voting.html#ReleaseVotes
> [3] http://people.apache.org/~lu4242/myfaces225binsrc
> [4] https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10600&version=12327190

Re: [VOTE] Release of MyFaces Core 2.2.5

Posted by Mark Struberg <st...@yahoo.de>.
+1

LieGrue,
strub




> On Friday, 19 September 2014, 17:46, Bernd Bohmann <be...@atanion.com> wrote:
> > Here is my
> 
> +1
> 
> Regards
> 
> Bernd
> 
> 
> On Thu, Sep 18, 2014 at 6:09 PM, Martin Marinschek
> <mm...@apache.org> wrote:
>>  +1
>> 
>>  Regards,
>> 
>>  Martin
>> 
>>  Am 18.09.2014 13:10 schrieb "Werner Punz" 
> <we...@gmail.com>:
>> 
>>>  +1
>>> 
>>>  Am 16.09.14 20:53, schrieb Leonardo Uribe:
>>>> 
>>>>  +1
>>>> 
>>>>  2014-09-16 13:53 GMT-05:00 Leonardo Uribe 
> <lu...@apache.org>:
>>>>> 
>>>>>  Hi,
>>>>> 
>>>>>  I was running the needed tasks to get the 2.2.5 release of 
> Apache
>>>>>  MyFaces core out.
>>>>> 
>>>>>  The artifacts passed the TCK test of Feb 2013
>>>>>  (jsftck-2.2_26-Feb-2013.zip).
>>>>> 
>>>>>  Please note that this vote concerns all of the following parts:
>>>>>    1. Maven artifact group "org.apache.myfaces.shared" 
> v4.2.4  [1]
>>>>>    2. Maven artifact group "org.apache.myfaces.core" 
> v2.2.5  [1]
>>>>> 
>>>>>  The artifacts were deployed on nexus repo [1] and to my private
>>>>>  Apache account [3] for binary and source packages.
>>>>> 
>>>>>  The release notes could be found at [4].
>>>>> 
>>>>>  Also the clirr test does not show binary incompatibilities with
>>>>>  myfaces-api.
>>>>> 
>>>>>  Please take a look at the "2.2.5" artifacts and vote!
>>>>> 
>>>>>  Please note: This vote is "majority approval" with a 
> minimum of three
>>>>>  +1 votes (see [3]).
>>>>> 
>>>>>  ------------------------------------------------
>>>>>  [ ] +1 for community members who have reviewed the bits
>>>>>  [ ] +0
>>>>>  [ ] -1 for fatal flaws that should cause these bits not to be 
> released,
>>>>>    and why..............
>>>>>  ------------------------------------------------
>>>>> 
>>>>>  Thanks,
>>>>>  Leonardo Uribe
>>>>> 
>>>>>  [1]
>>>>> 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1031/org/apache/myfaces/
>>>>>  [2] http://www.apache.org/foundation/voting.html#ReleaseVotes
>>>>>  [3] http://people.apache.org/~lu4242/myfaces225binsrc
>>>>>  [4]
>>>>> 
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10600&version=12327190
>>>> 
>>>> 
>>> 
>>> 
>> 
> 

Re: [VOTE] Release of MyFaces Core 2.2.5

Posted by Bernd Bohmann <be...@atanion.com>.
Here is my

+1

Regards

Bernd

On Thu, Sep 18, 2014 at 6:09 PM, Martin Marinschek
<mm...@apache.org> wrote:
> +1
>
> Regards,
>
> Martin
>
> Am 18.09.2014 13:10 schrieb "Werner Punz" <we...@gmail.com>:
>
>> +1
>>
>> Am 16.09.14 20:53, schrieb Leonardo Uribe:
>>>
>>> +1
>>>
>>> 2014-09-16 13:53 GMT-05:00 Leonardo Uribe <lu...@apache.org>:
>>>>
>>>> Hi,
>>>>
>>>> I was running the needed tasks to get the 2.2.5 release of Apache
>>>> MyFaces core out.
>>>>
>>>> The artifacts passed the TCK test of Feb 2013
>>>> (jsftck-2.2_26-Feb-2013.zip).
>>>>
>>>> Please note that this vote concerns all of the following parts:
>>>>   1. Maven artifact group "org.apache.myfaces.shared" v4.2.4  [1]
>>>>   2. Maven artifact group "org.apache.myfaces.core" v2.2.5  [1]
>>>>
>>>> The artifacts were deployed on nexus repo [1] and to my private
>>>> Apache account [3] for binary and source packages.
>>>>
>>>> The release notes could be found at [4].
>>>>
>>>> Also the clirr test does not show binary incompatibilities with
>>>> myfaces-api.
>>>>
>>>> Please take a look at the "2.2.5" artifacts and vote!
>>>>
>>>> Please note: This vote is "majority approval" with a minimum of three
>>>> +1 votes (see [3]).
>>>>
>>>> ------------------------------------------------
>>>> [ ] +1 for community members who have reviewed the bits
>>>> [ ] +0
>>>> [ ] -1 for fatal flaws that should cause these bits not to be released,
>>>>   and why..............
>>>> ------------------------------------------------
>>>>
>>>> Thanks,
>>>> Leonardo Uribe
>>>>
>>>> [1]
>>>> https://repository.apache.org/content/repositories/orgapachemyfaces-1031/org/apache/myfaces/
>>>> [2] http://www.apache.org/foundation/voting.html#ReleaseVotes
>>>> [3] http://people.apache.org/~lu4242/myfaces225binsrc
>>>> [4]
>>>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10600&version=12327190
>>>
>>>
>>
>>
>

Re: [VOTE] Release of MyFaces Core 2.2.5

Posted by Martin Marinschek <mm...@apache.org>.
+1

Regards,

Martin
Am 18.09.2014 13:10 schrieb "Werner Punz" <we...@gmail.com>:

> +1
>
> Am 16.09.14 20:53, schrieb Leonardo Uribe:
>
>> +1
>>
>> 2014-09-16 13:53 GMT-05:00 Leonardo Uribe <lu...@apache.org>:
>>
>>> Hi,
>>>
>>> I was running the needed tasks to get the 2.2.5 release of Apache
>>> MyFaces core out.
>>>
>>> The artifacts passed the TCK test of Feb 2013
>>> (jsftck-2.2_26-Feb-2013.zip).
>>>
>>> Please note that this vote concerns all of the following parts:
>>>   1. Maven artifact group "org.apache.myfaces.shared" v4.2.4  [1]
>>>   2. Maven artifact group "org.apache.myfaces.core" v2.2.5  [1]
>>>
>>> The artifacts were deployed on nexus repo [1] and to my private
>>> Apache account [3] for binary and source packages.
>>>
>>> The release notes could be found at [4].
>>>
>>> Also the clirr test does not show binary incompatibilities with
>>> myfaces-api.
>>>
>>> Please take a look at the "2.2.5" artifacts and vote!
>>>
>>> Please note: This vote is "majority approval" with a minimum of three
>>> +1 votes (see [3]).
>>>
>>> ------------------------------------------------
>>> [ ] +1 for community members who have reviewed the bits
>>> [ ] +0
>>> [ ] -1 for fatal flaws that should cause these bits not to be released,
>>>   and why..............
>>> ------------------------------------------------
>>>
>>> Thanks,
>>> Leonardo Uribe
>>>
>>> [1] https://repository.apache.org/content/repositories/
>>> orgapachemyfaces-1031/org/apache/myfaces/
>>> [2] http://www.apache.org/foundation/voting.html#ReleaseVotes
>>> [3] http://people.apache.org/~lu4242/myfaces225binsrc
>>> [4] https://issues.apache.org/jira/secure/ReleaseNote.jspa?
>>> projectId=10600&version=12327190
>>>
>>
>>
>
>

Re: [VOTE] Release of MyFaces Core 2.2.5

Posted by Werner Punz <we...@gmail.com>.
+1

Am 16.09.14 20:53, schrieb Leonardo Uribe:
> +1
>
> 2014-09-16 13:53 GMT-05:00 Leonardo Uribe <lu...@apache.org>:
>> Hi,
>>
>> I was running the needed tasks to get the 2.2.5 release of Apache
>> MyFaces core out.
>>
>> The artifacts passed the TCK test of Feb 2013 (jsftck-2.2_26-Feb-2013.zip).
>>
>> Please note that this vote concerns all of the following parts:
>>   1. Maven artifact group "org.apache.myfaces.shared" v4.2.4  [1]
>>   2. Maven artifact group "org.apache.myfaces.core" v2.2.5  [1]
>>
>> The artifacts were deployed on nexus repo [1] and to my private
>> Apache account [3] for binary and source packages.
>>
>> The release notes could be found at [4].
>>
>> Also the clirr test does not show binary incompatibilities with myfaces-api.
>>
>> Please take a look at the "2.2.5" artifacts and vote!
>>
>> Please note: This vote is "majority approval" with a minimum of three
>> +1 votes (see [3]).
>>
>> ------------------------------------------------
>> [ ] +1 for community members who have reviewed the bits
>> [ ] +0
>> [ ] -1 for fatal flaws that should cause these bits not to be released,
>>   and why..............
>> ------------------------------------------------
>>
>> Thanks,
>> Leonardo Uribe
>>
>> [1] https://repository.apache.org/content/repositories/orgapachemyfaces-1031/org/apache/myfaces/
>> [2] http://www.apache.org/foundation/voting.html#ReleaseVotes
>> [3] http://people.apache.org/~lu4242/myfaces225binsrc
>> [4] https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10600&version=12327190
>



Re: [VOTE] Release of MyFaces Core 2.2.5

Posted by Leonardo Uribe <lu...@gmail.com>.
+1

2014-09-16 13:53 GMT-05:00 Leonardo Uribe <lu...@apache.org>:
> Hi,
>
> I was running the needed tasks to get the 2.2.5 release of Apache
> MyFaces core out.
>
> The artifacts passed the TCK test of Feb 2013 (jsftck-2.2_26-Feb-2013.zip).
>
> Please note that this vote concerns all of the following parts:
>  1. Maven artifact group "org.apache.myfaces.shared" v4.2.4  [1]
>  2. Maven artifact group "org.apache.myfaces.core" v2.2.5  [1]
>
> The artifacts were deployed on nexus repo [1] and to my private
> Apache account [3] for binary and source packages.
>
> The release notes could be found at [4].
>
> Also the clirr test does not show binary incompatibilities with myfaces-api.
>
> Please take a look at the "2.2.5" artifacts and vote!
>
> Please note: This vote is "majority approval" with a minimum of three
> +1 votes (see [3]).
>
> ------------------------------------------------
> [ ] +1 for community members who have reviewed the bits
> [ ] +0
> [ ] -1 for fatal flaws that should cause these bits not to be released,
>  and why..............
> ------------------------------------------------
>
> Thanks,
> Leonardo Uribe
>
> [1] https://repository.apache.org/content/repositories/orgapachemyfaces-1031/org/apache/myfaces/
> [2] http://www.apache.org/foundation/voting.html#ReleaseVotes
> [3] http://people.apache.org/~lu4242/myfaces225binsrc
> [4] https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10600&version=12327190