Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/mmv/
Date: Sat, 26 Sep 2020 19:40:38
Message-Id: 1601149215.0b394eec7ea1de980da01770fd966c34f233efec.bman@gentoo
1 commit: 0b394eec7ea1de980da01770fd966c34f233efec
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 26 19:17:07 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 26 19:40:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b394eec
7
8 app-misc/mmv: drop old EAPI=5
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 app-misc/mmv/mmv-1.01b_p18.ebuild | 49 ---------------------------------------
13 1 file changed, 49 deletions(-)
14
15 diff --git a/app-misc/mmv/mmv-1.01b_p18.ebuild b/app-misc/mmv/mmv-1.01b_p18.ebuild
16 deleted file mode 100644
17 index b494b21028b..00000000000
18 --- a/app-misc/mmv/mmv-1.01b_p18.ebuild
19 +++ /dev/null
20 @@ -1,49 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -inherit eutils flag-o-matic toolchain-funcs
27 -
28 -DEB_PATCH_VER=${PV#*_p}
29 -MY_VER=${PV%_p*}
30 -
31 -DESCRIPTION="Move/copy/append/link multiple files according to a set of wildcard patterns"
32 -HOMEPAGE="http://packages.debian.org/unstable/utils/mmv"
33 -SRC_URI="
34 - mirror://debian/pool/main/m/mmv/${PN}_${MY_VER}.orig.tar.gz
35 - mirror://debian/pool/main/m/mmv/${PN}_${MY_VER}-${DEB_PATCH_VER}.debian.tar.gz"
36 -
37 -LICENSE="LGPL-2"
38 -SLOT="0"
39 -KEYWORDS="~alpha amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
40 -IUSE=""
41 -
42 -S="${WORKDIR}"/${PN}-${MY_VER}.orig
43 -
44 -src_prepare() {
45 - epatch "${WORKDIR}"/debian/patches/*.diff
46 -}
47 -
48 -src_compile() {
49 - # i wonder how this works on other platforms if CFLAGS from makefile are
50 - # overridden, see bug #218082
51 - [[ ${CHOST} == *-interix* ]] && append-flags -DIS_SYSV -DHAS_RENAME -DHAS_DIRENT
52 - [[ ${CHOST} == *-interix* ]] || append-lfs-flags
53 -
54 - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
55 -}
56 -
57 -src_install() {
58 - dobin mmv
59 - dosym mmv /usr/bin/mcp
60 - dosym mmv /usr/bin/mln
61 - dosym mmv /usr/bin/mad
62 -
63 - doman mmv.1
64 - newman mmv.1 mcp.1
65 - newman mmv.1 mln.1
66 - newman mmv.1 mad.1
67 -
68 - dodoc ANNOUNCE "${WORKDIR}"/debian/{changelog,control}
69 -}