-
Notifications
You must be signed in to change notification settings - Fork 51
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
Please split common converters slice from libc6 gconv slice #368
Comments
vpa1977
changed the title
libc6 gconv slices
please split common converters slice from libc6 gconv slice
Oct 17, 2024
vpa1977
changed the title
please split common converters slice from libc6 gconv slice
Please split common converters slice from libc6 gconv slice
Oct 17, 2024
Hello @vpa1977! Are you looking for something like below? diff --git a/slices/libc6.yaml b/slices/libc6.yaml
index 3ea1e51..21ba10a 100644
--- a/slices/libc6.yaml
+++ b/slices/libc6.yaml
@@ -40,9 +40,20 @@ slices:
/usr/lib/*-linux-*/libutil.so.*:
gconv:
+ essential:
+ - libc6_gconv-core
contents:
/usr/lib/*-linux-*/gconv/**:
+ gconv-core:
+ contents:
+ /usr/lib/*-linux-*/gconv/ANSI_X3.110.so:
+ /usr/lib/*-linux-*/gconv/CP1252.so:
+ /usr/lib/*-linux-*/gconv/ISO8859-1.so:
+ /usr/lib/*-linux-*/gconv/ISO8859-15.so:
+ /usr/lib/*-linux-*/gconv/UNICODE.so:
+ /usr/lib/*-linux-*/gconv/UTF-*.so:
+
copyright:
contents:
/usr/share/doc/libc6/copyright: It works too:
|
@rebornplusplus yes, this is perfect, thank you!!!! |
Ah okay, please feel free to raise a PR. Just so you know, paths do not conflict within the same package or same slice. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
libc6 slice definition splits package into libraries and gconv files.
Fedora implemented proposal[1] to move gconv files into a separate package except most commonly used converters
UTF-*, unicode, ISO-8859-1, ISO8859-15, CP1252 and ANSI_X3.110.
.Would it be possible to consider splitting gconv slice to have common converters installable?
Note: corresponding Debian bug[2]
[1] https://www.fedoraproject.org/wiki/Changes/Gconv_package_split_in_glibc
[2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1005193
The text was updated successfully, but these errors were encountered: