Skip to content
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

fix(22.04/libnss3): libs should contain all libraries #382

Open
wants to merge 3 commits into
base: ubuntu-22.04
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion slices/ca-certificates-java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ slices:
data:
essential:
- ca-certificates_data
- libnss3_libs
- libnss3_nss
contents:
/etc/default/cacerts:
/etc/ssl/certs/java/:
Expand Down
23 changes: 22 additions & 1 deletion slices/libnss3.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,39 @@
# Network Security Service libraries.
#
# This is a set of libraries designed to support cross-platform development of
# security-enabled client and server applications. It can support SSLv2 and v4,
# TLS, PKCS #5, #7, #11, #12, S/MIME, X.509 v3 certificates and other security
# standards.
package: libnss3

essential:
- libnss3_copyright

slices:
# The libs slice contains all the libraries coming from this package.
libs:
essential:
# This package still has many other libraries which are not part of any
# slices yet. Upon creation of new slices containing those libraries,
# make sure to add those slices in this list.
- libnss3_nss
- libnss3_smime

nss:
essential:
- libc6_libs
- libnspr4_libs
- libsqlite3-0_libs
rebornplusplus marked this conversation as resolved.
Show resolved Hide resolved
contents:
/usr/lib/*-linux-*/libnss3.so:
/usr/lib/*-linux-*/libnssutil3.so:
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We might want to add libsoftokn.


smime:
essential:
- libc6_libs
- libnspr4_libs
contents:
/usr/lib/*-linux-*/libsmime3.so:

copyright:
contents:
/usr/share/doc/libnss3/copyright:
Loading