Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/adiff/
Date: Thu, 29 Jun 2017 21:17:47
Message-Id: 1498771061.e41916e4aa18e6593b81fdcd74d8f234509ee24e.monsieurp@gentoo
1 commit: e41916e4aa18e6593b81fdcd74d8f234509ee24e
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 29 21:17:28 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 29 21:17:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e41916e4
7
8 app-text/adiff: EAPI 6 bump. Update SRC_URI and HOMEPAGE.
9
10 Gentoo-Bug: https://bugs.gentoo.org/622878
11
12 Package-Manager: Portage-2.3.5, Repoman-2.3.1
13
14 app-text/adiff/adiff-1.4-r1.ebuild | 43 ++++++++++++++++++++++++++++++++++++++
15 1 file changed, 43 insertions(+)
16
17 diff --git a/app-text/adiff/adiff-1.4-r1.ebuild b/app-text/adiff/adiff-1.4-r1.ebuild
18 new file mode 100644
19 index 00000000000..1cb9bebd4b7
20 --- /dev/null
21 +++ b/app-text/adiff/adiff-1.4-r1.ebuild
22 @@ -0,0 +1,43 @@
23 +# Copyright 1999-2017 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +
28 +DESCRIPTION="Wordise diff"
29 +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
30 +SRC_URI="mirror://gentoo/${P}"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
35 +
36 +DEPEND="
37 + dev-lang/perl
38 + !app-arch/atool"
39 +
40 +RDEPEND="
41 + ${DEPEND}
42 + sys-apps/diffutils"
43 +
44 +S="${WORKDIR}"
45 +
46 +src_unpack() {
47 + :; # Nothing to unpack.
48 +}
49 +
50 +src_compile() {
51 + local _p2m=(
52 + --release=${PV}
53 + --center="${HOMEPAGE}"
54 + --date="2007-12-11"
55 + "${DISTDIR}"/${P}
56 + ${PN}.1
57 + )
58 +
59 + pod2man "${_p2m[@]}" || die
60 +}
61 +
62 +src_install() {
63 + newbin "${DISTDIR}/${P}" "${PN}"
64 + doman "${PN}.1"
65 +}