Hi,

thank you for checking and voting for the release. The result is

+1
Henning Nöth
Dennis Kieselhorst
Bernd Bohmann
Mike Kienenberger

so I will proceed with the next steps for the release.

Regards,

Udo

Am 15.08.17 um 21:40 schrieb Mike Kienenberger:
> - signatures and checksums match
> - source builds
> - apache rat passes
> 
> +1
> 
> 
> 
> Below are the linux commands I used to verify the release of the
> tobago-3.0.5 files:
> 
> =============================================
> 
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago/3.0.5/tobago-3.0.5-source-release.zip
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago/3.0.5/tobago-3.0.5-source-release.zip.asc
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago/3.0.5/tobago-3.0.5-source-release.zip.md5
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago/3.0.5/tobago-3.0.5-source-release.zip.sha1
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-assembly/3.0.5/tobago-assembly-3.0.5-dist.tar.gz
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-assembly/3.0.5/tobago-assembly-3.0.5-dist.tar.gz.asc
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-assembly/3.0.5/tobago-assembly-3.0.5-dist.tar.gz.md5
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-assembly/3.0.5/tobago-assembly-3.0.5-dist.tar.gz.sha1
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-assembly/3.0.5/tobago-assembly-3.0.5-dist.zip
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-assembly/3.0.5/tobago-assembly-3.0.5-dist.zip.asc
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-assembly/3.0.5/tobago-assembly-3.0.5-dist.zip.md5
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-assembly/3.0.5/tobago-assembly-3.0.5-dist.zip.sha1
> 
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-example-assembly/3.0.5/tobago-example-assembly-3.0.5-example.tar.gz
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-example-assembly/3.0.5/tobago-example-assembly-3.0.5-example.tar.gz.asc
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-example-assembly/3.0.5/tobago-example-assembly-3.0.5-example.tar.gz.md5
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-example-assembly/3.0.5/tobago-example-assembly-3.0.5-example.tar.gz.sha1
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-example-assembly/3.0.5/tobago-example-assembly-3.0.5-example.zip
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-example-assembly/3.0.5/tobago-example-assembly-3.0.5-example.zip.asc
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-example-assembly/3.0.5/tobago-example-assembly-3.0.5-example.zip.md5
> wget 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1117/org/apache/myfaces/tobago/tobago-example-assembly/3.0.5/tobago-example-assembly-3.0.5-example.zip.sha1
> 
> # 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 {} \;
> 
> # build source
> mkdir src
> cd src
> unzip ../tobago-3.0.5-source-release.zip
> cd tobago-3.0.5
> mvn install -Pall-modules
> 
> mvn apache-rat:check -Pall-modules
> 
> # 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
> 
> 
> # verify tobago-assembly-*-dist.tar.gz and tobago-assembly-*-dist.zip
> binaries are identical
> # verify tobago-example-assembly-*-example.tar.gz and
> tobago-example-assembly-*-example.zip binaries are identical
> 
> cd ..
> 
> tar xvf ../tobago-assembly-3.0.5-dist.tar.gz
> mv myfaces-tobago-3.0.5/ myfaces-tobago-3.0.5.tar.gz.unpacked
> unzip ../tobago-assembly-3.0.5-dist.zip
> mv myfaces-tobago-3.0.5/ myfaces-tobago-3.0.5.zip.unpacked
> 
> tar xvf ../tobago-example-assembly-3.0.5-example.tar.gz
> mv myfaces-tobago-3.0.5/ myfaces-tobago-example-3.0.5.tar.gz.unpacked
> unzip ../tobago-example-assembly-3.0.5-example.zip
> mv myfaces-tobago-3.0.5/ myfaces-tobago-example-3.0.5.zip.unpacked
> 
> # should be no output
> diff -rq myfaces-tobago-3.0.5.*.unpacked
> # should only be "are identical" output
> diff -srq myfaces-tobago-3.0.5.*.unpacked | grep -v "are identical"
> 
> # should be no output
> diff -rq myfaces-tobago-example-3.0.5.*.unpacked
> # should only be "are identical" output
> diff -srq myfaces-tobago-example-3.0.5.*.unpacked | grep -v "are identical"
> 
> 
> On Thu, Aug 10, 2017 at 9:18 AM, Bernd Bohmann
> <bernd.bohm...@atanion.com> wrote:
>> here is my
>>
>> +1
>>
>> Regards
>>
>> Bernd
>>
>> On Wed, Aug 9, 2017 at 6:45 PM, Dennis Kieselhorst <d...@apache.org> wrote:
>>>
>>> +1
>>
>>

Reply via email to