blob: b8761ecbba6fbd5358acd4c252aed8ef4410da67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES=""
PYTHON_COMPAT=( python3_{8..11} )
inherit cargo flag-o-matic multiprocessing python-any-r1 toolchain-funcs unpacker
DESCRIPTION="Tools for bcachefs"
HOMEPAGE="https://bcachefs.org/"
if [[ ${PV} == "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://evilpiepirate.org/git/bcachefs-tools.git"
else
MY_COMMIT=f1f88825c371f84edb85a156de5e1962503d23b2
SRC_URI="https://evilpiepirate.org/git/bcachefs-tools.git/snapshot/bcachefs-tools-${MY_COMMIT}.tar.zst
$(cargo_crate_uris ${CRATES})"
S="${WORKDIR}/${PN}-${MY_COMMIT}"
KEYWORDS="~amd64"
fi
LICENSE="Apache-2.0 BSD GPL-2 MIT"
SLOT="0"
IUSE="fuse test"
RESTRICT="!test? ( test )"
DEPEND="
app-arch/lz4
app-arch/zstd
dev-libs/libaio
dev-libs/libsodium
dev-libs/userspace-rcu
sys-apps/keyutils
sys-apps/util-linux
sys-libs/zlib
virtual/udev
fuse? ( >=sys-fs/fuse-3.7.0 )
"
RDEPEND="${DEPEND}"
BDEPEND="
${PYTHON_DEPS}
$(python_gen_any_dep '
dev-python/docutils[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-xdist[${PYTHON_USEDEP}]
)
')
$(unpacker_src_uri_depends)
sys-devel/clang
virtual/rust
"
python_check_deps() {
if use test; then
python_has_version \
"dev-python/pytest[${PYTHON_USEDEP}]" \
"dev-python/pytest-xdist[${PYTHON_USEDEP}]"
fi
python_has_version "dev-python/docutils[${PYTHON_USEDEP}]"
}
src_unpack() {
if [[ ${PV} == "9999" ]]; then
git-r3_src_unpack
local module
for module in bch_bindgen mount; do
S="${S}/rust-src/${module}" cargo_live_src_unpack
done
else
unpacker bcachefs-tools-${MY_COMMIT}.tar.zst
cargo_src_unpack
fi
}
src_prepare() {
default
tc-export CC
sed \
-e '/^CFLAGS/s:-O2::' \
-e '/^CFLAGS/s:-g::' \
-e 's:pytest-3:/bin/true:g' \
-i Makefile || die
append-lfs-flags
}
src_compile() {
use fuse && export BCACHEFS_FUSE=1
export BUILD_VERBOSE=1
export VERSION=${PV}
default
# Rust UUID-based mounter isn't in 'all' target, may as well use ebuild functions
local module
for module in bch_bindgen mount; do
pushd "${S}/rust-src/${module}" > /dev/null || die
LIBBCACHEFS_LIB="${S}" LIBBCACHEFS_INCLUDE="${S}" cargo_src_compile
popd > /dev/null || die
done
ln -f "${S}/rust-src/mount/target/release/bcachefs-mount" "${S}/mount.bcachefs" || die
use test && emake tests
}
src_test() {
if ! use fuse; then
EPYTEST_IGNORE=( tests/test_fuse.py )
fi
EPYTEST_DESELECT=(
# Valgrind
'tests/test_fixture.py::test_read_after_free'
'tests/test_fixture.py::test_undefined'
'tests/test_fixture.py::test_write_after_free'
'tests/test_fixture.py::test_undefined_branch'
'tests/test_fixture.py::test_leak'
'tests/test_fixture.py::test_check'
# Fails in portage because of usersandbox; ensure that these pass before bumping!
'tests/test_basic.py::test_format'
'tests/test_basic.py::test_fsck'
'tests/test_basic.py::test_list'
'tests/test_basic.py::test_list_inodes'
'tests/test_basic.py::test_list_dirent'
)
epytest -v -n "$(makeopts_jobs)"
}
QA_FLAGS_IGNORED="usr/bin/mount.bcachefs"
# Raised upstream; we don't expect anything to link against this outside of bcachefs-tools bins, for now
QA_SONAME=".*libbcachefs.so"
src_install() {
exeinto /usr/bin
local file
for file in bcachefs fsck.bcachefs mkfs.bcachefs mount.bcachefs mount.bcachefs.sh; do
doexe $file
done
dolib.so libbcachefs.so
doman bcachefs.8
}
pkg_postinst() {
if use fuse; then
ewarn "FUSE support is experimental."
ewarn "Please only use it for development purposes at the risk of losing your data."
ewarn "You have been warned."
fi
}
|