In ec2/roles/build/tasks/install-msieve.yml, it is
get_url: dest={{ sourcedir }}/msieve.tar.gz url='https://sourceforge.net/projects/msieve/files/latest/download?source=files'
It fails now because the latest version of msieve on sourceforge has been 1.5.3. And the commands below hard code directory msieve-1.5.2. It can be
get_url: dest={{ sourcedir }}/msieve.tar.gz url='https://sourceforge.net/projects/msieve/files/msieve/Msieve%20v1.52/msieve152.tar.gz' checksum="sha1:88a1ce2354b57835231bcaca0ecb0477b975b5cd"
to avoid the problem simply. If anyone want to upgrade the msieve to the latest version, maybe the patch file should be changed. I haven't tested it.
Anyway, I think the project is helpful and it do help me to factor a integer. 👍
In
ec2/roles/build/tasks/install-msieve.yml, it isIt fails now because the
latestversion of msieve on sourceforge has been1.5.3. And the commands below hard code directorymsieve-1.5.2. It can beto avoid the problem simply. If anyone want to upgrade the msieve to the
latestversion, maybe the patch file should be changed. I haven't tested it.Anyway, I think the project is helpful and it do help me to factor a integer. 👍