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 5BFF8138334 for ; Sat, 15 Sep 2018 19:37:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 879D3E0C41; Sat, 15 Sep 2018 19:37:25 +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 61526E0C40 for ; Sat, 15 Sep 2018 19:37:25 +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 14CA4335CF3 for ; Sat, 15 Sep 2018 19:37:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BF223F1 for ; Sat, 15 Sep 2018 19:37:21 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1537040229.d486958c034b8b44b63329d79df6a3ca9b463823.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/sieve-connect/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/sieve-connect/sieve-connect-0.87-r1.ebuild X-VCS-Directories: mail-filter/sieve-connect/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d486958c034b8b44b63329d79df6a3ca9b463823 X-VCS-Branch: master Date: Sat, 15 Sep 2018 19:37:21 +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-Archives-Salt: a34da562-b021-4851-b4d5-313c89be0121 X-Archives-Hash: f20bdf1a97bc66013ef54992448b11a6 commit: d486958c034b8b44b63329d79df6a3ca9b463823 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sat Sep 1 19:01:51 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Sep 15 19:37:09 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d486958c mail-filter/sieve-connect: EAPI7 revbump, use HTTPs Closes: https://bugs.gentoo.org/665054 Closes: https://github.com/gentoo/gentoo/pull/9759 .../sieve-connect/sieve-connect-0.87-r1.ebuild | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/mail-filter/sieve-connect/sieve-connect-0.87-r1.ebuild b/mail-filter/sieve-connect/sieve-connect-0.87-r1.ebuild new file mode 100644 index 00000000000..07371b0cb2f --- /dev/null +++ b/mail-filter/sieve-connect/sieve-connect-0.87-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Sieve Command Line Interface" +HOMEPAGE="https://people.spodhuis.org/phil.pennock/software/" +SRC_URI="https://github.com/syscomet/sieve-connect/releases/download/v${PV}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=">=dev-lang/perl-5" +RDEPEND="${DEPEND} + >=dev-perl/Authen-SASL-2.11 + dev-perl/IO-Socket-INET6 + >=dev-perl/IO-Socket-SSL-0.97 + dev-perl/Net-DNS + dev-perl/Net-SSLeay + dev-perl/TermReadKey + dev-perl/Term-ReadLine-Gnu" + +src_compile() { + emake all sieve-connect.1 +} + +src_install() { + dobin sieve-connect + doman sieve-connect.1 + dodoc README* +}