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 5D6161382C5 for ; Mon, 28 Dec 2020 14:16:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA3E7E0C4A; Mon, 28 Dec 2020 14:16:10 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9200CE0C35 for ; Mon, 28 Dec 2020 14:16:10 +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 2A309341595 for ; Mon, 28 Dec 2020 14:16:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D1CF3489 for ; Mon, 28 Dec 2020 14:16:03 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1609164941.9115cb5d71060f561b50e70c1e687989768a1b64.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libisds/libisds-9999.ebuild X-VCS-Directories: net-libs/libisds/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 9115cb5d71060f561b50e70c1e687989768a1b64 X-VCS-Branch: master Date: Mon, 28 Dec 2020 14:16:03 +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: 1eb5a004-c65a-4984-8c7f-4278f8f27267 X-Archives-Hash: 914c7b5769978ece7e7ae713d3f0088b commit: 9115cb5d71060f561b50e70c1e687989768a1b64 Author: Jakov Smolic sartura hr> AuthorDate: Mon Dec 28 14:15:41 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Dec 28 14:15:41 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9115cb5d net-libs/libisds: Sync live ebuild Package-Manager: Portage-3.0.9, Repoman-3.0.1 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> net-libs/libisds/libisds-9999.ebuild | 51 ++++++++++++++++++------------------ 1 file changed, 25 insertions(+), 26 deletions(-) diff --git a/net-libs/libisds/libisds-9999.ebuild b/net-libs/libisds/libisds-9999.ebuild index 29b8477bdd6..eb24a312d36 100644 --- a/net-libs/libisds/libisds-9999.ebuild +++ b/net-libs/libisds/libisds-9999.ebuild @@ -1,54 +1,53 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 - -[[ ${PV} = 9999* ]] && inherit git-r3 autotools +EAPI=7 +inherit autotools git-r3 DESCRIPTION="Client library for accessing ISDS Soap services" HOMEPAGE="http://xpisar.wz.cz/libisds/" -if [[ ${PV} = 9999* ]]; then - EGIT_REPO_URI="git://repo.or.cz/${PN}.git" -else - SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz" - KEYWORDS="~amd64 ~mips ~x86" -fi +EGIT_REPO_URI="git://repo.or.cz/${PN}.git" LICENSE="LGPL-3" SLOT="0" -IUSE="+curl debug nls static-libs test" +IUSE="+curl debug doc nls openssl test" RESTRICT="!test? ( test )" -COMMON_DEPEND=" - app-crypt/gpgme +RDEPEND=" dev-libs/expat - dev-libs/libgcrypt:0= dev-libs/libxml2 curl? ( net-misc/curl[ssl] ) -" -DEPEND="${COMMON_DEPEND} + doc? ( + app-text/docbook-xsl-stylesheets + dev-libs/libxslt + ) + openssl? ( dev-libs/openssl:= ) + !openssl? ( + app-crypt/gnupg + app-crypt/gpgme + dev-libs/libgcrypt:= + )" +DEPEND="${RDEPEND} + test? ( net-libs/gnutls )" +BDEPEND=" virtual/pkgconfig - nls? ( sys-devel/gettext ) -" -RDEPEND="${COMMON_DEPEND} - >=app-crypt/gnupg-2 -" - -DOCS=( NEWS README AUTHORS ChangeLog ) + nls? ( sys-devel/gettext )" src_prepare() { default - [[ ${PV} = 9999* ]] && eautoreconf + eautoreconf } src_configure() { local myeconfargs=( --disable-fatalwarnings + --disable-static $(use_with curl libcurl) $(use_enable curl curlreauthorizationbug) + $(use_enable doc) $(use_enable debug) $(use_enable nls) - $(use_enable static-libs static) + $(use_enable openssl openssl-backend) $(use_enable test) ) econf "${myeconfargs[@]}" @@ -57,5 +56,5 @@ src_configure() { src_install() { default - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die + find "${ED}" -name '*.la' -delete || die }