Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/aqbanking/
Date: Sun, 13 Oct 2019 11:41:07
Message-Id: 1570966828.e88d0271934f7dfb410f9a22f8e82553917b3d74.asturm@gentoo
1 commit: e88d0271934f7dfb410f9a22f8e82553917b3d74
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 6 19:16:36 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 13 11:40:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e88d0271
7
8 net-libs/aqbanking: No need for revbump, but some sorting
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild | 63 ----------------------------
14 net-libs/aqbanking/aqbanking-5.8.2.ebuild | 6 +--
15 2 files changed, 3 insertions(+), 66 deletions(-)
16
17 diff --git a/net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild b/net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild
18 deleted file mode 100644
19 index beaf2b7e4f6..00000000000
20 --- a/net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild
21 +++ /dev/null
22 @@ -1,63 +0,0 @@
23 -# Copyright 1999-2019 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=7
27 -
28 -DESCRIPTION="Generic Online Banking Interface"
29 -HOMEPAGE="https://www.aquamaniac.de/sites/aqbanking/index.php"
30 -SRC_URI="https://www.aquamaniac.de/rdm/attachments/download/107/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
35 -IUSE="smartcard debug doc ebics examples ofx"
36 -
37 -BDEPEND="
38 - sys-devel/gettext
39 - virtual/pkgconfig
40 - doc? ( app-doc/doxygen )
41 -"
42 -RDEPEND="
43 - app-misc/ktoblzcheck
44 - dev-libs/gmp:0=
45 - sys-libs/gwenhywfar:=
46 - virtual/libintl
47 - smartcard? ( >=sys-libs/libchipcard-5.0.2 )
48 - ebics? ( dev-libs/xmlsec[gcrypt,gnutls] )
49 - ofx? ( >=dev-libs/libofx-0.9.5 )
50 -"
51 -DEPEND="${RDEPEND}"
52 -
53 -# DOCS=( AUTHORS ChangeLog NEWS README TODO )
54 -
55 -MAKEOPTS="${MAKEOPTS} -j1" # 5.7.8 still fails with > -j1
56 -
57 -src_configure() {
58 - local backends="aqhbci aqnone aqpaypal"
59 - use ofx && backends="${backends} aqofxconnect"
60 - use ebics && backends="${backends} aqebics"
61 -
62 - econf \
63 - $(use_enable debug) \
64 - $(use_enable doc full-doc) \
65 - --with-backends="${backends}" \
66 - --with-docpath=/usr/share/doc/${PF}/apidoc
67 -}
68 -
69 -src_install() {
70 - emake DESTDIR="${D}" install
71 -
72 - rm -rv "${ED}"/usr/share/doc/ || die
73 -
74 - einstalldocs
75 -
76 - newdoc src/plugins/backends/aqhbci/tools/aqhbci-tool/README \
77 - README.aqhbci-tool
78 -
79 - if use examples; then
80 - docinto tutorials
81 - dodoc tutorials/*.{c,h} tutorials/README
82 - fi
83 -
84 - find "${ED}" -name '*.la' -delete || die
85 -}
86
87 diff --git a/net-libs/aqbanking/aqbanking-5.8.2.ebuild b/net-libs/aqbanking/aqbanking-5.8.2.ebuild
88 index 1c31017cf4d..68bc0e88fb4 100644
89 --- a/net-libs/aqbanking/aqbanking-5.8.2.ebuild
90 +++ b/net-libs/aqbanking/aqbanking-5.8.2.ebuild
91 @@ -10,7 +10,7 @@ SRC_URI="https://www.aquamaniac.de/rdm/attachments/download/107/${P}.tar.gz"
92 LICENSE="GPL-2"
93 SLOT="0"
94 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
95 -IUSE="chipcard debug doc ebics examples ofx"
96 +IUSE="debug doc ebics examples ofx smartcard"
97
98 BDEPEND="
99 sys-devel/gettext
100 @@ -22,13 +22,13 @@ RDEPEND="
101 dev-libs/gmp:0=
102 sys-libs/gwenhywfar:=
103 virtual/libintl
104 - chipcard? ( >=sys-libs/libchipcard-5.0.2 )
105 ebics? ( dev-libs/xmlsec[gcrypt,gnutls] )
106 ofx? ( >=dev-libs/libofx-0.9.5 )
107 + smartcard? ( >=sys-libs/libchipcard-5.0.2 )
108 "
109 DEPEND="${RDEPEND}"
110
111 -# DOCS=( AUTHORS ChangeLog NEWS README TODO )
112 +DOCS=( AUTHORS ChangeLog NEWS README TODO )
113
114 MAKEOPTS="${MAKEOPTS} -j1" # 5.7.8 still fails with > -j1