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 1B3F51382C5 for ; Mon, 12 Feb 2018 15:50:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3BD68E0A68; Mon, 12 Feb 2018 15:50:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 19643E0A68 for ; Mon, 12 Feb 2018 15:50:42 +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 6517E335C0C for ; Mon, 12 Feb 2018 15:50:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B813D1DA for ; Mon, 12 Feb 2018 15:50:39 +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: <1518450633.8f08e293b5f5b951d0de6ae63c104c4dc91e4333.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/enigmail/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/enigmail/enigmail-9999.ebuild X-VCS-Directories: x11-plugins/enigmail/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 8f08e293b5f5b951d0de6ae63c104c4dc91e4333 X-VCS-Branch: master Date: Mon, 12 Feb 2018 15:50:39 +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: ec876cfa-a5ca-4ec2-bd9f-0612f2133819 X-Archives-Hash: c24ad2f17c2bae9ebcdc89c07b35804c commit: 8f08e293b5f5b951d0de6ae63c104c4dc91e4333 Author: Lars Wendler gentoo org> AuthorDate: Mon Feb 12 15:46:31 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Feb 12 15:50:33 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f08e293 x11-plugins/enigmail: Prepared live ebuild for beta releases. Package-Manager: Portage-2.3.24, Repoman-2.3.6 x11-plugins/enigmail/enigmail-9999.ebuild | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/x11-plugins/enigmail/enigmail-9999.ebuild b/x11-plugins/enigmail/enigmail-9999.ebuild index ec95bc9fb44..66f465afa7c 100644 --- a/x11-plugins/enigmail/enigmail-9999.ebuild +++ b/x11-plugins/enigmail/enigmail-9999.ebuild @@ -1,23 +1,28 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 PYTHON_COMPAT=( python2_7 ) -inherit git-r3 python-any-r1 +inherit python-any-r1 DESCRIPTION="Mozilla extension to provide GPG support in mail clients" HOMEPAGE="http://www.enigmail.net/" -KEYWORDS="" SLOT="0" LICENSE="MPL-2.0 GPL-3" IUSE="" if [[ ${PV} == *9999 ]]; then + inherit git-r3 EGIT_REPO_URI="https://git.code.sf.net/p/enigmail/source" S="${WORKDIR}/${P}" else - SRC_URI="http://www.enigmail.net/download/source/${P}.tar.gz" + if [[ ${PV} = *_beta* ]] ; then + SRC_URI="http://www.enigmail.net/download/beta/${P/_/-}.tar.gz" + else + SRC_URI="http://www.enigmail.net/download/source/${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" + fi S="${WORKDIR}/${PN}" fi