[VOTE] Release Apache Liminal (incubating) 0.0.1rc4-INCUBATING

2021-01-24 Thread Lior Schachter
Hi All,
We would like to have a second round of vote for the first release of
Apache Liminal (Incubating), after fixing the issues identified at the
previous round.

This release enables seamless Liminal installation in Local mode and
in AWS cloud to execute machine-learning pipelines.

Liminal community vote and result threads:
Vote:
https://lists.apache.org/thread.html/r58b60157b52f76be0076bd96bb672a256ccd828bcaf44335b83cdd2e%40%3Cdev.liminal.apache.org%3E

Result:
https://lists.apache.org/thread.html/rcf8d37aa6fa3b1c895c2c561e6b7e89c1ef25951dea8afda3f63b284%40%3Cdev.liminal.apache.org%3E

Installation and testing instructions can be found in the README included.

The release files, including signatures, digests, etc. can be found at:

https://dist.apache.org/repos/dist/dev/incubator/liminal/0.0.1rc4-INCUBATING/

The tag to be voted on:

https://github.com/apache/incubator-liminal/releases/tag/0.0.1rc4-INCUBATING

The SHA512 Checksum for these artifacts is:

apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz:

E7C83F6E 6AA659ED 8C3B3B4D D15E97D8 D41623A7 8B31E04C 5442FC6D
B4CC4FF9 804C6A7E 61A4E2B9 E19E93EE A0CAB4EE 4458B6C6 480DD12D
F41A8128 A342699A

Release artifacts are signed with the following key:

https://dist.apache.org/repos/dist/dev/incubator/liminal/KEYS

For more information about the contents of this release,
see:https://issues.apache.org/jira/projects/LIMINAL/versions/12349599


Please vote on releasing this package as Apache Liminal
0.0.1rc4-INCUBATING. A majority of at least 3 +1 PMC votes are cast.

[ ] +1 Release this package as Apache Liminal 0.0.1rc4
[ ] +0 No opinion
[ ] -1 Do not release this package because ...

Regards,
Lior Schachter


Re: [VOTE] Release Apache Liminal (incubating) 0.0.1rc4-INCUBATING

2021-01-27 Thread Justin Mclean
Hi,

+1 of the source release, but -1 on the whl file.

For the source release I checked:
- incubating in name
- signatures and hashes are fine
- DISCLAIMER (WIP) exists but still has "List of known issues goes here”. You 
need to mention what issue this release has.
- LICENSE is good
- NOTICE is OK no need for "I. Included Software”
- All source files have ASF headers
- No unexpected binary files

For the whl file, everything is fine as above, and it now does contain the 
LICENSE and NOTICE but is missing a DISCLAIMER file. All releases must contain 
an incubating disclaimer.

Thanks,
Justin


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



Re: [VOTE] Release Apache Liminal (incubating) 0.0.1rc4-INCUBATING

2021-01-27 Thread Juan Pan
Hi,


Here is my checking list,


[x] Download links are valid.
[ ] Checksums and PGP signatures are valid.
[x] LICENSE and NOTICE files are correct (From[1]). 
[x] All files have license headers if necessary.
[x] Install successfully.




PGP signatures are well. However, I got the following exceptions when checksums 
on macOS. 
Did I miss something? 




▶ shasum -c apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512
shasum: apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512: No such file 
or directory
   ⍉
▶ shasum -a 512  -c apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512
shasum: apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512: No such file 
or directory






[1] 
https://github.com/apache/incubator-liminal/commit/8441a3f428982888fe70ce76a89506a80a43845d


 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 01/28/2021 09:12,Justin Mclean wrote:
Hi,

+1 of the source release, but -1 on the whl file.

For the source release I checked:
- incubating in name
- signatures and hashes are fine
- DISCLAIMER (WIP) exists but still has "List of known issues goes here”. You 
need to mention what issue this release has.
- LICENSE is good
- NOTICE is OK no need for "I. Included Software”
- All source files have ASF headers
- No unexpected binary files

For the whl file, everything is fine as above, and it now does contain the 
LICENSE and NOTICE but is missing a DISCLAIMER file. All releases must contain 
an incubating disclaimer.

Thanks,
Justin


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


Re: [VOTE] Release Apache Liminal (incubating) 0.0.1rc4-INCUBATING

2021-01-27 Thread Justin Mclean
Hi,

> ▶ shasum -c apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512
> shasum: apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512: No such file 
> or directory
>   
> ⍉
> ▶ shasum -a 512  -c apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512
> shasum: apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512: No such file 
> or directory

This may help.

The files may download with .txt extensions you may need to rename them to .sha.

I have a little bash function to do this:

function untxt() {
 find . -name '*.txt' | while read f; do mv "$f" "${f/\.txt/}"; done
}

I generally compare:
shasum -a 512 apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz

with the .sha512 file under nuttx-ing it

Thanks,
Justin
-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [VOTE] Release Apache Liminal (incubating) 0.0.1rc4-INCUBATING

2021-01-28 Thread Aviem Zur
Will add DISCLAIMER file to whl

On Thu, Jan 28, 2021 at 8:42 AM Justin Mclean 
wrote:

> Hi,
>
> > ▶ shasum -c apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512
> > shasum: apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512: No such
> file or directory
> >
>  ⍉
> > ▶ shasum -a 512  -c
> apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512
> > shasum: apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512: No such
> file or directory
>
> This may help.
>
> The files may download with .txt extensions you may need to rename them to
> .sha.
>
> I have a little bash function to do this:
>
> function untxt() {
>  find . -name '*.txt' | while read f; do mv "$f" "${f/\.txt/}"; done
> }
>
> I generally compare:
> shasum -a 512 apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz
>
> with the .sha512 file under nuttx-ing it
>
> Thanks,
> Justin
> -
> To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
> For additional commands, e-mail: general-h...@incubator.apache.org
>
>


Re: [VOTE] Release Apache Liminal (incubating) 0.0.1rc4-INCUBATING

2021-01-28 Thread Aviem Zur
We'll also compile a list of known issues and include it in disclaimer

Thanks,
Aviem

On Thu, Jan 28, 2021 at 10:14 AM Aviem Zur  wrote:

> Will add DISCLAIMER file to whl
>
> On Thu, Jan 28, 2021 at 8:42 AM Justin Mclean 
> wrote:
>
>> Hi,
>>
>> > ▶ shasum -c apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512
>> > shasum: apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512: No
>> such file or directory
>> >
>>⍉
>> > ▶ shasum -a 512  -c
>> apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512
>> > shasum: apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512: No
>> such file or directory
>>
>> This may help.
>>
>> The files may download with .txt extensions you may need to rename them
>> to .sha.
>>
>> I have a little bash function to do this:
>>
>> function untxt() {
>>  find . -name '*.txt' | while read f; do mv "$f" "${f/\.txt/}"; done
>> }
>>
>> I generally compare:
>> shasum -a 512 apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz
>>
>> with the .sha512 file under nuttx-ing it
>>
>> Thanks,
>> Justin
>> -
>> To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
>> For additional commands, e-mail: general-h...@incubator.apache.org
>>
>>


Re: [VOTE] Release Apache Liminal (incubating) 0.0.1rc4-INCUBATING

2021-01-28 Thread Juan Pan
Hi Justin,




Thanks for reply. Sorry for my mistake.

I found the .txt issue and renamed these file. What I am really confused about 
is the following exception,




▶ shasum -a 512 -c apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512

shasum: apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512: no properly 
formatted SHA1 checksum lines found




▶ shasum -c apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512

shasum: apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512: no properly 
formatted SHA1 checksum lines found




I opened this sha512[1] and compared it with a successful one [2]. The 
difference is the order of lines, so I am unsure whether that’s an issue.




[1] 
https://dist.apache.org/repos/dist/dev/incubator/liminal/0.0.1rc4-INCUBATING/apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512

[2]https://dist.apache.org/repos/dist/dev/incubator/hop/apache-hop-0.60-incubating-rc1/apache-hop-0.60-incubating-rc1.tar.gz.sha512




Thanks,

Trista







 
   Juan Pan (Trista)
 
Senior DBA & PMC of Apache ShardingSphere
E-mail: panj...@apache.org




On 01/28/2021 14:42,Justin Mclean wrote:
Hi,

▶ shasum -c apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512
shasum: apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512: No such file 
or directory
⍉
▶ shasum -a 512  -c apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512
shasum: apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz.sha512: No such file 
or directory

This may help.

The files may download with .txt extensions you may need to rename them to .sha.

I have a little bash function to do this:

function untxt() {
find . -name '*.txt' | while read f; do mv "$f" "${f/\.txt/}"; done
}

I generally compare:
shasum -a 512 apache-liminal-0.0.1rc4-INCUBATING-source.tar.gz

with the .sha512 file under nuttx-ing it

Thanks,
Justin
-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org