Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/coolkey/
Date: Fri, 24 Sep 2021 07:22:27
Message-Id: 1632468115.472095f7a63cd1858b9be22813e6752945abffc9.juippis@gentoo
1 commit: 472095f7a63cd1858b9be22813e6752945abffc9
2 Author: Christophe Lermytte <gentoo <AT> lermytte <DOT> be>
3 AuthorDate: Fri Sep 24 01:28:32 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 24 07:21:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=472095f7
7
8 app-crypt/coolkey: don't parallel install
9
10 Something fishy going on in docs/Makefile
11
12 install-data-hook:
13 rm -f $(DESTDIR)$(libdir)/libckyapplet.a
14 rm -f $(DESTDIR)$(libdir)/libckyapplet.la
15
16 but agreed with sam that it's not worth it to debug further
17 (seeing that upstream is dead and the src_compile is being
18 done -j1 as well.)
19
20 - Override src_install with its default but using '-j1'
21 - Update the copyright
22
23 Signed-off-by: Christophe Lermytte <gentoo <AT> lermytte.be>
24 Closes: https://github.com/gentoo/gentoo/pull/22381
25 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
26
27 app-crypt/coolkey/coolkey-1.1.0-r7.ebuild | 7 ++++++-
28 1 file changed, 6 insertions(+), 1 deletion(-)
29
30 diff --git a/app-crypt/coolkey/coolkey-1.1.0-r7.ebuild b/app-crypt/coolkey/coolkey-1.1.0-r7.ebuild
31 index cbb3e7161b8..61d16c1b67b 100644
32 --- a/app-crypt/coolkey/coolkey-1.1.0-r7.ebuild
33 +++ b/app-crypt/coolkey/coolkey-1.1.0-r7.ebuild
34 @@ -1,4 +1,4 @@
35 -# Copyright 1999-2018 Gentoo Foundation
36 +# Copyright 1999-2021 Gentoo Foundation
37 # Distributed under the terms of the GNU General Public License v2
38
39 EAPI=7
40 @@ -47,6 +47,11 @@ src_compile() {
41 emake CFLAGS+="-fno-strict-aliasing" -j1
42 }
43
44 +src_install() {
45 + emake DESTDIR="${D}" install -j1
46 + einstalldocs
47 +}
48 +
49 pkg_postinst() {
50 if [[ -x $dbdir ]]; then
51 if ! $(modutil -rawlist -dbdir $dbdir | grep libcoolkeypk11); then