-
Notifications
You must be signed in to change notification settings - Fork 1.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
solvespace: New Package #22758
base: master
Are you sure you want to change the base?
solvespace: New Package #22758
Conversation
patch -N -p1 -i "${srcdir}/1487.patch" || true | ||
patch -N -p1 -i "${srcdir}/002-not-in-msys2-temp.patch" || true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why the "|| true" ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the first patch is from PR but it's from upstream which is not the version we are packaging, the rejects are then fixed/backported in 002-not-in-msys2-temp.patch, however the second one a || true is not necessary, you're right.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd argue it doesn't make sense in both cases. It shouldn't fail, and if it does we want to know.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess I can manually remove the reject chunks, however they might be necessary on a later version
the resulting package is empty, so something is broken in the package() phase |
It seems it's an upstream problem.. |
the 1487.patch refers to the PR, and because this patch is on release it will not exactly work for the tagged version, so the 002*.patch is a hotfix which should be removed whenever they tag a new version.