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 DD57A13835B for ; Sun, 17 Jan 2021 04:10:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2711CE0844; Sun, 17 Jan 2021 04:10:37 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 0CE76E0849 for ; Sun, 17 Jan 2021 04:10:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2852A340F8A for ; Sun, 17 Jan 2021 04:10:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 416904A5 for ; Sun, 17 Jan 2021 04:10:33 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1610856623.0faf81bb0123105cf859dd3e543b2dee40783948.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libesmtp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libesmtp/libesmtp-1.0.6-r3.ebuild net-libs/libesmtp/libesmtp-9999.ebuild X-VCS-Directories: net-libs/libesmtp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0faf81bb0123105cf859dd3e543b2dee40783948 X-VCS-Branch: master Date: Sun, 17 Jan 2021 04:10:33 +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: 3ffbe1f8-eaf8-4b0a-b0ad-9bb38e235695 X-Archives-Hash: 37e03c66bc3c4e2e70f8ea04fd849c6e commit: 0faf81bb0123105cf859dd3e543b2dee40783948 Author: Sam James gentoo org> AuthorDate: Sun Jan 17 03:44:15 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 17 04:10:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0faf81bb net-libs/libesmtp: fix DeprecatedInsinto Package-Manager: Portage-3.0.12.0.2-prefix, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> net-libs/libesmtp/libesmtp-1.0.6-r3.ebuild | 10 +++++++--- net-libs/libesmtp/libesmtp-9999.ebuild | 2 ++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/net-libs/libesmtp/libesmtp-1.0.6-r3.ebuild b/net-libs/libesmtp/libesmtp-1.0.6-r3.ebuild index cedef690ec4..c2724ec96bc 100644 --- a/net-libs/libesmtp/libesmtp-1.0.6-r3.ebuild +++ b/net-libs/libesmtp/libesmtp-1.0.6-r3.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools DESCRIPTION="lib that implements the client side of the SMTP protocol" @@ -19,7 +20,9 @@ RDEPEND=" libressl? ( dev-libs/libressl:0= ) )" DEPEND="${RDEPEND}" + DOCS=( AUTHORS ChangeLog NEWS Notes README TODO ) + PATCHES=( "${FILESDIR}/${P}-openssl-1.1-api-compatibility.patch" ) @@ -31,8 +34,8 @@ src_prepare() { src_configure() { econf \ - $(use_enable static-libs static) \ --enable-all \ + $(use_enable static-libs static) \ $(use_enable ntlm) \ $(use_enable threads pthreads) \ $(use_enable debug) \ @@ -41,6 +44,7 @@ src_configure() { src_install() { default - insinto /usr/share/doc/${PF}/xml - doins doc/api.xml + + docinto xml + dodoc doc/api.xml } diff --git a/net-libs/libesmtp/libesmtp-9999.ebuild b/net-libs/libesmtp/libesmtp-9999.ebuild index 78e059810fa..20a4ae8e753 100644 --- a/net-libs/libesmtp/libesmtp-9999.ebuild +++ b/net-libs/libesmtp/libesmtp-9999.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit meson DESCRIPTION="lib that implements the client side of the SMTP protocol" @@ -13,6 +14,7 @@ else SRC_URI="https://github.com/libesmtp/libESMTP/archive/v${PV/_}.tar.gz -> ${P}.tar.gz" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi + LICENSE="LGPL-2.1 GPL-2" SLOT="0" IUSE="libressl ssl static-libs threads"