Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/antixls/
Date: Fri, 05 Jan 2018 12:52:38
Message-Id: 1515156744.90bf1a7c527ccdb703581cd57150020dff72762c.grobian@gentoo
1 commit: 90bf1a7c527ccdb703581cd57150020dff72762c
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 12:48:46 2018 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 12:52:24 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90bf1a7c
7
8 app-text/antixls: EAPI-bump
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11
12 app-text/antixls/antixls-0.3b.ebuild | 9 ++++++++-
13 1 file changed, 8 insertions(+), 1 deletion(-)
14
15 diff --git a/app-text/antixls/antixls-0.3b.ebuild b/app-text/antixls/antixls-0.3b.ebuild
16 index a29d5e2b75c..53e29234db5 100644
17 --- a/app-text/antixls/antixls-0.3b.ebuild
18 +++ b/app-text/antixls/antixls-0.3b.ebuild
19 @@ -1,6 +1,8 @@
20 # Copyright 1999-2018 Gentoo Foundation
21 # Distributed under the terms of the GNU General Public License v2
22
23 +EAPI=6
24 +
25 DESCRIPTION="Print out an XLS file with minimal formatting, or extract the data into CSV"
26 HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
27 SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.perl"
28 @@ -9,8 +11,13 @@ SLOT="0"
29 KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
30 IUSE=""
31 DEPEND="dev-perl/Spreadsheet-ParseExcel"
32 +RDEPEND="${DEPEND}"
33 +
34 +src_unpack() {
35 + mkdir "${S}" || die
36 + cp "${DISTDIR}/${P}.perl" "${S}"/${PN} || die
37 +}
38
39 src_install() {
40 - mv "${DISTDIR}/${P}.perl" ${PN}
41 dobin ${PN}
42 }