aboutsummaryrefslogtreecommitdiffstats
path: root/community/ceph/APKBUILD
diff options
context:
space:
mode:
authoriggy <iggy@kws1.com>2020-03-05 19:22:25 +0000
committerLeo <thinkabit.ukim@gmail.com>2020-03-11 01:45:13 -0300
commit2fa73ad7aeea4ba5e48d853a1b84873a6b2a93fd (patch)
tree06123b4a93e890b62df817f52f679ebdaf7d9f6e /community/ceph/APKBUILD
parentefe6889661ceb56024fc392fbdd4b60079c4e363 (diff)
downloadaports-2fa73ad7aeea4ba5e48d853a1b84873a6b2a93fd.tar.bz2
aports-2fa73ad7aeea4ba5e48d853a1b84873a6b2a93fd.tar.xz
community/ceph: upgrade to 14.2.8
**Changes:** * Bump the version from 14.2.7 -> 14.2.8 * Add patch to fix build on musl * Set MAKEFLAGS to keep build from using all the memory... thanks C++ * Re-enable the build
Diffstat (limited to 'community/ceph/APKBUILD')
-rw-r--r--community/ceph/APKBUILD14
1 files changed, 10 insertions, 4 deletions
diff --git a/community/ceph/APKBUILD b/community/ceph/APKBUILD
index a76456c4b5..a0fe84f21d 100644
--- a/community/ceph/APKBUILD
+++ b/community/ceph/APKBUILD
@@ -1,13 +1,13 @@
# Contributor: John Coyle <dx9err@gmail.com>
# Maintainer: Iggy Jackson <iggy@kws1.com>
pkgname=ceph
-pkgver=14.2.7
+pkgver=14.2.8
pkgrel=0
pkgdesc="Ceph is a distributed object store and file system"
pkgusers="ceph"
pkggroups="ceph"
url="https://ceph.com/"
-arch="" #"x86_64 aarch64"
+arch="x86_64 aarch64"
# https://github.com/ceph/ceph/blob/master/COPYING
license="LGPL-2.1-only AND LGPL-2.0-or-later AND GPL-2.0-only AND GPL-3.0-only AND CC-BY-SA-1.0 AND BSL-1.0 AND GPL-2.0-or-later WITH Autoconf-exception-2.0 AND BSD-3-Clause AND MIT AND custom"
depends="ceph-osd ceph-mds ceph-mon"
@@ -90,6 +90,7 @@ makedepends="
source="https://download.ceph.com/tarballs/ceph_$pkgver.orig.tar.gz
allperms.patch
musl-fixes.patch
+ fix-seek-data-hole.patch
"
subpackages="
$pkgname-doc
@@ -153,6 +154,8 @@ _py3_sitelib() {
build() {
export CEPH_BUILD_VIRTUALENV="$builddir"
+ # builders keep failing when -jN == nproc
+ export MAKEFLAGS="$MAKEFLAGS -j16"
mkdir -p "$builddir"/build
cd "$builddir"/build
@@ -522,6 +525,9 @@ _pkg() {
done
}
-sha512sums="59f475e56053ba5e7e3a482a3a91b4d44272e6ec8051b92783de76c09c0d967a7ef76676db998968a709e48f08e90828dd8f86bd96a7c3fd111d48bfb7fd93b1 ceph_14.2.7.orig.tar.gz
+sha512sums="
+38b0c6df58579377528c8f8e06d0cbc40f471f6eb2fb4a05b395f6fddbd3f2117674545b2147d8730973b01967ddcd4322a769ba03f9c625417ed35cc39f195a ceph_14.2.8.orig.tar.gz
e1becd813ed3f28e2e4a6bef78b3b5117c1c0bb9cabe0ba9c912e0a20b551b6b2667495cddb94acd64192e287144911ff1c11e0d636fe04cc458146cfb0daca8 allperms.patch
-35722b11ad52a3145153635b6a96abda2a23ae9c7e63e2eac006c1e5b8014452c4a1a11bbe0292fd731e4c43aa38e27dd75d2ff9d25bcf52290278f71e868570 musl-fixes.patch"
+35722b11ad52a3145153635b6a96abda2a23ae9c7e63e2eac006c1e5b8014452c4a1a11bbe0292fd731e4c43aa38e27dd75d2ff9d25bcf52290278f71e868570 musl-fixes.patch
+951eab175ffcfc39675302ea9ea5ac18c9c348a0c5180c6b1f376e4547c079dd660ec50e08e32d47a4144bd17248b81842df85e55a93903054f58f976d85f8a1 fix-seek-data-hole.patch
+"