From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 34062158041 for ; Sun, 5 Sep 2021 18:42:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49D58E0863; Sun, 5 Sep 2021 18:42:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2C2F8E0863 for ; Sun, 5 Sep 2021 18:42:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DCCCB335D45 for ; Sun, 5 Sep 2021 18:42:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D25156 for ; Sun, 5 Sep 2021 18:42:11 +0000 (UTC) From: "Andrea Postiglione" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrea Postiglione" Message-ID: <1630867290.9fe3a90f2aae964581f8b3278b1e117b41e65c1a.andrea_postiglione@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/gfs2-utils/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-fs/gfs2-utils/gfs2-utils-3.4.1.ebuild X-VCS-Directories: sys-fs/gfs2-utils/ X-VCS-Committer: andrea_postiglione X-VCS-Committer-Name: Andrea Postiglione X-VCS-Revision: 9fe3a90f2aae964581f8b3278b1e117b41e65c1a X-VCS-Branch: dev Date: Sun, 5 Sep 2021 18:42:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 924ccd6c-58b3-4698-9463-29dd89339837 X-Archives-Hash: a6136157d22520d9714e602b818fb864 commit: 9fe3a90f2aae964581f8b3278b1e117b41e65c1a Author: Andrea Postiglione gmail com> AuthorDate: Sun Sep 5 18:41:30 2021 +0000 Commit: Andrea Postiglione gmail com> CommitDate: Sun Sep 5 18:41:30 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9fe3a90f sys-fs/gfs2-utils: version bump to 3.4.1 Signed-off-by: Andrea Postiglione gmail.com> sys-fs/gfs2-utils/gfs2-utils-3.4.1.ebuild | 63 +++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/sys-fs/gfs2-utils/gfs2-utils-3.4.1.ebuild b/sys-fs/gfs2-utils/gfs2-utils-3.4.1.ebuild new file mode 100644 index 000000000..6cfae8a5f --- /dev/null +++ b/sys-fs/gfs2-utils/gfs2-utils-3.4.1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools toolchain-funcs linux-info + +DESCRIPTION="Shared-disk cluster file system" +HOMEPAGE="https://pagure.io/gfs2-utils" +SRC_URI="https://pagure.io/gfs2-utils/archive/${PV}/${P}.tar.gz" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="nls test" + + +BDEPEND="sys-devel/autoconf + sys-devel/automake + sys-devel/libtool + sys-devel/make +" +RDEPEND="sys-libs/zlib + app-arch/bzip2 + sys-libs/ncurses + sys-apps/util-linux +" + +DEPEND="${RDEPEND} + sys-devel/gettext + sys-devel/bison + sys-devel/flex + test? ( dev-libs/check ) + sys-kernel/linux-headers +" + +src_prepare() { + eapply "${FILESDIR}"/reproducible.patch + eapply "${FILESDIR}"/gfs2_withdraw_helper.patch + eapply "${FILESDIR}"/python3.patch + default + ./autogen.sh + eautoreconf +} + +src_configure() { + local econf_args + econf_args=( + bzip2_LIBS="-L/$(get_libdir) -lbz2" + bzip2_CFLAGS="-I${prefix}/include" + ) + ECONF_SOURCE="${S}" econf "${econf_args[@]}" + +} + +src_compile() { + emake +} + +src_install() { + emake DESTDIR="${D}" install +}