public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Robin H. Johnson" <robbat2@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/mdadm/
Date: Mon, 19 Feb 2024 22:32:01 +0000 (UTC)	[thread overview]
Message-ID: <1708381912.472cbf6119a834698effe44ed3d00f1c6109aecf.robbat2@gentoo> (raw)

commit:     472cbf6119a834698effe44ed3d00f1c6109aecf
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 19 22:31:21 2024 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Feb 19 22:31:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=472cbf61

sys-fs/mdadm: cleanup

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 sys-fs/mdadm/Manifest         |  2 -
 sys-fs/mdadm/mdadm-4.1.ebuild | 94 -------------------------------------------
 2 files changed, 96 deletions(-)

diff --git a/sys-fs/mdadm/Manifest b/sys-fs/mdadm/Manifest
index d352735ae923..961f422d5fb6 100644
--- a/sys-fs/mdadm/Manifest
+++ b/sys-fs/mdadm/Manifest
@@ -1,4 +1,2 @@
-DIST mdadm-4.1.tar.xz 440756 BLAKE2B df0506d937c2aa309d7c68804f66f7dcd51783288594bf746832311c64b8cf82004af4af5f246c5f9753f1de324ff7d49b5ee752d6a00ec03864f7885389706e SHA512 0859c5d3e786345d93ff2c3b291ca8866ba60f1375479e5b4d343124f6824140a8268d42b8ae603b069edba761aa30aaf20d49e9ec54dfcbad34bad3bea0e433
 DIST mdadm-4.2.tar.xz 453624 BLAKE2B de7c4318dc5479de41378233869ab84ca2cd0e8a42310157b1acb969e7152af61556fbbe6f17bf6af4dfaf5543e49b1c982d2baeedf1c39b000032f4db7f5502 SHA512 57897a2b7fb8b0b88bece50501099872bb45ddb076cfc323d563588096d2b66b1ecba3724534943f651ace2bfe591482570700616500dc3398552e4f9ff0c37d
-DIST mdadm_4.1-3.debian.tar.xz 89640 BLAKE2B 3cb5e42dcbd218a71e55127cecda6f2594a1b1691e17c05f52a8cd0ba05b556d2812772e53d78de025738d7c2de059df3f878b8290ba3906b3d75ef435bfb698 SHA512 e9b04abf195d7bda9fb0197eb926c01a69b879ef82c72af6497116cea9be8f0823408dddbe5c6c033f5fae554a8fec17299e361fa48045e033c87dcee1a0bb63
 DIST mdadm_4.2~rc2-7.debian.tar.xz 89904 BLAKE2B dd04f2dd044d0bca85920eaf5c79a288d69c47a7ad7e36509a126c01ef63bd045d7e0530450650028de39d74ad852995ca080c3a73dbcb1cf1b3783118109f35 SHA512 3d36533d2713b663606919b2bfec18b15e18a6a0194e333e38e4a58f175da96af7b1fe16f0c36ee148e14492a4e0710b9fad6ac7856495b63c0176ebb7333be6

diff --git a/sys-fs/mdadm/mdadm-4.1.ebuild b/sys-fs/mdadm/mdadm-4.1.ebuild
deleted file mode 100644
index 21649c23547f..000000000000
--- a/sys-fs/mdadm/mdadm-4.1.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit flag-o-matic multilib systemd toolchain-funcs udev
-
-DESCRIPTION="Tool for running RAID systems - replacement for the raidtools"
-HOMEPAGE="https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git/"
-DEB_PF="4.1-3"
-SRC_URI="https://www.kernel.org/pub/linux/utils/raid/mdadm/${P/_/-}.tar.xz
-		mirror://debian/pool/main/m/mdadm/${PN}_${DEB_PF}.debian.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-[[ "${PV}" = *_rc* ]] || \
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86"
-IUSE="static"
-
-BDEPEND="virtual/pkgconfig
-	app-arch/xz-utils"
-RDEPEND=">=sys-apps/util-linux-2.16"
-DEPEND="${RDEPEND}"
-
-# The tests edit values in /proc and run tests on software raid devices.
-# Thus, they shouldn't be run on systems with active software RAID devices.
-RESTRICT="test"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-3.4-sysmacros.patch #580188
-)
-
-mdadm_emake() {
-	# We should probably make corosync & libdlm into USE flags. #573782
-	local args=(
-		PKG_CONFIG="$(tc-getPKG_CONFIG)"
-		CC="$(tc-getCC)"
-		CWFLAGS="-Wall"
-		CXFLAGS="${CFLAGS}"
-		UDEVDIR="$(get_udevdir)"
-		SYSTEMD_DIR="$(systemd_get_systemunitdir)"
-		COROSYNC="-DNO_COROSYNC"
-		DLM="-DNO_DLM"
-
-		# https://bugs.gentoo.org/732276
-		STRIP=
-
-		"$@"
-	)
-	emake "${args[@]}"
-}
-
-src_compile() {
-	use static && append-ldflags -static
-	mdadm_emake all
-}
-
-src_test() {
-	mdadm_emake test
-
-	sh ./test || die
-}
-
-src_install() {
-	mdadm_emake DESTDIR="${D}" install install-systemd
-	dodoc ChangeLog INSTALL TODO README* ANNOUNCE-*
-
-	insinto /etc
-	newins mdadm.conf-example mdadm.conf
-	newinitd "${FILESDIR}"/mdadm.rc mdadm
-	newconfd "${FILESDIR}"/mdadm.confd mdadm
-	newinitd "${FILESDIR}"/mdraid.rc mdraid
-	newconfd "${FILESDIR}"/mdraid.confd mdraid
-
-	# From the Debian patchset
-	into /usr
-	dodoc "${WORKDIR}"/debian/README.checkarray
-	dosbin "${WORKDIR}"/debian/checkarray
-	insinto /etc/default
-	newins "${FILESDIR}"/etc-default-mdadm mdadm
-
-	exeinto /etc/cron.weekly
-	newexe "${FILESDIR}"/mdadm.weekly mdadm
-}
-
-pkg_postinst() {
-	if ! systemd_is_booted; then
-		if [[ -z ${REPLACING_VERSIONS} ]] ; then
-			# Only inform people the first time they install.
-			elog "If you're not relying on kernel auto-detect of your RAID"
-			elog "devices, you need to add 'mdraid' to your 'boot' runlevel:"
-			elog "	rc-update add mdraid boot"
-		fi
-	fi
-}


             reply	other threads:[~2024-02-19 22:32 UTC|newest]

Thread overview: 78+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-19 22:32 Robin H. Johnson [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-14 18:18 [gentoo-commits] repo/gentoo:master commit in: sys-fs/mdadm/ Sam James
2025-03-11 14:18 Sam James
2025-03-11 14:18 Sam James
2025-03-11 14:18 Sam James
2025-03-11 14:18 Sam James
2025-03-11 14:11 Sam James
2025-03-11 14:11 Sam James
2025-03-11 14:11 Sam James
2025-02-27  8:42 Sam James
2025-02-23  2:00 Sam James
2025-02-16  4:15 Sam James
2025-02-15 19:39 Jakov Smolić
2025-02-13 12:00 Sam James
2025-02-13 11:49 Sam James
2025-02-13 11:34 Sam James
2025-02-13 11:34 Sam James
2025-02-13 11:34 Sam James
2025-02-13 11:34 Sam James
2024-09-12 14:36 Arthur Zamarin
2024-09-12 14:36 Arthur Zamarin
2024-08-25 12:04 Andreas K. Hüttel
2024-04-17  5:37 Arthur Zamarin
2024-03-24 12:12 Sam James
2024-03-24 11:37 Sam James
2024-03-24 11:35 Sam James
2024-03-24 11:29 Sam James
2024-03-24 11:29 Sam James
2024-03-24 11:29 Sam James
2024-03-24 11:29 Sam James
2024-03-03 16:50 Andreas K. Hüttel
2024-02-19 21:00 Robin H. Johnson
2023-09-11 15:35 Mike Gilbert
2023-04-03 18:38 Arthur Zamarin
2023-04-03 18:38 Arthur Zamarin
2023-03-04  8:18 Arthur Zamarin
2023-03-04  7:17 Arthur Zamarin
2023-03-04  6:17 Arthur Zamarin
2023-03-04  5:59 Arthur Zamarin
2023-03-04  5:55 Arthur Zamarin
2022-05-19  7:28 WANG Xuerui
2022-04-17 17:06 Sam James
2022-01-03  7:48 Sam James
2022-01-01 15:15 Lars Wendler
2021-11-04 17:53 Lars Wendler
2021-09-18  1:43 Yixun Lan
2021-09-10 20:16 Matt Turner
2021-08-04  8:19 Lars Wendler
2021-08-03 11:03 Sam James
2021-04-15 21:36 Lars Wendler
2021-03-05 19:02 Lars Wendler
2020-12-14 18:29 Mike Gilbert
2020-08-19 20:22 Sam James
2020-05-04 17:36 Thomas Deutschmann
2019-11-25 16:00 Thomas Deutschmann
2019-10-05 18:56 Michał Górny
2018-11-30  8:04 Lars Wendler
2018-11-28 16:05 Tobias Klausmann
2018-11-18 10:38 Sergei Trofimovich
2018-11-13 21:12 Robin H. Johnson
2018-11-11 11:15 Mikle Kolyada
2018-11-08 23:35 Sergei Trofimovich
2018-11-07 23:44 Thomas Deutschmann
2018-11-07 22:41 Sergei Trofimovich
2018-11-07  0:17 Sergei Trofimovich
2018-11-07  0:15 Sergei Trofimovich
2018-11-06 21:35 Mikle Kolyada
2018-10-26 23:58 Lars Wendler
2018-08-15 15:05 Lars Wendler
2018-03-27  9:13 Lars Wendler
2017-12-01 22:19 David Seifert
2017-02-17  6:04 Markus Meier
2017-01-10 19:05 Lars Wendler
2017-01-10  6:55 Jeroen Roovers
2017-01-06 14:33 Tobias Klausmann
2016-12-29 10:05 Agostino Sarubbo
2016-02-08 23:44 Mike Frysinger
2016-01-28 10:22 Lars Wendler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1708381912.472cbf6119a834698effe44ed3d00f1c6109aecf.robbat2@gentoo \
    --to=robbat2@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox