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/xfsprogs/
Date: Tue, 25 May 2021 06:04:41
Message-Id: 1621922663.0d8e079c447338fe4e13fd380749194cdd1b7348.polynomial-c@gentoo
1 commit: 0d8e079c447338fe4e13fd380749194cdd1b7348
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 25 06:04:13 2021 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue May 25 06:04:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d8e079c
7
8 sys-fs/xfsprogs: Bump to version 5.12.0
9
10 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
11
12 sys-fs/xfsprogs/Manifest | 1 +
13 sys-fs/xfsprogs/xfsprogs-5.12.0.ebuild | 94 ++++++++++++++++++++++++++++++++++
14 2 files changed, 95 insertions(+)
15
16 diff --git a/sys-fs/xfsprogs/Manifest b/sys-fs/xfsprogs/Manifest
17 index dfacfd81ad4..948ff52e787 100644
18 --- a/sys-fs/xfsprogs/Manifest
19 +++ b/sys-fs/xfsprogs/Manifest
20 @@ -1,2 +1,3 @@
21 DIST xfsprogs-5.10.0.tar.xz 1273332 BLAKE2B 8caaa0ca8a94480f131d36b383afcf732b3a5a7a3c7927b4b4da4855fc5a0fb97a56fcebb98391a4dd0f02465868a4bd857e57eeba053a419df47d42f74bc958 SHA512 da09e687c87c4b133888dba7b4458017ec028020637ea5066be0232bf5c7da18239cc33eadd02d9b99d1c835aab38cab1ec9d45ae8b83897f9157cfcb0271fbd
22 DIST xfsprogs-5.11.0.tar.xz 1297180 BLAKE2B 0ae0c2eccdf124b9fc2f9a4ef71073324f3645bc9a4f2959978fa06ee4dae4ecaf4eee40e6b130b65eb390d8af0f9d1485aeac073a8ac5e30fce46eef9cdb7a4 SHA512 7a77f938a54176652ce0b53cab13509754aab560c02d74ab03a9fcebf2728d703f89ad9d281ef00fcc0dbabb5497cab2b2b656bbe7598037a16fff70126e5d66
23 +DIST xfsprogs-5.12.0.tar.xz 1299332 BLAKE2B 96e8831ca83d362792853188939017b53343232c99ed514fda50ea9afa828ea8f8ecc753249b211037c2635b45bfbcc849f90fe277102e4745e6b4f13fc6fc20 SHA512 d31263529cd5e0aad2b4414aca91f352c6df9de9a241655e43b5592a3ca120efdcfcd8cf84401ebd1b3fcf67027f0923fecc6f961bdaf12fb00c3ac67abd5fe7
24
25 diff --git a/sys-fs/xfsprogs/xfsprogs-5.12.0.ebuild b/sys-fs/xfsprogs/xfsprogs-5.12.0.ebuild
26 new file mode 100644
27 index 00000000000..030c8acbec7
28 --- /dev/null
29 +++ b/sys-fs/xfsprogs/xfsprogs-5.12.0.ebuild
30 @@ -0,0 +1,94 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit flag-o-matic toolchain-funcs systemd usr-ldscript
37 +
38 +DESCRIPTION="xfs filesystem utilities"
39 +HOMEPAGE="https://xfs.wiki.kernel.org/"
40 +SRC_URI="https://www.kernel.org/pub/linux/utils/fs/xfs/${PN}/${P}.tar.xz"
41 +
42 +LICENSE="LGPL-2.1"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
45 +IUSE="icu libedit nls"
46 +
47 +RDEPEND=">=sys-apps/util-linux-2.17.2
48 + dev-libs/inih
49 + icu? ( dev-libs/icu:= )
50 + libedit? ( dev-libs/libedit )
51 +"
52 +DEPEND="${RDEPEND}"
53 +BDEPEND="
54 + nls? ( sys-devel/gettext )
55 +"
56 +
57 +PATCHES=(
58 + "${FILESDIR}"/${PN}-4.15.0-docdir.patch
59 + "${FILESDIR}"/${PN}-5.3.0-libdir.patch
60 +)
61 +
62 +src_prepare() {
63 + default
64 +
65 + # Fix doc dir
66 + sed -i \
67 + -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
68 + include/builddefs.in || die
69 +
70 + # Don't install compressed docs
71 + sed 's@\(CHANGES\)\.gz[[:space:]]@\1 @' -i doc/Makefile || die
72 +}
73 +
74 +src_configure() {
75 + # include/builddefs.in will add FCFLAGS to CFLAGS which will
76 + # unnecessarily clutter CFLAGS (and fortran isn't used)
77 + unset FCFLAGS
78 +
79 + export DEBUG=-DNDEBUG
80 +
81 + # Package is honoring CFLAGS; No need to use OPTIMIZER anymore.
82 + # However, we have to provide an empty value to avoid default
83 + # flags.
84 + export OPTIMIZER=" "
85 +
86 + unset PLATFORM # if set in user env, this breaks configure
87 +
88 + # Avoid automagic on libdevmapper, #709694
89 + export ac_cv_search_dm_task_create=no
90 +
91 + # Build fails with -O3 (bug #712698)
92 + replace-flags -O3 -O2
93 +
94 + # Upstream does NOT support --disable-static anymore,
95 + # https://www.spinics.net/lists/linux-xfs/msg30185.html
96 + # https://www.spinics.net/lists/linux-xfs/msg30272.html
97 + local myconf=(
98 + --enable-blkid
99 + --with-crond-dir="${EPREFIX}/etc/cron.d"
100 + --with-systemd-unit-dir="$(systemd_get_systemunitdir)"
101 + $(use_enable icu libicu)
102 + $(use_enable nls gettext)
103 + $(use_enable libedit editline)
104 + )
105 +
106 + if is-flagq -flto ; then
107 + myconf+=( --enable-lto )
108 + else
109 + myconf+=( --disable-lto )
110 + fi
111 +
112 + econf "${myconf[@]}"
113 +}
114 +
115 +src_compile() {
116 + emake V=1
117 +}
118 +
119 +src_install() {
120 + emake DIST_ROOT="${ED}" HAVE_ZIPPED_MANPAGES=false install
121 + emake DIST_ROOT="${ED}" HAVE_ZIPPED_MANPAGES=false install-dev
122 +
123 + gen_usr_ldscript -a handle
124 +}