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 A75C8138334 for ; Sat, 27 Apr 2019 20:29:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83B67E0844; Sat, 27 Apr 2019 20:28:59 +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 58C0FE0844 for ; Sat, 27 Apr 2019 20:28:59 +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 E343D342A62 for ; Sat, 27 Apr 2019 20:28:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF4895D5 for ; Sat, 27 Apr 2019 20:28:54 +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: <1556396873.b235c6b17ab73a9caa4d663b74f2887ef95e4a5a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-mta/courier/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-mta/courier/courier-0.75.0-r1.ebuild mail-mta/courier/courier-0.75.0.ebuild mail-mta/courier/courier-0.76.4.ebuild mail-mta/courier/courier-0.78.2.ebuild mail-mta/courier/courier-1.0.5.ebuild X-VCS-Directories: mail-mta/courier/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: b235c6b17ab73a9caa4d663b74f2887ef95e4a5a X-VCS-Branch: master Date: Sat, 27 Apr 2019 20:28:54 +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: 1ea78c4a-e0fb-4965-aefb-6f4cad4041c8 X-Archives-Hash: 3ae2a6236df6d33ee629680086cd27db commit: b235c6b17ab73a9caa4d663b74f2887ef95e4a5a Author: David Seifert gentoo org> AuthorDate: Sat Apr 27 16:35:04 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Apr 27 20:27:53 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b235c6b1 mail-mta/courier: [QA] Fix USE=libressl semantics Closes: https://bugs.gentoo.org/684002 Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: David Seifert gentoo.org> mail-mta/courier/courier-0.75.0-r1.ebuild | 14 ++++++++------ mail-mta/courier/courier-0.75.0.ebuild | 7 ++++--- mail-mta/courier/courier-0.76.4.ebuild | 16 +++++++++------- mail-mta/courier/courier-0.78.2.ebuild | 16 +++++++++------- mail-mta/courier/courier-1.0.5.ebuild | 14 ++++++++------ 5 files changed, 38 insertions(+), 29 deletions(-) diff --git a/mail-mta/courier/courier-0.75.0-r1.ebuild b/mail-mta/courier/courier-0.75.0-r1.ebuild index 7a2173aee9f..2fe60c5412c 100644 --- a/mail-mta/courier/courier-0.75.0-r1.ebuild +++ b/mail-mta/courier/courier-0.75.0-r1.ebuild @@ -5,23 +5,25 @@ EAPI=5 inherit eutils flag-o-matic multilib DESCRIPTION="An MTA designed specifically for maildirs" -SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" HOMEPAGE="http://www.courier-mta.org/" -SLOT="0" +SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" + LICENSE="GPL-2" +SLOT="0" # not in keywords due to missing dependencies: # ~s390 ~ppc64 ~alpha ~ia64 ~sparc ~x86 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~s390 ~sparc ~x86" IUSE="postgres ldap libressl mysql pam nls ipv6 spell fax crypt norewrite \ fam web webmail gnutls" -REQUIRED_USE="?? ( gnutls libressl )" DEPEND=" >=net-libs/courier-authlib-0.66.3 >=net-libs/courier-unicode-1.3 - !gnutls? ( !libressl? ( dev-libs/openssl:0= ) ) - libressl? ( dev-libs/libressl:= ) - gnutls? ( net-libs/gnutls ) + gnutls? ( net-libs/gnutls:= ) + !gnutls? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + ) >=sys-libs/gdbm-1.8.0 dev-libs/libpcre app-misc/mime-types diff --git a/mail-mta/courier/courier-0.75.0.ebuild b/mail-mta/courier/courier-0.75.0.ebuild index 3e048db1fd8..6d13f06826b 100644 --- a/mail-mta/courier/courier-0.75.0.ebuild +++ b/mail-mta/courier/courier-0.75.0.ebuild @@ -5,10 +5,11 @@ EAPI=5 inherit eutils flag-o-matic multilib DESCRIPTION="An MTA designed specifically for maildirs" -SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" HOMEPAGE="http://www.courier-mta.org/" -SLOT="0" +SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" + LICENSE="GPL-2" +SLOT="0" # not in keywords due to missing dependencies: # ~s390 ~ppc64 ~alpha ~ia64 ~sparc ~x86 KEYWORDS="alpha amd64 ~arm hppa ia64 ppc s390 sparc x86" @@ -19,7 +20,7 @@ DEPEND=" >=net-libs/courier-authlib-0.66.3 >=net-libs/courier-unicode-1.3 !gnutls? ( dev-libs/openssl:0= ) - gnutls? ( net-libs/gnutls ) + gnutls? ( net-libs/gnutls:= ) >=sys-libs/gdbm-1.8.0 dev-libs/libpcre app-misc/mime-types diff --git a/mail-mta/courier/courier-0.76.4.ebuild b/mail-mta/courier/courier-0.76.4.ebuild index f1b0aa79e0c..afb85de4a68 100644 --- a/mail-mta/courier/courier-0.76.4.ebuild +++ b/mail-mta/courier/courier-0.76.4.ebuild @@ -1,25 +1,27 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 inherit eutils flag-o-matic multilib DESCRIPTION="An MTA designed specifically for maildirs" -SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" HOMEPAGE="http://www.courier-mta.org/" -SLOT="0" +SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" + LICENSE="GPL-2" +SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="postgres ldap libressl mysql pam nls ipv6 spell fax crypt norewrite \ fam web webmail gnutls" -REQUIRED_USE="?? ( gnutls libressl )" DEPEND=" >=net-libs/courier-authlib-0.66.3 >=net-libs/courier-unicode-1.4 - !gnutls? ( !libressl? ( dev-libs/openssl:0= ) ) - libressl? ( dev-libs/libressl:= ) - gnutls? ( net-libs/gnutls ) + gnutls? ( net-libs/gnutls:= ) + !gnutls? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + ) >=sys-libs/gdbm-1.8.0 dev-libs/libpcre app-misc/mime-types diff --git a/mail-mta/courier/courier-0.78.2.ebuild b/mail-mta/courier/courier-0.78.2.ebuild index 9c648ef0233..e289ecf157e 100644 --- a/mail-mta/courier/courier-0.78.2.ebuild +++ b/mail-mta/courier/courier-0.78.2.ebuild @@ -1,25 +1,27 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 inherit eutils flag-o-matic multilib DESCRIPTION="An MTA designed specifically for maildirs" -SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" HOMEPAGE="http://www.courier-mta.org/" -SLOT="0" +SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" + LICENSE="GPL-2" +SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="postgres ldap libressl mysql pam nls ipv6 spell fax crypt norewrite \ fam web webmail gnutls" -REQUIRED_USE="?? ( gnutls libressl )" DEPEND=" >=net-libs/courier-authlib-0.68.0 >=net-libs/courier-unicode-2.0 - !gnutls? ( !libressl? ( dev-libs/openssl:0= ) ) - libressl? ( dev-libs/libressl:= ) - gnutls? ( net-libs/gnutls ) + gnutls? ( net-libs/gnutls:= ) + !gnutls? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + ) >=sys-libs/gdbm-1.8.0 dev-libs/libpcre app-misc/mime-types diff --git a/mail-mta/courier/courier-1.0.5.ebuild b/mail-mta/courier/courier-1.0.5.ebuild index 66a941947aa..f0b3ece74ea 100644 --- a/mail-mta/courier/courier-1.0.5.ebuild +++ b/mail-mta/courier/courier-1.0.5.ebuild @@ -5,22 +5,24 @@ EAPI=7 inherit eutils flag-o-matic multilib DESCRIPTION="An MTA designed specifically for maildirs" -SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" HOMEPAGE="http://www.courier-mta.org/" -SLOT="0" +SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" + LICENSE="GPL-2" +SLOT="0" KEYWORDS="~alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86" IUSE="postgres ldap libressl mysql pam nls ipv6 spell fax crypt norewrite \ fam web webmail gnutls" -REQUIRED_USE="?? ( gnutls libressl )" DEPEND=" >=net-libs/courier-authlib-0.69.0-r1 >=net-libs/courier-unicode-2.1 net-dns/libidn:= - !gnutls? ( !libressl? ( dev-libs/openssl:0= ) ) - libressl? ( dev-libs/libressl:= ) - gnutls? ( net-libs/gnutls ) + gnutls? ( net-libs/gnutls:= ) + !gnutls? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + ) >=sys-libs/gdbm-1.8.0 dev-libs/libpcre app-misc/mime-types