-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Add native-deb* targets to build native Debian packages #14265
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
rules |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,7 @@ Source: openzfs-linux | |
Section: contrib/kernel | ||
Priority: optional | ||
Maintainer: ZFS on Linux specific mailing list <[email protected]> | ||
Build-Depends: abigail-tools, | ||
debhelper-compat (= 12), | ||
Build-Depends: debhelper-compat (= 12), | ||
dh-python, | ||
dkms (>> 2.1.1.2-5), | ||
libaio-dev, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
pam-auth-update --package | ||
if ! $(ldd "/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH)/security/pam_zfs_key.so" | grep -q "libasan") ; then | ||
pam-auth-update --package | ||
fi | ||
|
||
#DEBHELPER# |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,5 +131,4 @@ usr/share/man/man8/zstreamdump.8 | |
usr/share/man/man4/spl.4 | ||
usr/share/man/man4/zfs.4 | ||
usr/share/man/man7/zpool-features.7 | ||
usr/share/man/man7/dracut.zfs.7 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like it is valid man page, what's the reason not to install it? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have a separate package for dracut, i.e. By mistake, this was included in |
||
usr/share/man/man8/zpool_influxdb.8 |
This file was deleted.
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 do we need this package? IIRC we don't have anything in main repository to use Sphinx on
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.
This is a dependency mentioned in
contrib/debian/control
. Incontrib/debian/rules.in
, sphinx docs can be generated. I think that requires this package.