From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E1BFC138334 for ; Sun, 13 Oct 2019 11:41:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CCB77E0898; Sun, 13 Oct 2019 11:41:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A176BE0898 for ; Sun, 13 Oct 2019 11:41:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9CB6534BCD3 for ; Sun, 13 Oct 2019 11:41:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0CC7C8A3 for ; Sun, 13 Oct 2019 11:40:59 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1570966828.e88d0271934f7dfb410f9a22f8e82553917b3d74.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/aqbanking/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild net-libs/aqbanking/aqbanking-5.8.2.ebuild X-VCS-Directories: net-libs/aqbanking/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e88d0271934f7dfb410f9a22f8e82553917b3d74 X-VCS-Branch: master Date: Sun, 13 Oct 2019 11:40:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f10aac25-8c66-4a43-9339-0841438cb61c X-Archives-Hash: 72cded7b0e4beca877b8b5fe6dd6eb2d commit: e88d0271934f7dfb410f9a22f8e82553917b3d74 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 6 19:16:36 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 13 11:40:28 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e88d0271 net-libs/aqbanking: No need for revbump, but some sorting Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild | 63 ---------------------------- net-libs/aqbanking/aqbanking-5.8.2.ebuild | 6 +-- 2 files changed, 3 insertions(+), 66 deletions(-) diff --git a/net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild b/net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild deleted file mode 100644 index beaf2b7e4f6..00000000000 --- a/net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Generic Online Banking Interface" -HOMEPAGE="https://www.aquamaniac.de/sites/aqbanking/index.php" -SRC_URI="https://www.aquamaniac.de/rdm/attachments/download/107/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="smartcard debug doc ebics examples ofx" - -BDEPEND=" - sys-devel/gettext - virtual/pkgconfig - doc? ( app-doc/doxygen ) -" -RDEPEND=" - app-misc/ktoblzcheck - dev-libs/gmp:0= - sys-libs/gwenhywfar:= - virtual/libintl - smartcard? ( >=sys-libs/libchipcard-5.0.2 ) - ebics? ( dev-libs/xmlsec[gcrypt,gnutls] ) - ofx? ( >=dev-libs/libofx-0.9.5 ) -" -DEPEND="${RDEPEND}" - -# DOCS=( AUTHORS ChangeLog NEWS README TODO ) - -MAKEOPTS="${MAKEOPTS} -j1" # 5.7.8 still fails with > -j1 - -src_configure() { - local backends="aqhbci aqnone aqpaypal" - use ofx && backends="${backends} aqofxconnect" - use ebics && backends="${backends} aqebics" - - econf \ - $(use_enable debug) \ - $(use_enable doc full-doc) \ - --with-backends="${backends}" \ - --with-docpath=/usr/share/doc/${PF}/apidoc -} - -src_install() { - emake DESTDIR="${D}" install - - rm -rv "${ED}"/usr/share/doc/ || die - - einstalldocs - - newdoc src/plugins/backends/aqhbci/tools/aqhbci-tool/README \ - README.aqhbci-tool - - if use examples; then - docinto tutorials - dodoc tutorials/*.{c,h} tutorials/README - fi - - find "${ED}" -name '*.la' -delete || die -} diff --git a/net-libs/aqbanking/aqbanking-5.8.2.ebuild b/net-libs/aqbanking/aqbanking-5.8.2.ebuild index 1c31017cf4d..68bc0e88fb4 100644 --- a/net-libs/aqbanking/aqbanking-5.8.2.ebuild +++ b/net-libs/aqbanking/aqbanking-5.8.2.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://www.aquamaniac.de/rdm/attachments/download/107/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="chipcard debug doc ebics examples ofx" +IUSE="debug doc ebics examples ofx smartcard" BDEPEND=" sys-devel/gettext @@ -22,13 +22,13 @@ RDEPEND=" dev-libs/gmp:0= sys-libs/gwenhywfar:= virtual/libintl - chipcard? ( >=sys-libs/libchipcard-5.0.2 ) ebics? ( dev-libs/xmlsec[gcrypt,gnutls] ) ofx? ( >=dev-libs/libofx-0.9.5 ) + smartcard? ( >=sys-libs/libchipcard-5.0.2 ) " DEPEND="${RDEPEND}" -# DOCS=( AUTHORS ChangeLog NEWS README TODO ) +DOCS=( AUTHORS ChangeLog NEWS README TODO ) MAKEOPTS="${MAKEOPTS} -j1" # 5.7.8 still fails with > -j1