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 4A8E713835A for ; Mon, 15 Feb 2021 09:03:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86B3BE09B4; Mon, 15 Feb 2021 09:03:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 71E06E09B4 for ; Mon, 15 Feb 2021 09:03:45 +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 7C7AA3408B8 for ; Mon, 15 Feb 2021 09:03:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B7DC4AF for ; Mon, 15 Feb 2021 09:03:43 +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: <1613379820.3cb50fd975d9551179e6c58adc5a2a7c13291570.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-mta/qpsmtpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-mta/qpsmtpd/qpsmtpd-0.95.ebuild X-VCS-Directories: mail-mta/qpsmtpd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3cb50fd975d9551179e6c58adc5a2a7c13291570 X-VCS-Branch: master Date: Mon, 15 Feb 2021 09:03:43 +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: 2da2af77-7a48-4dac-a0a4-5c65a6f5b537 X-Archives-Hash: c8255cf67b8d218a76ee3d5a42a09bfe commit: 3cb50fd975d9551179e6c58adc5a2a7c13291570 Author: Sam James gentoo org> AuthorDate: Mon Feb 15 09:00:47 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Feb 15 09:03:40 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cb50fd9 mail-mta/qpsmtpd: fix double KEYWORDS Double KEYWORDS lines break tools like ekeyword and Nattka. As per PMS, blank/empty KEYWORDS is implied by not defining the variable. See: https://projects.gentoo.org/qa/policy-guide/ebuild-format.html#pg0105 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> mail-mta/qpsmtpd/qpsmtpd-0.95.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mail-mta/qpsmtpd/qpsmtpd-0.95.ebuild b/mail-mta/qpsmtpd/qpsmtpd-0.95.ebuild index 07d06fd459c..c49137a6110 100644 --- a/mail-mta/qpsmtpd/qpsmtpd-0.95.ebuild +++ b/mail-mta/qpsmtpd/qpsmtpd-0.95.ebuild @@ -8,13 +8,12 @@ inherit eutils perl-module user ${SCM} DESCRIPTION="qpsmtpd is a flexible smtpd daemon written in Perl" HOMEPAGE="https://smtpd.github.io/qpsmtpd/" -KEYWORDS="" if [[ ${PV} != *9999 ]]; then SRC_URI="https://github.com/smtpd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" else # This is a spotted development fork with many improvements -EGIT_REPO_URI="https://github.com/smtpd/${PN}.git" + EGIT_REPO_URI="https://github.com/smtpd/${PN}.git" fi LICENSE="MIT"