Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: app-text/skribilo/
Date: Thu, 01 Mar 2018 08:18:37
Message-Id: 1519892315.de500314e26cfe01094ec63ff990000ee7712b61.nimiux@gentoo
1 commit: de500314e26cfe01094ec63ff990000ee7712b61
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 1 08:18:35 2018 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 1 08:18:35 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=de500314
7
8 app-text/skribilo: Updates header and EAPI
9
10 app-text/skribilo/skribilo-0.9.1.ebuild | 15 +++++++--------
11 app-text/skribilo/skribilo-0.9.2.ebuild | 13 ++++++-------
12 2 files changed, 13 insertions(+), 15 deletions(-)
13
14 diff --git a/app-text/skribilo/skribilo-0.9.1.ebuild b/app-text/skribilo/skribilo-0.9.1.ebuild
15 index ddde7487..8eeaab0b 100644
16 --- a/app-text/skribilo/skribilo-0.9.1.ebuild
17 +++ b/app-text/skribilo/skribilo-0.9.1.ebuild
18 @@ -1,8 +1,7 @@
19 -# Copyright 1999-2015 Gentoo Foundation
20 +# Copyright 1999-2018 Gentoo Foundation
21 # Distributed under the terms of the GNU General Public License v2
22 -# $Header: $
23
24 -EAPI=5
25 +EAPI=6
26
27 inherit eutils
28
29 @@ -16,7 +15,7 @@ KEYWORDS="~amd64 ~x86"
30 IUSE=""
31
32 DEPEND="\
33 - >=dev-scheme/guile-1.8
34 + >=dev-scheme/guile-1.8:12
35 >=dev-scheme/guile-reader-0.3
36 >=app-text/lout-3.36
37 media-libs/ploticus"
38 @@ -27,17 +26,17 @@ RDEPEND="${DEPEND}"
39
40 src_unpack() {
41 unpack ${A}
42 - cd "${S}"
43 + cd "${S}" || die
44 }
45
46 src_configure() {
47 - econf --with-guilemoduledir=/usr/share/guile/site || die "econf failed"
48 + econf --with-guilemoduledir=/usr/share/guile/site
49 }
50
51 src_compile() {
52 - emake -j1 || die "emake failed"
53 + emake -j1
54 }
55
56 src_install() {
57 - emake DESTDIR="${D}" install || die "emake install failed"
58 + emake DESTDIR="${D}" install
59 }
60
61 diff --git a/app-text/skribilo/skribilo-0.9.2.ebuild b/app-text/skribilo/skribilo-0.9.2.ebuild
62 index 4b09221c..85fb92e5 100644
63 --- a/app-text/skribilo/skribilo-0.9.2.ebuild
64 +++ b/app-text/skribilo/skribilo-0.9.2.ebuild
65 @@ -1,8 +1,7 @@
66 -# Copyright 1999-2015 Gentoo Foundation
67 +# Copyright 1999-2018 Gentoo Foundation
68 # Distributed under the terms of the GNU General Public License v2
69 -# $Header: $
70
71 -EAPI=5
72 +EAPI=6
73
74 inherit eutils
75
76 @@ -25,17 +24,17 @@ RDEPEND="${DEPEND}"
77
78 src_unpack() {
79 unpack ${A}
80 - cd "${S}"
81 + cd "${S}" || die
82 }
83
84 src_configure() {
85 - econf --with-guilemoduledir=/usr/share/guile/site || die "econf failed"
86 + econf --with-guilemoduledir=/usr/share/guile/site
87 }
88
89 src_compile() {
90 - emake -j1 || die "emake failed"
91 + emake -j1
92 }
93
94 src_install() {
95 - emake DESTDIR="${D}" install || die "emake install failed"
96 + emake DESTDIR="${D}" install
97 }