Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-misc/mendeleydesktop/
Date: Sun, 30 Nov 2014 13:34:45
Message-Id: 1417268176.7b5f1838ec07132a348dbec811411f769359446b.jlec@gentoo
1 commit: 7b5f1838ec07132a348dbec811411f769359446b
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Sat Nov 29 13:36:16 2014 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 29 13:36:16 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7b5f1838
7
8 sci-misc/mendeleydesktop: fix missing die, EAPI and QA flags
9
10 ---
11 sci-misc/mendeleydesktop/mendeleydesktop-1.12.3.ebuild | 10 +++++-----
12 1 file changed, 5 insertions(+), 5 deletions(-)
13
14 diff --git a/sci-misc/mendeleydesktop/mendeleydesktop-1.12.3.ebuild b/sci-misc/mendeleydesktop/mendeleydesktop-1.12.3.ebuild
15 index f79a0df..690672d 100644
16 --- a/sci-misc/mendeleydesktop/mendeleydesktop-1.12.3.ebuild
17 +++ b/sci-misc/mendeleydesktop/mendeleydesktop-1.12.3.ebuild
18 @@ -2,7 +2,7 @@
19 # Distributed under the terms of the GNU General Public License v2
20 # $Header: $
21
22 -EAPI="4"
23 +EAPI="5"
24
25 inherit eutils multilib
26
27 @@ -30,7 +30,7 @@ RDEPEND=">=dev-qt/qtcore-4.6:4
28 >=dev-qt/qtwebkit-4.6:4
29 >=dev-qt/qtxmlpatterns-4.6:4"
30
31 -QA_FLAGS_IGNORED="
32 +QA_PREBUILT="
33 /opt/mendeleydesktop/lib64/libMendeley.so.${PV}
34 /opt/mendeleydesktop/lib64/libPDFNetC.so
35 /opt/mendeleydesktop/lib64/mendeleydesktop/libexec/Updater
36 @@ -56,12 +56,12 @@ pkg_nofetch() {
37 src_unpack() {
38 unpack ${A}
39
40 - cd "${WORKDIR}"
41 + cd "${WORKDIR}" || die
42
43 if use amd64 || use amd64-linux ; then
44 - mv -f "${MY_P_AMD64}" "${P}"
45 + mv -f "${MY_P_AMD64}" "${P}" || die
46 else
47 - mv -f "${MY_P_X86}" "${P}"
48 + mv -f "${MY_P_X86}" "${P}" || die
49 fi
50 }