-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
changing checksum of a commit #3121
Comments
Apparently, this bug was fixed before, so we got a regression Can also add a comment "do not use %d here" ? ;-) |
This is too old for me to remember anything 😄 |
We want to have the
|
can you add a condition, something like if |
Do you know how/if this would be possible? |
Honestly, I had no idea that even the current implementation is be possible. I was pretty sure that the archive based on a commit is stable and should not change. I haven't looked at it, but you implemented a hack probably.
Just an idea, I never used it. There are other hooks too. |
Since this is far from being a priority for the project, I do not plan to work on it. If someone is willing to spend time on this issue, please reopen this issue to keep track of your work, and submit a pull request. Thanks! |
Please keep it open until it is fixed. The open bug doesn't bite, and somebody with more time may fix it. Also, please release a new version |
This was kinda fixed in #1521 but that got reverted (still unsure of the reasons tbh..). But in the meantime we're working on a new release asap |
Ok, rip |
Follow #3100 to follow the release of v2.4.5 that will have the Python 3.9 fix. I am planning to release this week. |
Hi,
This is a bit unusual, so I'm not going to use a provided template.
At Pentoo, we could not wait for a release due to a critical functionality (please release it btw) and decided to provide a current snapshot of scapy. Here is an example how it is done:
pentoo/pentoo-overlay@ce4040b
In short, we download it from the following location, as an example:
https://github.com/secdev/scapy/archive/f0e3e4452ec63618b09bad30b459b7eba09ebd6b.tar.gz
(notice the hash f0e3e44)
However, we noticed it changes later as it was reported in our issue tracker:
pentoo/pentoo-overlay#703
I compared what changed exactly and figured it out. The problem with the following line:
https://github.com/secdev/scapy/blob/master/scapy/__init__.py#L99
it changes from:
git_archive_id = 'f0e3e4452e (HEAD -> master)'
to
git_archive_id = 'f0e3e4452e '
Could you adjust that format, so it won't be happening?
Thanks
The text was updated successfully, but these errors were encountered: