Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtools/
Date: Sun, 20 Feb 2022 05:27:37
Message-Id: 1645334796.9a4536bd11495756c1f30b5e7a2e6281d80f59a0.sam@gentoo
1 commit: 9a4536bd11495756c1f30b5e7a2e6281d80f59a0
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 20 05:16:13 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 20 05:26:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a4536bd
7
8 sys-fs/mtools: drop 4.0.36
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-fs/mtools/Manifest | 1 -
13 sys-fs/mtools/mtools-4.0.36.ebuild | 46 --------------------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/sys-fs/mtools/Manifest b/sys-fs/mtools/Manifest
17 index 4e605b23911c..4d28b1eed9d4 100644
18 --- a/sys-fs/mtools/Manifest
19 +++ b/sys-fs/mtools/Manifest
20 @@ -1,3 +1,2 @@
21 DIST mtools-4.0.35.tar.bz2 455988 BLAKE2B 9c1ac7f3ad3f9f13a572d0e1ea3c3a9d79bd08f0ae963c7357a19a687b74536cd8442eb167a9e50f7d22398c56736753b0d98bccdaa4c7d8427d1c09e1dd786c SHA512 ef563b3319285667993c82d819e08cb819a6bcd71c466fc252568996b4218cfb3731107ffcd6150ba33c0837e012e02057def41e2b011f751eaf550bfa366a10
22 -DIST mtools-4.0.36.tar.bz2 445920 BLAKE2B 753ee3e412452572b36d15805982255f28bc277764ce66a0fe8483e19a3488fbb282b873a6be85e87e82a71bf7fda517e1234e1911f0b7c3f3992e25f8d18322 SHA512 2425ee0e39c06ea201a5303ab09a0aa9f0c59341522e2c15abc4f079320fd3d67d28afeb2870ee508d472bba6904c542e11c02b92652c8eda1bf338bab372d07
23 DIST mtools-4.0.37.tar.bz2 441076 BLAKE2B a84ff9e532a1896706589dfe7e62b1e400baf0ab9b86cc3d4a09bd4a0a24d1e86f504b9005c98765f62d735d227d0a1d5ab78354c587c88e2d42a4146d127dc1 SHA512 5ff4da9050dd5d5c0929dd9977866086085bd8fef577f3c6ce2ed6fb958eec2304db612c0766e6be1a048819e29f62023cb0f0a9464a84ed7cc21de9561fadce
24
25 diff --git a/sys-fs/mtools/mtools-4.0.36.ebuild b/sys-fs/mtools/mtools-4.0.36.ebuild
26 deleted file mode 100644
27 index 52f5d5207032..000000000000
28 --- a/sys-fs/mtools/mtools-4.0.36.ebuild
29 +++ /dev/null
30 @@ -1,46 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="7"
35 -
36 -inherit flag-o-matic
37 -
38 -DESCRIPTION="utilities to access MS-DOS disks from Unix without mounting them"
39 -HOMEPAGE="https://www.gnu.org/software/mtools/ https://savannah.gnu.org/projects/mtools"
40 -SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
41 -
42 -LICENSE="GPL-3"
43 -SLOT="0"
44 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x64-solaris"
45 -IUSE="X"
46 -
47 -RDEPEND="
48 - !elibc_glibc? ( virtual/libiconv )
49 - X? (
50 - x11-libs/libICE
51 - x11-libs/libXau
52 - x11-libs/libSM
53 - x11-libs/libX11
54 - x11-libs/libXt
55 - )"
56 -DEPEND="${RDEPEND}"
57 -
58 -src_configure() {
59 - use !elibc_glibc && use !elibc_musl && append-libs "-liconv" #447688
60 - local myeconfargs=(
61 - --sysconfdir="${EPREFIX}"/etc/mtools
62 - $(use_with X x)
63 - )
64 - econf "${myeconfargs[@]}"
65 -}
66 -
67 -src_install() {
68 - local -a DOCS=( README* Release.notes )
69 - default
70 -
71 - insinto /etc/mtools
72 - doins mtools.conf
73 -
74 - # default is fine
75 - sed -i -e '/^SAMPLE FILE$/s:^:#:' "${ED}"/etc/mtools/mtools.conf || die
76 -}