summaryrefslogtreecommitdiff
path: root/sys-fs/gfs2-utils
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /sys-fs/gfs2-utils
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'sys-fs/gfs2-utils')
-rw-r--r--sys-fs/gfs2-utils/Manifest2
-rw-r--r--sys-fs/gfs2-utils/files/bashism.patch14
-rw-r--r--sys-fs/gfs2-utils/files/ftbfs-gcc9.patch185
-rw-r--r--sys-fs/gfs2-utils/files/gfs2_withdraw_helper.patch16
-rw-r--r--sys-fs/gfs2-utils/files/python3.patch21
-rw-r--r--sys-fs/gfs2-utils/files/reproducible.patch91
-rw-r--r--sys-fs/gfs2-utils/files/restoremeta.patch59
-rw-r--r--sys-fs/gfs2-utils/files/udev-rules.patch10
-rw-r--r--sys-fs/gfs2-utils/gfs2-utils-3.4.1.ebuild62
-rw-r--r--sys-fs/gfs2-utils/gfs2-utils-3.5.1-r1.ebuild60
-rw-r--r--sys-fs/gfs2-utils/metadata.xml8
11 files changed, 0 insertions, 528 deletions
diff --git a/sys-fs/gfs2-utils/Manifest b/sys-fs/gfs2-utils/Manifest
deleted file mode 100644
index ccd559696c1e..000000000000
--- a/sys-fs/gfs2-utils/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST gfs2-utils-3.4.1.tar.gz 374633 BLAKE2B cbb46a150935950d817f28ce750a654b54a0e6c0bfe8fc6a08d812d51860c6b8c6833215b35af6cb7ae51a0e5eba7e3deab5520bbe3ee6de5dde414dd0a480a4 SHA512 f8d3412a383d2d0e8435196c95a5361a3b9e5ab581549e6d434f5a33791d666c80700ee93f53e1d31aa3c304b84b6d72596b0a77e0aa54b2d88ec988ffa3cf88
-DIST gfs2-utils-3.5.1.tar.gz 378029 BLAKE2B 87292006cb5b5ccbda151acbb11fc54b52fe6fdda2a13eb662939cb249501c9e595626bb98580036ea2950992457831b7079cd4bce14df3d9d501dd322a7a942 SHA512 84845751842cdbdc9a17925617875c186d1af839da85bb2680d6485fd04c77a274655c44ba4d01cd12758874daa5f019f9d6147a82ca0d8c8c7335849e3ae180
diff --git a/sys-fs/gfs2-utils/files/bashism.patch b/sys-fs/gfs2-utils/files/bashism.patch
deleted file mode 100644
index 67ed25224bab..000000000000
--- a/sys-fs/gfs2-utils/files/bashism.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Description: Fix bashism in test script
-Author: Valentin Vidic <Valentin.Vidic@CARNet.hr>
-Last-Update: 2018-05-30
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/tests/rgrifieldscheck.sh
-+++ b/tests/rgrifieldscheck.sh
-@@ -16,5 +16,5 @@
- exit 1
- fi
-
-- test $field = ri_bitbytes && let i++
-+ test $field = ri_bitbytes && i=$((i+1))
- done
diff --git a/sys-fs/gfs2-utils/files/ftbfs-gcc9.patch b/sys-fs/gfs2-utils/files/ftbfs-gcc9.patch
deleted file mode 100644
index edf4a4d5fcf3..000000000000
--- a/sys-fs/gfs2-utils/files/ftbfs-gcc9.patch
+++ /dev/null
@@ -1,185 +0,0 @@
-commit 222e97c23dd015a8fc4bcceb598720cc17337edf
-Author: Andrew Price <anprice@redhat.com>
-Date: Mon Feb 4 14:54:34 2019 +0000
-
- Fix libuuid linking
-
- Fixes a build failure in Rawhide.
-
- Signed-off-by: Andrew Price <anprice@redhat.com>
-
-diff --git a/gfs2/libgfs2/Makefile.am b/gfs2/libgfs2/Makefile.am
-index 749da85a..76df920e 100644
---- a/gfs2/libgfs2/Makefile.am
-+++ b/gfs2/libgfs2/Makefile.am
-@@ -54,8 +54,9 @@ libgfs2_la_CPPFLAGS = \
- $(uuid_CFLAGS)
-
- gfs2l_SOURCES = gfs2l.c
--gfs2l_LDADD = libgfs2.la
--gfs2l_LDFLAGS = $(uuid_LIBS)
-+gfs2l_LDADD = \
-+ libgfs2.la \
-+ $(uuid_LIBS)
- gfs2l_CPPFLAGS = \
- -I$(top_srcdir)/gfs2/include \
- -D_FILE_OFFSET_BITS=64
-commit 1a92a964c8ba87d95b2f43b0adc3d351a7f7ba80
-Author: Andrew Price <anprice@redhat.com>
-Date: Mon Feb 4 15:31:33 2019 +0000
-
- Fix more linking errors
-
- Signed-off-by: Andrew Price <anprice@redhat.com>
-
-diff --git a/gfs2/convert/Makefile.am b/gfs2/convert/Makefile.am
-index 4db643fb..2d61af74 100644
---- a/gfs2/convert/Makefile.am
-+++ b/gfs2/convert/Makefile.am
-@@ -7,5 +7,6 @@ gfs2_convert_CPPFLAGS = \
- -I$(top_srcdir)/gfs2/include \
- -I$(top_srcdir)/gfs2/libgfs2
-
--gfs2_convert_LDADD = $(top_builddir)/gfs2/libgfs2/libgfs2.la
--gfs2_convert_LDFLAGS = $(uuid_LIBS)
-+gfs2_convert_LDADD = \
-+ $(top_builddir)/gfs2/libgfs2/libgfs2.la \
-+ $(uuid_LIBS)
-diff --git a/gfs2/edit/Makefile.am b/gfs2/edit/Makefile.am
-index a9b177e9..4a89502c 100644
---- a/gfs2/edit/Makefile.am
-+++ b/gfs2/edit/Makefile.am
-@@ -25,9 +25,9 @@ gfs2_edit_CFLAGS = \
- $(zlib_CFLAGS) \
- $(uuid_CFLAGS)
-
--gfs2_edit_LDFLAGS = \
-+gfs2_edit_LDADD = \
-+ $(top_builddir)/gfs2/libgfs2/libgfs2.la \
- $(ncurses_LIBS) \
- $(zlib_LIBS) \
- $(uuid_LIBS)
-
--gfs2_edit_LDADD = $(top_builddir)/gfs2/libgfs2/libgfs2.la
-diff --git a/gfs2/fsck/Makefile.am b/gfs2/fsck/Makefile.am
-index 97fcd404..1c528051 100644
---- a/gfs2/fsck/Makefile.am
-+++ b/gfs2/fsck/Makefile.am
-@@ -36,6 +36,5 @@ fsck_gfs2_CPPFLAGS = \
- -I$(top_srcdir)/gfs2/libgfs2
-
- fsck_gfs2_LDADD = \
-- $(top_builddir)/gfs2/libgfs2/libgfs2.la
--fsck_gfs2_LDFLAGS = \
-+ $(top_builddir)/gfs2/libgfs2/libgfs2.la \
- $(uuid_LIBS)
-diff --git a/gfs2/glocktop/Makefile.am b/gfs2/glocktop/Makefile.am
-index 1102c8e2..f5076554 100644
---- a/gfs2/glocktop/Makefile.am
-+++ b/gfs2/glocktop/Makefile.am
-@@ -9,10 +9,6 @@ glocktop_SOURCES = \
- glocktop_CFLAGS = \
- $(ncurses_CFLAGS)
-
--glocktop_LDFLAGS = \
-- $(ncurses_LIBS) \
-- $(uuid_LIBS)
--
- glocktop_CPPFLAGS = \
- -D_FILE_OFFSET_BITS=64 \
- -D_LARGEFILE64_SOURCE \
-@@ -21,4 +17,6 @@ glocktop_CPPFLAGS = \
- -I$(top_srcdir)/gfs2/libgfs2
-
- glocktop_LDADD = \
-- $(top_builddir)/gfs2/libgfs2/libgfs2.la
-+ $(top_builddir)/gfs2/libgfs2/libgfs2.la \
-+ $(ncurses_LIBS) \
-+ $(uuid_LIBS)
-diff --git a/gfs2/mkfs/Makefile.am b/gfs2/mkfs/Makefile.am
-index f0dd961c..fd7145b8 100644
---- a/gfs2/mkfs/Makefile.am
-+++ b/gfs2/mkfs/Makefile.am
-@@ -25,10 +25,10 @@ mkfs_gfs2_CPPFLAGS = $(COMMON_CPPFLAGS)
- mkfs_gfs2_CFLAGS = \
- $(blkid_CFLAGS) \
- $(uuid_CFLAGS)
--mkfs_gfs2_LDFLAGS = \
-+mkfs_gfs2_LDADD = \
-+ $(top_builddir)/gfs2/libgfs2/libgfs2.la \
- $(blkid_LIBS) \
- $(uuid_LIBS)
--mkfs_gfs2_LDADD = $(top_builddir)/gfs2/libgfs2/libgfs2.la
-
- gfs2_grow_SOURCES = \
- main_grow.c \
-@@ -36,16 +36,17 @@ gfs2_grow_SOURCES = \
-
- gfs2_grow_CPPFLAGS = $(COMMON_CPPFLAGS)
- gfs2_grow_CFLAGS = $(blkid_CFLAGS)
--gfs2_grow_LDFLAGS = \
-+gfs2_grow_LDADD = \
-+ $(top_builddir)/gfs2/libgfs2/libgfs2.la \
- $(blkid_LIBS) \
- $(uuid_LIBS)
--gfs2_grow_LDADD = $(top_builddir)/gfs2/libgfs2/libgfs2.la
-
- gfs2_jadd_SOURCES = \
- main_jadd.c \
- metafs.c
-
- gfs2_jadd_CPPFLAGS = $(COMMON_CPPFLAGS)
--gfs2_jadd_LDADD = $(top_builddir)/gfs2/libgfs2/libgfs2.la
--gfs2_jadd_LDFLAGS = $(uuid_LIBS)
-+gfs2_jadd_LDADD = \
-+ $(top_builddir)/gfs2/libgfs2/libgfs2.la \
-+ $(uuid_LIBS)
-
-diff --git a/gfs2/tune/Makefile.am b/gfs2/tune/Makefile.am
-index 7628f424..171377d0 100644
---- a/gfs2/tune/Makefile.am
-+++ b/gfs2/tune/Makefile.am
-@@ -13,5 +13,5 @@ tunegfs2_CPPFLAGS = \
- -I$(top_srcdir)/group/include
- tunegfs2_CFLAGS = \
- $(uuid_CFLAGS)
--tunegfs2_LDFLAGS = \
-+tunegfs2_LDADD = \
- $(uuid_LIBS)
-diff --git a/tests/Makefile.am b/tests/Makefile.am
-index 40fcfb47..40b486b0 100644
---- a/tests/Makefile.am
-+++ b/tests/Makefile.am
-@@ -26,8 +26,7 @@ nukerg_CFLAGS = \
- -I$(top_srcdir)/gfs2/libgfs2 \
- -I$(top_srcdir)/gfs2/include
- nukerg_LDADD = \
-- $(top_builddir)/gfs2/libgfs2/libgfs2.la
--nukerg_LDFLAGS = \
-+ $(top_builddir)/gfs2/libgfs2/libgfs2.la \
- $(uuid_LIBS)
-
- if HAVE_CHECK
-@@ -54,16 +53,18 @@ check_meta_SOURCES = \
- $(UNIT_SOURCES) \
- check_meta.c
- check_meta_CFLAGS = $(UNIT_CFLAGS)
--check_meta_LDADD = $(UNIT_LDADD)
--check_meta_LDFLAGS = $(uuid_LIBS)
-+check_meta_LDADD = \
-+ $(UNIT_LDADD) \
-+ $(uuid_LIBS)
- check_meta_CPPFLAGS = $(UNIT_CPPFLAGS)
-
- check_rgrp_SOURCES = \
- $(UNIT_SOURCES) \
- check_rgrp.c
- check_rgrp_CFLAGS = $(UNIT_CFLAGS)
--check_rgrp_LDADD = $(UNIT_LDADD)
--check_rgrp_LDFLAGS = $(uuid_LIBS)
-+check_rgrp_LDADD = \
-+ $(UNIT_LDADD) \
-+ $(uuid_LIBS)
- check_rgrp_CPPFLAGS = $(UNIT_CPPFLAGS)
- endif
-
diff --git a/sys-fs/gfs2-utils/files/gfs2_withdraw_helper.patch b/sys-fs/gfs2-utils/files/gfs2_withdraw_helper.patch
deleted file mode 100644
index 9c4364a64649..000000000000
--- a/sys-fs/gfs2-utils/files/gfs2_withdraw_helper.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Description: update udev script to work in Debian
-Author: Valentin Vidic <Valentin.Vidic@CARNet.hr>
-Last-Update: 2018-04-05
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/gfs2/scripts/gfs2_withdraw_helper
-+++ b/gfs2/scripts/gfs2_withdraw_helper
-@@ -19,7 +19,7 @@
-
- if [ -z "$DM_DEV" ]
- then
-- /usr/bin/dmsetup suspend $DM_DEV
-+ /sbin/dmsetup suspend $DM_DEV
- fi
-
- # Signal completion of withdraw
diff --git a/sys-fs/gfs2-utils/files/python3.patch b/sys-fs/gfs2-utils/files/python3.patch
deleted file mode 100644
index b90959aefc9e..000000000000
--- a/sys-fs/gfs2-utils/files/python3.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Description: update python scripts for python3
-Author: Valentin Vidic <Valentin.Vidic@CARNet.hr>
-Last-Update: 2018-04-05
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/gfs2/scripts/gfs2_lockcapture
-+++ b/gfs2/scripts/gfs2_lockcapture
-@@ -1,4 +1,4 @@
--#!/usr/bin/python
-+#!/usr/bin/python3
- """
- The script "gfs2_lockcapture" will capture locking information from GFS2 file
- systems and DLM.
---- a/gfs2/scripts/gfs2_trace
-+++ b/gfs2/scripts/gfs2_trace
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+#!/usr/bin/python3
- """
- This script will enable or disable trace events for GFS2. The script can capture
- trace events and write the trace events captured to a file.
diff --git a/sys-fs/gfs2-utils/files/reproducible.patch b/sys-fs/gfs2-utils/files/reproducible.patch
deleted file mode 100644
index 9c957601fac0..000000000000
--- a/sys-fs/gfs2-utils/files/reproducible.patch
+++ /dev/null
@@ -1,91 +0,0 @@
-Description: make build reproducible
- Don't include build date and time in binaries.
-Author: Valentin Vidic <Valentin.Vidic@CARNet.hr>
-Last-Update: 2018-04-05
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/gfs2/convert/gfs2_convert.c
-+++ b/gfs2/convert/gfs2_convert.c
-@@ -1699,8 +1699,7 @@
- /* ------------------------------------------------------------------------- */
- static void version(void)
- {
-- log_notice(_("gfs2_convert version %s (built %s %s)\n"), VERSION,
-- __DATE__, __TIME__);
-+ log_notice(_("gfs2_convert version %s\n"), VERSION);
- log_notice("%s\n\n", REDHAT_COPYRIGHT);
- }
-
---- a/gfs2/edit/hexedit.c
-+++ b/gfs2/edit/hexedit.c
-@@ -2396,8 +2396,8 @@
- static void parameterpass1(int argc, char *argv[], int i)
- {
- if (!strcasecmp(argv[i], "-V")) {
-- printf("%s version %s (built %s %s)\n",
-- argv[0], VERSION, __DATE__, __TIME__);
-+ printf("%s version %s\n",
-+ argv[0], VERSION);
- printf("%s\n", REDHAT_COPYRIGHT);
- exit(0);
- }
---- a/gfs2/fsck/main.c
-+++ b/gfs2/fsck/main.c
-@@ -62,8 +62,8 @@
-
- static void version(void)
- {
-- printf( _("GFS2 fsck %s (built %s %s)\n"),
-- VERSION, __DATE__, __TIME__);
-+ printf( _("GFS2 fsck %s\n"),
-+ VERSION);
- printf(REDHAT_COPYRIGHT "\n");
- }
-
---- a/gfs2/mkfs/main_grow.c
-+++ b/gfs2/mkfs/main_grow.c
-@@ -100,8 +100,7 @@
- override_device_size <<= 20;
- break;
- case 'V':
-- printf(_("%s %s (built %s %s)\n"), argv[0],
-- VERSION, __DATE__, __TIME__);
-+ printf(_("%s %s\n"), argv[0], VERSION);
- printf(REDHAT_COPYRIGHT "\n");
- exit(0);
- case 'h':
---- a/gfs2/mkfs/main_jadd.c
-+++ b/gfs2/mkfs/main_jadd.c
-@@ -180,8 +180,7 @@
- opts->quiet = 1;
- break;
- case 'V':
-- printf("gfs2_jadd %s (built %s %s)\n", VERSION,
-- __DATE__, __TIME__);
-+ printf("gfs2_jadd %s\n", VERSION);
- printf(REDHAT_COPYRIGHT "\n");
- exit(0);
- break;
---- a/gfs2/mkfs/main_mkfs.c
-+++ b/gfs2/mkfs/main_mkfs.c
-@@ -374,8 +374,7 @@
- opt_parse_extended(optarg, opts);
- break;
- case 'V':
-- printf("mkfs.gfs2 %s (built %s %s)\n", VERSION,
-- __DATE__, __TIME__);
-+ printf("mkfs.gfs2 %s\n", VERSION);
- printf(REDHAT_COPYRIGHT "\n");
- exit(EXIT_SUCCESS);
- break;
---- a/gfs2/tune/main.c
-+++ b/gfs2/tune/main.c
-@@ -59,7 +59,7 @@
-
- static void version(void)
- {
-- printf("tunegfs2 (%s %s)\n", __DATE__, __TIME__);
-+ printf("tunegfs2\n");
- }
-
- int main(int argc, char **argv)
diff --git a/sys-fs/gfs2-utils/files/restoremeta.patch b/sys-fs/gfs2-utils/files/restoremeta.patch
deleted file mode 100644
index ba8f911fec8c..000000000000
--- a/sys-fs/gfs2-utils/files/restoremeta.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-From eb1020191f7743f451442096db8635643c5fddb1 Mon Sep 17 00:00:00 2001
-From: Andrew Price <anprice@redhat.com>
-Date: Sep 05 2020 23:59:02 +0000
-Subject: restoremeta: Fix unaligned access in restore_init()
-
-On sparc64 we get restoremeta tests failing with SIGBUS due to an
-unaligned access when scanning for the super block offset in the
-metadata file. memcpy the buffer into a gfs2_sb struct to avoid that. In
-most cases, if not always, this loop succeeds on the first iteration
-and might not even be needed, so the added overhead is minimal.
-
-diff --git a/gfs2/edit/savemeta.c b/gfs2/edit/savemeta.c
-index 80c11c9..32e1f70 100644
---- a/gfs2/edit/savemeta.c
-+++ b/gfs2/edit/savemeta.c
-@@ -1251,7 +1251,7 @@ nobuffer:
- return NULL;
- }
-
--static int restore_super(struct metafd *mfd, char *buf, int printonly)
-+static int restore_super(struct metafd *mfd, void *buf, int printonly)
- {
- int ret;
-
-@@ -1337,7 +1337,7 @@ static void complain(const char *complaint)
-
- static int restore_init(const char *path, struct metafd *mfd, struct savemeta_header *smh, int printonly)
- {
-- struct gfs2_meta_header *sbmh;
-+ struct gfs2_sb rsb;
- uint16_t sb_siglen;
- char *end;
- char *bp;
-@@ -1372,12 +1372,12 @@ static int restore_init(const char *path, struct metafd *mfd, struct savemeta_he
- return -1;
- }
- /* Scan for the position of the superblock. Required to support old formats(?). */
-- end = &restore_buf[256 + sizeof(struct saved_metablock) + sizeof(*sbmh)];
-+ end = &restore_buf[256 + sizeof(struct saved_metablock) + sizeof(struct gfs2_meta_header)];
- while (bp <= end) {
-+ memcpy(&rsb, bp + sizeof(struct saved_metablock), sizeof(rsb));
- sb_siglen = be16_to_cpu(((struct saved_metablock *)bp)->siglen);
-- sbmh = (struct gfs2_meta_header *)(bp + sizeof(struct saved_metablock));
-- if (sbmh->mh_magic == cpu_to_be32(GFS2_MAGIC) &&
-- sbmh->mh_type == cpu_to_be32(GFS2_METATYPE_SB))
-+ if (be32_to_cpu(rsb.sb_header.mh_magic) == GFS2_MAGIC &&
-+ be32_to_cpu(rsb.sb_header.mh_type) == GFS2_METATYPE_SB)
- break;
- bp++;
- }
-@@ -1386,7 +1386,7 @@ static int restore_init(const char *path, struct metafd *mfd, struct savemeta_he
- return -1;
- }
- bp += sizeof(struct saved_metablock);
-- ret = restore_super(mfd, bp, printonly);
-+ ret = restore_super(mfd, &rsb, printonly);
- if (ret != 0)
- return ret;
-
diff --git a/sys-fs/gfs2-utils/files/udev-rules.patch b/sys-fs/gfs2-utils/files/udev-rules.patch
deleted file mode 100644
index 82d1f8384245..000000000000
--- a/sys-fs/gfs2-utils/files/udev-rules.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- gfs2-utils-3.2.0/gfs2/scripts/Makefile.am 2018-05-23 22:04:16.000000000 +0200
-+++ gfs2-utils-3.2.0.new/gfs2/scripts/Makefile.am 2020-02-10 15:16:08.262116412 +0100
-@@ -5,6 +5,6 @@
- gfs2_trace \
- gfs2_withdraw_helper
-
--udevrulesdir=@udevdir@/rules.d
-+udevrulesdir=/lib/udev/rules.d
- dist_udevrules_DATA = \
- 82-gfs2-withdraw.rules
diff --git a/sys-fs/gfs2-utils/gfs2-utils-3.4.1.ebuild b/sys-fs/gfs2-utils/gfs2-utils-3.4.1.ebuild
deleted file mode 100644
index 8a6d5b1712cf..000000000000
--- a/sys-fs/gfs2-utils/gfs2-utils-3.4.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools 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"
-RESTRICT="!test? ( test )"
-
-BDEPEND="dev-build/automake
- dev-build/automake
- dev-build/libtool
- dev-build/make
-"
-RDEPEND="virtual/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
- 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
-}
diff --git a/sys-fs/gfs2-utils/gfs2-utils-3.5.1-r1.ebuild b/sys-fs/gfs2-utils/gfs2-utils-3.5.1-r1.ebuild
deleted file mode 100644
index b1255cf4072e..000000000000
--- a/sys-fs/gfs2-utils/gfs2-utils-3.5.1-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools 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"
-RESTRICT="!test? ( test )"
-
-BDEPEND="dev-build/automake
- dev-build/automake
- dev-build/libtool
- dev-build/make
-"
-RDEPEND="virtual/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
-
- sed -e '/^CFLAGS=/s!\s*\$\(GDB_FLAGS\|OPT_CFLAGS\)!!g' \
- -e '/^CPPFLAGS=/s!\s*\$OPT_CPPFLAGS!!' \
- -i configure.ac || die
-
- default
-
- 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[@]}"
-
-}
diff --git a/sys-fs/gfs2-utils/metadata.xml b/sys-fs/gfs2-utils/metadata.xml
deleted file mode 100644
index c6fea9f9d60d..000000000000
--- a/sys-fs/gfs2-utils/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>andrea.postiglione@gmail.com</email>
- <name>Andrea Postiglione</name>
- </maintainer>
-</pkgmetadata>