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 1CD04138359 for ; Wed, 8 Jul 2020 13:48:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C618E0802; Wed, 8 Jul 2020 13:48:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 48385E0802 for ; Wed, 8 Jul 2020 13:48:04 +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 12FE134EBD8 for ; Wed, 8 Jul 2020 13:48:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE605274 for ; Wed, 8 Jul 2020 13:47:57 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1594216074.6b2a6f9630a45cb5912d0b31817512ed488d0fcb.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libesmtp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libesmtp/libesmtp-9999.ebuild X-VCS-Directories: net-libs/libesmtp/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 6b2a6f9630a45cb5912d0b31817512ed488d0fcb X-VCS-Branch: master Date: Wed, 8 Jul 2020 13:47:57 +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: 29735867-84aa-467b-b299-4f5078da0e70 X-Archives-Hash: 6d2a8e09db439d7ccf0f6f96cc544af0 commit: 6b2a6f9630a45cb5912d0b31817512ed488d0fcb Author: Lars Wendler gentoo org> AuthorDate: Wed Jul 8 13:46:23 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Jul 8 13:47:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b2a6f96 net-libs/libesmtp: Added live ebuild Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Lars Wendler gentoo.org> net-libs/libesmtp/libesmtp-9999.ebuild | 36 ++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/net-libs/libesmtp/libesmtp-9999.ebuild b/net-libs/libesmtp/libesmtp-9999.ebuild new file mode 100644 index 00000000000..4f34d1424a7 --- /dev/null +++ b/net-libs/libesmtp/libesmtp-9999.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# 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" +HOMEPAGE="https://libesmtp.github.io/" +if [[ "${PV}" == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/libesmtp/libESMTP.git" +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 ~x86-macos" +fi +LICENSE="LGPL-2.1 GPL-2" +SLOT="0" +IUSE="libressl ssl static-libs threads" + +RDEPEND=" + ssl? ( + !libressl? ( >=dev-libs/openssl-1.1.0:0= ) + libressl? ( dev-libs/libressl:0= ) + )" +DEPEND="${RDEPEND}" + +DOCS=( AUTHORS docs/{bugreport,ChangeLog,faq}.md NEWS Notes README.md TODO ) + +src_configure() { + local emesonargs=( + -Ddefault_library="$(usex static-libs both shared)" + $(meson_feature ssl tls) + $(meson_feature threads pthreads) + ) + meson_src_configure +}