diff options
author | Patrick McLean <chutzpah@gentoo.org> | 2017-09-07 16:35:43 -0700 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2017-09-07 16:35:43 -0700 |
commit | b38b1860a141b00d8e897e3771069f6a68ae6398 (patch) | |
tree | 171b600d546a53831c7705953b48de47b85059f0 /sys-cluster | |
parent | sys-kernel/gentoo-sources: Linux patch 4.4.87 (diff) | |
download | gentoo-b38b1860a141b00d8e897e3771069f6a68ae6398.tar.gz gentoo-b38b1860a141b00d8e897e3771069f6a68ae6398.tar.bz2 gentoo-b38b1860a141b00d8e897e3771069f6a68ae6398.zip |
sys-cluster/ceph: Revision bump to 12.2.0-r1, fix references to temp python link
This also fixes some overriding of system CFLAGS.
Gentoo-Bug: 630232
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/ceph/ceph-12.2.0-r1.ebuild (renamed from sys-cluster/ceph/ceph-12.2.0.ebuild) | 11 | ||||
-rw-r--r-- | sys-cluster/ceph/files/ceph-12.2.0-cflags.patch | 13 |
2 files changed, 24 insertions, 0 deletions
diff --git a/sys-cluster/ceph/ceph-12.2.0.ebuild b/sys-cluster/ceph/ceph-12.2.0-r1.ebuild index e5e89e7a1c7a..c068ab583fc2 100644 --- a/sys-cluster/ceph/ceph-12.2.0.ebuild +++ b/sys-cluster/ceph/ceph-12.2.0-r1.ebuild @@ -117,6 +117,7 @@ UNBUNDLE_LIBS=( PATCHES=( "${FILESDIR}/${PN}-12.2.0-use-provided-cpu-flag-values.patch" + "${FILESDIR}/${PN}-12.2.0-cflags.patch" # pull in some bugfixes from upstream "${FILESDIR}/${PN}-12.2.0-fix_two_stray_get_health_callers.patch" @@ -189,6 +190,11 @@ ceph_src_configure() { rm -f "${BUILD_DIR:-${S}}/CMakeCache.txt" cmake-utils_src_configure + + # bug #630232 + sed -i "s:\"${T//:\\:}/${EPYTHON}/bin/python\":\"${PYTHON}\":" \ + "${BUILD_DIR:-${CMAKE_BUILD_DIR:-${S}}}"/include/acconfig.h \ + || die "sed failed" } src_configure() { @@ -260,6 +266,11 @@ src_install() { readme.gentoo_create_doc python_setup 'python2*' + + # bug #630232 + sed -i -r "s:${T//:/\\:}/${EPYTHON}:/usr:" "${ED}"/usr/bin/ceph \ + || die "sed failed" + python_fix_shebang "${ED}"/usr/{,s}bin/ # python_fix_shebang apparently is not idempotent diff --git a/sys-cluster/ceph/files/ceph-12.2.0-cflags.patch b/sys-cluster/ceph/files/ceph-12.2.0-cflags.patch new file mode 100644 index 000000000000..0f02e6e6d433 --- /dev/null +++ b/sys-cluster/ceph/files/ceph-12.2.0-cflags.patch @@ -0,0 +1,13 @@ +diff --git a/cmake/modules/Distutils.cmake b/cmake/modules/Distutils.cmake +index 24d1a50654..a9fac61196 100644 +--- a/cmake/modules/Distutils.cmake ++++ b/cmake/modules/Distutils.cmake +@@ -43,7 +43,7 @@ function(distutils_add_cython_module name src) + CC=${PY_CC} + CXX=${PY_CXX} + LDSHARED=${PY_LDSHARED} +- OPT=\"-DNDEBUG -g -fwrapv -O2 -w\" ++ OPT=\"-DNDEBUG -fwrapv -w\" + LDFLAGS=-L${CMAKE_LIBRARY_OUTPUT_DIRECTORY} + CYTHON_BUILD_DIR=${CMAKE_CURRENT_BINARY_DIR} + CEPH_LIBDIR=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} |