diff options
author | Patrick McLean <chutzpah@gentoo.org> | 2022-08-24 10:09:52 -0700 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2022-08-24 10:09:52 -0700 |
commit | 109089bf9197b238cb0a87283c964175f8ca9573 (patch) | |
tree | 56d1115023fdbe9ea90d411ab728cf165a027d1a | |
parent | sys-cluster/ceph: Fix CI bugs 866159, 866161, 866163, 866167 (diff) | |
download | gentoo-109089bf9197b238cb0a87283c964175f8ca9573.tar.gz gentoo-109089bf9197b238cb0a87283c964175f8ca9573.tar.bz2 gentoo-109089bf9197b238cb0a87283c964175f8ca9573.zip |
sys-cluster/ceph: Add udev and python fix to 16.2.9-r2
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
-rw-r--r-- | sys-cluster/ceph/ceph-16.2.9-r2.ebuild | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys-cluster/ceph/ceph-16.2.9-r2.ebuild b/sys-cluster/ceph/ceph-16.2.9-r2.ebuild index 59d566d734d7..b4e567bd5318 100644 --- a/sys-cluster/ceph/ceph-16.2.9-r2.ebuild +++ b/sys-cluster/ceph/ceph-16.2.9-r2.ebuild @@ -335,6 +335,8 @@ ceph_src_configure() { else mycmakeargs+=( -DWITH_RADOSGW_SELECT_PARQUET:BOOL=OFF + # don't want to warn about unused CLI when reconfiguring for python + -DCMAKE_WARN_UNUSED_CLI:BOOL=OFF ) fi @@ -405,6 +407,7 @@ src_install() { python_setup cmake_src_install + python_optimize find "${ED}" -name '*.la' -type f -delete || die @@ -471,3 +474,7 @@ pkg_postinst() { tmpfiles_process ${PN}.conf udev_reload } + +pkg_postrm() { + udev_reload +} |