Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/btrfs-progs/
Date: Fri, 23 Oct 2020 18:57:03
Message-Id: 1603479410.b4307923d82f3594703702bf4020d9001069caf8.polynomial-c@gentoo
1 commit: b4307923d82f3594703702bf4020d9001069caf8
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 23 18:33:02 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 23 18:56:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4307923
7
8 sys-fs/btrfs-progs: Bump to version 5.9
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.2
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 sys-fs/btrfs-progs/Manifest | 1 +
14 sys-fs/btrfs-progs/btrfs-progs-5.9.ebuild | 129 ++++++++++++++++++++++++++++++
15 2 files changed, 130 insertions(+)
16
17 diff --git a/sys-fs/btrfs-progs/Manifest b/sys-fs/btrfs-progs/Manifest
18 index e53947dd8ce..166341c23f3 100644
19 --- a/sys-fs/btrfs-progs/Manifest
20 +++ b/sys-fs/btrfs-progs/Manifest
21 @@ -2,3 +2,4 @@ DIST btrfs-progs-v4.19.tar.xz 2001340 BLAKE2B 117087adcb57e4ebf6a2e9c66bf0ad2b09
22 DIST btrfs-progs-v5.4.1.tar.xz 2107476 BLAKE2B 1ea58f49b0f8185e944010804e544643a2eafeea58fecb480b13095c362350c218f0602fbb43a96705a81befe88ec3e3abe35cc90d4732006479b059aa7fed32 SHA512 56381b37036aecea61b758fb4971abfeda24a387bb3a828f7d54eb068982a37763a8ebe2bcc6be61d6a8bc2057dddcd4754325b236e14d8ec02e58cf711f192f
23 DIST btrfs-progs-v5.6.1.tar.xz 2117064 BLAKE2B 9183300e7c086cb8f03ac14139d3d2a424461f4c5afc0e7b9bb588f4c0ddd2c41d7cefe91787b1cabe6397f8abeb6e958900e7742a80d3519382e98c3b197c9d SHA512 8f523249a5c2bfe1c0d52b0dc5d31d52b330b1c616d3ec423fa1fb4a845441bfeaa32abbe42a444a4fc84016a482c8102a3eb451ac423b542e332e9c26e76dc6
24 DIST btrfs-progs-v5.7.tar.xz 2182728 BLAKE2B 47573baa26cde058003b402dadba28f278b4b3ffd270d002ab8fd72d94ee41d3fdfb3d36c0c579e24ea6afae4b2dea2ca704d9dd809fcd10fbc146d63d48980c SHA512 72c3af13ca589f2e0b96cb7602319035ef8aab6ee224fff3544a5d0bfc013a66552dde4533ec5e64696d404b8905431cd0f25367c40fd34ea39be7c0ed8c2d16
25 +DIST btrfs-progs-v5.9.tar.xz 2189724 BLAKE2B 3692e058e5e52c2a3684548d0b0ca94a9101a66dc8951266a49a71b6848b7f0cce8ade0e914ae8b71345021750e7d20742af13aec69aef7d52e3030fca289529 SHA512 38db047198ab0467d3fe235f7e8e1fd14ade00dd0b182588220c5f5e4b598efbdcd30a3d5d56cf0a0ed8a902d2374af0927eb7f3720cd761172c7291a2a65c94
26
27 diff --git a/sys-fs/btrfs-progs/btrfs-progs-5.9.ebuild b/sys-fs/btrfs-progs/btrfs-progs-5.9.ebuild
28 new file mode 100644
29 index 00000000000..81e4dc34e2d
30 --- /dev/null
31 +++ b/sys-fs/btrfs-progs/btrfs-progs-5.9.ebuild
32 @@ -0,0 +1,129 @@
33 +# Copyright 2008-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python3_{6,7,8} )
39 +
40 +inherit bash-completion-r1 python-single-r1
41 +
42 +libbtrfs_soname=0
43 +
44 +if [[ ${PV} != 9999 ]]; then
45 + MY_PV="v${PV/_/-}"
46 + [[ "${PV}" = *_rc* ]] || \
47 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
48 + SRC_URI="https://www.kernel.org/pub/linux/kernel/people/kdave/${PN}/${PN}-${MY_PV}.tar.xz"
49 + S="${WORKDIR}/${PN}-${MY_PV}"
50 +else
51 + WANT_LIBTOOL=none
52 + inherit autotools git-r3
53 + EGIT_REPO_URI="https://github.com/kdave/btrfs-progs.git"
54 + EGIT_BRANCH="devel"
55 +fi
56 +
57 +DESCRIPTION="Btrfs filesystem utilities"
58 +HOMEPAGE="https://btrfs.wiki.kernel.org"
59 +
60 +LICENSE="GPL-2"
61 +SLOT="0/${libbtrfs_soname}"
62 +IUSE="+convert doc python reiserfs static static-libs +zstd"
63 +
64 +RESTRICT=test # tries to mount repared filesystems
65 +
66 +RDEPEND="
67 + dev-libs/lzo:2=
68 + sys-apps/util-linux:0=[static-libs(+)?]
69 + sys-libs/zlib:0=
70 + convert? (
71 + sys-fs/e2fsprogs:0=
72 + sys-libs/e2fsprogs-libs:0=
73 + reiserfs? (
74 + >=sys-fs/reiserfsprogs-3.6.27
75 + )
76 + )
77 + python? ( ${PYTHON_DEPS} )
78 + zstd? ( app-arch/zstd:0= )
79 +"
80 +DEPEND="${RDEPEND}
81 + convert? ( sys-apps/acl )
82 + python? (
83 + $(python_gen_cond_dep '
84 + dev-python/setuptools[${PYTHON_MULTI_USEDEP}]
85 + ')
86 + )
87 + static? (
88 + dev-libs/lzo:2[static-libs(+)]
89 + sys-apps/util-linux:0[static-libs(+)]
90 + sys-libs/zlib:0[static-libs(+)]
91 + convert? (
92 + sys-fs/e2fsprogs:0[static-libs(+)]
93 + sys-libs/e2fsprogs-libs:0[static-libs(+)]
94 + reiserfs? (
95 + >=sys-fs/reiserfsprogs-3.6.27[static-libs(+)]
96 + )
97 + )
98 + zstd? ( app-arch/zstd:0[static-libs(+)] )
99 + )
100 +"
101 +BDEPEND="
102 + doc? (
103 + || ( >=app-text/asciidoc-8.6.0 dev-ruby/asciidoctor )
104 + app-text/docbook-xml-dtd:4.5
105 + app-text/xmlto
106 + )
107 +"
108 +
109 +if [[ ${PV} == 9999 ]]; then
110 + DEPEND+=" sys-devel/gnuconfig"
111 +fi
112 +
113 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
114 +
115 +pkg_setup() {
116 + use python && python-single-r1_pkg_setup
117 +}
118 +
119 +src_prepare() {
120 + default
121 + if [[ ${PV} == 9999 ]]; then
122 + AT_M4DIR=m4 eautoreconf
123 + mkdir config || die
124 + local automakedir="$(autotools_run_tool --at-output automake --print-libdir)"
125 + [[ -e ${automakedir} ]] || die "Could not locate automake directory"
126 + ln -s "${automakedir}"/install-sh config/install-sh || die
127 + ln -s "${EPREFIX}"/usr/share/gnuconfig/config.guess config/config.guess || die
128 + ln -s "${EPREFIX}"/usr/share/gnuconfig/config.sub config/config.sub || die
129 + fi
130 +}
131 +
132 +src_configure() {
133 + local myeconfargs=(
134 + --bindir="${EPREFIX}"/sbin
135 + $(use_enable convert)
136 + $(use_enable doc documentation)
137 + $(use_enable elibc_glibc backtrace)
138 + $(use_enable python)
139 + $(use_enable static-libs static)
140 + $(use_enable zstd)
141 + --with-convert=ext2$(usex reiserfs ',reiserfs' '')
142 + )
143 + econf "${myeconfargs[@]}"
144 +}
145 +
146 +src_compile() {
147 + emake V=1 all $(usev static)
148 +}
149 +
150 +src_install() {
151 + local makeargs=(
152 + $(usex python install_python '')
153 + $(usex static install-static '')
154 + )
155 + emake V=1 DESTDIR="${D}" install "${makeargs[@]}"
156 + newbashcomp btrfs-completion btrfs
157 + use python && python_optimize
158 +
159 + # install prebuilt subset of manuals
160 + use doc || doman Documentation/*.[58]
161 +}