Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/xca/
Date: Tue, 02 Apr 2019 10:32:18
Message-Id: 1554201095.c820ae8c0e35a10e23380d97347192dc57ee6f58.alonbl@gentoo
1 commit: c820ae8c0e35a10e23380d97347192dc57ee6f58
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 2 10:31:26 2019 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 2 10:31:35 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c820ae8c
7
8 app-crypt/xca: cleanup old
9
10 Signed-off-by: Alon Bar-Lev <alonbl <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 app-crypt/xca/Manifest | 1 -
14 app-crypt/xca/xca-1.4.1.ebuild | 60 ------------------------------------------
15 2 files changed, 61 deletions(-)
16
17 diff --git a/app-crypt/xca/Manifest b/app-crypt/xca/Manifest
18 index a1f00f730b1..43fb629c555 100644
19 --- a/app-crypt/xca/Manifest
20 +++ b/app-crypt/xca/Manifest
21 @@ -1,2 +1 @@
22 -DIST xca-1.4.1.tar.gz 959107 BLAKE2B 7437cdbaa5277998de200e9a5ad3a7d44aed9ae8af8fd926d7ed1917d49bec79562455ca2e82557149d748840f299ffd66edfc7f265be7d5bdcd6e4fe8dbaf9b SHA512 8294669c4887ba7a9060c3c2c06014b8a1807898569842ed61c066e8a864de014fba51a2ff867b579048083fdd4934cc7f97c92268de4944bf4aafea9c2e7b42
23 DIST xca-2.1.2.tar.gz 1086563 BLAKE2B d48727fffad16d840633af6e0ee38a279978a5b865eb6f391a3d852a0105817254ea0a4780875f2956e1f7e9931e6930c6ffbe82b117dbf8ad0058ec9d6f5c88 SHA512 1f104a22b83b802576b4820b7139971da50f9b3dd70aca8e1199e996bad4379b8681bb31b197b84a3dfa49cef4ae093f6622d15fac9667547ff47af43c1e5f07
24
25 diff --git a/app-crypt/xca/xca-1.4.1.ebuild b/app-crypt/xca/xca-1.4.1.ebuild
26 deleted file mode 100644
27 index 27a4d7c8af8..00000000000
28 --- a/app-crypt/xca/xca-1.4.1.ebuild
29 +++ /dev/null
30 @@ -1,60 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="6"
35 -
36 -inherit xdg-utils
37 -
38 -DESCRIPTION="A GUI to OpenSSL, RSA public keys, certificates, signing requests etc"
39 -HOMEPAGE="https://hohnstaedt.de/xca/"
40 -SRC_URI="https://github.com/chris2511/${PN}/releases/download/RELEASE.${PV}/${P}.tar.gz"
41 -
42 -LICENSE="BSD"
43 -SLOT="0"
44 -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
45 -IUSE="bindist doc libressl"
46 -
47 -RDEPEND="
48 - dev-libs/libltdl:0=
49 - dev-qt/qtgui:5
50 - dev-qt/qtwidgets:5
51 - !libressl? ( dev-libs/openssl:0=[bindist=] )
52 - libressl? ( dev-libs/libressl:0= )
53 - doc? ( app-text/linuxdoc-tools )"
54 -DEPEND="${RDEPEND}
55 - dev-qt/linguist-tools:5"
56 -
57 -PATCHES=(
58 - "${FILESDIR}/${PN}-1.0.0-desktop.patch"
59 -)
60 -
61 -src_configure() {
62 - econf \
63 - --with-qt-version=5 \
64 - $(use_enable doc) \
65 - STRIP=true
66 -}
67 -
68 -src_compile() {
69 - # enforce all to avoid the automatic silent rules
70 - emake all
71 -}
72 -
73 -src_install() {
74 - # non standard destdir
75 - emake install destdir="${ED}"
76 - einstalldocs
77 -
78 - insinto /etc/xca
79 - doins misc/*.txt
80 -}
81 -
82 -pkg_postinst() {
83 - xdg_desktop_database_update
84 - xdg_mimeinfo_database_update
85 -}
86 -
87 -pkg_postrm() {
88 - xdg_desktop_database_update
89 - xdg_mimeinfo_database_update
90 -}