-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[Release][Packaging] Linux packages fail on ARM due to wrong KEYS file with non US-ASCII character #39074
Labels
Component: Continuous Integration
Component: Release
Priority: Blocker
Marks a blocker for the release
Type: bug
Milestone
Comments
@kou Should there be a problem with those characters? Should those characters not be used? |
raulcd
changed the title
[Release][Packaging] Linx packages fail on ARM due to wrong KEYS file with non US-ASCII character
[Release][Packaging] Linux packages fail on ARM due to wrong KEYS file with non US-ASCII character
Dec 5, 2023
kou
added a commit
to kou/arrow
that referenced
this issue
Dec 5, 2023
kou
added a commit
that referenced
this issue
Dec 5, 2023
### Rationale for this change `KEYS` may have UTF-8 (non ASCII) characters. Ruby chooses the default encoding based on `LANG`. If `LANG=C`, Ruby uses the `US-ASCII` encoding as the default encoding. If Ruby uses the `US-ASCII` encoding, we can't process `KEYS` because it has non ASCII characters. ### What changes are included in this PR? Use the `UTF-8` encoding explicitly for `KEYS`. If we specify the `UTF-8` encoding explicitly, our `KEYS` processing don't depend on `LANG`. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: #39074 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
raulcd
pushed a commit
that referenced
this issue
Dec 9, 2023
### Rationale for this change `KEYS` may have UTF-8 (non ASCII) characters. Ruby chooses the default encoding based on `LANG`. If `LANG=C`, Ruby uses the `US-ASCII` encoding as the default encoding. If Ruby uses the `US-ASCII` encoding, we can't process `KEYS` because it has non ASCII characters. ### What changes are included in this PR? Use the `UTF-8` encoding explicitly for `KEYS`. If we specify the `UTF-8` encoding explicitly, our `KEYS` processing don't depend on `LANG`. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: #39074 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
dgreiss
pushed a commit
to dgreiss/arrow
that referenced
this issue
Feb 19, 2024
…pache#39082) ### Rationale for this change `KEYS` may have UTF-8 (non ASCII) characters. Ruby chooses the default encoding based on `LANG`. If `LANG=C`, Ruby uses the `US-ASCII` encoding as the default encoding. If Ruby uses the `US-ASCII` encoding, we can't process `KEYS` because it has non ASCII characters. ### What changes are included in this PR? Use the `UTF-8` encoding explicitly for `KEYS`. If we specify the `UTF-8` encoding explicitly, our `KEYS` processing don't depend on `LANG`. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: apache#39074 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Component: Continuous Integration
Component: Release
Priority: Blocker
Marks a blocker for the release
Type: bug
Describe the bug, including details regarding any error messages, version, and platform.
The Linux packages for ARM are currently failing due to:
This is reproducible on the 14.0.2 RC 0 branch, see: #39070 (comment)
and main:
I did add my GPG key to the release svn repo:
https://dist.apache.org/repos/dist/release/arrow/KEYS
and it contains non US-ASCII characters due to my name:
uid [ultimate] Raúl Cumplido Domínguez (CODE SIGNING KEY) <[email protected]>
This is how it looks on the browser:
uid [ultimate] Raúl Cumplido DomÃnguez (CODE SIGNING KEY) <[email protected]>
Component(s)
Continuous Integration, Release
The text was updated successfully, but these errors were encountered: